.reviews-hero {
  background: radial-gradient(circle at top left, var(--color-primary-soft), transparent 55%),
    radial-gradient(circle at bottom right, #e5f2ff, transparent 55%);
}

.reviews-hero-header {
  max-width: 720px;
}

.reviews-featured-grid {
  align-items: center;
}

.reviews-featured-media {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.reviews-featured-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.reviews-list-header {
  max-width: 720px;
}

.reviews-grid {
  align-items: stretch;
}

.review-card {
  height: 100%;
}

.review-header {
  display: flex;
  justify-content: space-between;
  gap: var(--space-16);
  align-items: flex-start;
}

.review-rating {
  display: inline-flex;
  align-items: center;
  gap: var(--space-8);
  font-size: var(--font-size-sm);
  color: var(--color-warning);
}

.review-stars {
  letter-spacing: 0.08em;
}

.review-score {
  color: var(--color-gray-700);
}

.review-meta {
  margin-top: var(--space-16);
  font-size: var(--font-size-xs);
  color: var(--color-text-muted);
}

.review-media {
  margin-bottom: var(--space-16);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.review-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.review-with-media-header {
  display: flex;
  justify-content: space-between;
  gap: var(--space-16);
  align-items: center;
}

.reviews-gallery-grid {
  align-items: center;
}

.reviews-gallery-media {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.reviews-gallery-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.reviews-cta-card {
  display: flex;
  flex-direction: column;
  gap: var(--space-24);
  align-items: flex-start;
  justify-content: space-between;
}

.reviews-cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-16);
}

@media (min-width: 768px) {
  .reviews-cta-card {
    flex-direction: row;
    align-items: center;
  }
}

@media (max-width: 767px) {
  .review-header {
    flex-direction: column;
    align-items: flex-start;
  }
}
