.hippo-ty-reviews {
  --hippo-border: #e6e2dc;
  --hippo-text: #26221f;
  --hippo-muted: #6d6760;
  --hippo-accent: #f27a1a;
  --hippo-bg: #fff;
  --hippo-soft: #faf7f2;
  color: var(--hippo-text);
  background: var(--hippo-bg);
  border: 1px solid var(--hippo-border);
  border-radius: 8px;
  padding: 18px;
  margin: 24px 0;
  font-family: inherit;
}

.hippo-ty-reviews * {
  box-sizing: border-box;
}

.hippo-ty-header {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: flex-start;
  border-bottom: 1px solid var(--hippo-border);
  padding-bottom: 14px;
}

.hippo-ty-title {
  margin: 0 0 6px;
  font-size: 20px;
  line-height: 1.25;
}

.hippo-ty-score {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--hippo-muted);
  font-size: 14px;
}

.hippo-ty-stars {
  color: var(--hippo-accent);
  letter-spacing: 1px;
  white-space: nowrap;
}

.hippo-ty-badge {
  background: var(--hippo-soft);
  border: 1px solid var(--hippo-border);
  border-radius: 999px;
  color: var(--hippo-muted);
  padding: 6px 10px;
  white-space: nowrap;
  font-size: 13px;
}

.hippo-ty-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 16px;
}

.hippo-ty-review {
  border: 1px solid var(--hippo-border);
  border-radius: 8px;
  padding: 12px;
  min-width: 0;
}

.hippo-ty-review-top {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: center;
  margin-bottom: 8px;
}

.hippo-ty-user {
  font-weight: 700;
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.hippo-ty-comment {
  color: var(--hippo-text);
  font-size: 14px;
  line-height: 1.45;
  margin: 0;
}

.hippo-ty-media {
  display: flex;
  gap: 8px;
  margin-top: 10px;
  overflow-x: auto;
}

.hippo-ty-media img {
  width: 72px;
  height: 72px;
  object-fit: cover;
  border-radius: 6px;
  border: 1px solid var(--hippo-border);
}

.hippo-ty-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  color: var(--hippo-muted);
  font-size: 13px;
  margin-top: 14px;
}

.hippo-ty-link {
  color: var(--hippo-accent);
  font-weight: 700;
  text-decoration: none;
}

.hippo-ty-empty {
  color: var(--hippo-muted);
  margin: 16px 0 0;
}

@media (max-width: 800px) {
  .hippo-ty-header,
  .hippo-ty-footer {
    display: block;
  }

  .hippo-ty-badge {
    display: inline-block;
    margin-top: 10px;
  }

  .hippo-ty-grid {
    grid-template-columns: 1fr;
  }
}
