.reviews-hero {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  align-items: stretch;
  min-height: 70vh;
  padding-top: 0;
  padding-bottom: 0;
}

.reviews-hero__media {
  position: relative;
  width: 100%;
  max-height: 420px;
  overflow: hidden;
}

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

.reviews-hero__content {
  position: relative;
  margin-top: -3rem;
  padding-bottom: var(--space-12);
}

.reviews-hero__card {
  max-width: 640px;
  margin: 0 auto;
}

.reviews-hero__card h1 {
  margin-top: var(--space-2);
  margin-bottom: var(--space-4);
}

.reviews-hero__actions {
  margin-top: var(--space-4);
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3);
}

.reviews-section {
  gap: var(--space-8);
}

.reviews-section--split {
  align-items: center;
}

.reviews-section--reverse {
  flex-direction: column-reverse;
}

.reviews-section--center {
  max-width: 720px;
}

.reviews-section__text p:last-child {
  margin-bottom: 0;
}

.reviews-section__meta {
  margin-top: var(--space-4);
}

.reviews-section__author {
  font-weight: 600;
  color: var(--color-text);
  margin-bottom: 0;
}

.reviews-section__tagline {
  font-size: var(--font-size-sm);
  color: var(--color-text-muted);
  margin-bottom: 0;
}

.reviews-section__cta {
  margin-top: var(--space-4);
}

.reviews-section__cta--stack {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
  margin-top: var(--space-4);
}

.reviews-section__media {
  margin-top: var(--space-4);
}

.reviews-image-card {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-medium);
}

.reviews-image-card img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.reviews-quote {
  height: 100%;
}

.reviews-quote__title {
  margin-bottom: var(--space-3);
}

.reviews-quote__author {
  margin-bottom: 0;
  font-weight: 500;
  color: var(--color-text);
}

.reviews-quote--highlight {
  background: radial-gradient(circle at top left, rgba(255, 255, 255, 0.96) 0, rgba(255, 255, 255, 0.82) 40%, rgba(255, 255, 255, 0.78) 100%);
  backdrop-filter: blur(var(--glass-backdrop-blur));
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-medium);
}

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

.reviews-gallery-slider {
  margin-top: var(--space-6);
}

.reviews-gallery-slide {
  max-width: 560px;
  margin: 0 auto;
}

.reviews-gallery-slide__author {
  margin-bottom: 0;
  font-size: var(--font-size-sm);
  color: var(--color-text-muted);
}

.reviews-stats {
  margin-top: var(--space-6);
}

@media (min-width: 768px) {
  .reviews-hero {
    grid-template-columns: minmax(0, 1.25fr) minmax(0, 1.1fr);
    min-height: 75vh;
  }

  .reviews-hero__media {
    max-height: none;
    height: 100%;
  }

  .reviews-hero__content {
    margin-top: 0;
    display: flex;
    align-items: center;
  }

  .reviews-section--reverse {
    flex-direction: row-reverse;
  }

  .reviews-section__media {
    margin-top: 0;
  }
}

@media (min-width: 1024px) {
  .reviews-hero__card {
    margin-left: 0;
  }

  .reviews-section--center {
    max-width: 760px;
  }

  .reviews-section__cta--stack {
    flex-direction: row;
    justify-content: center;
  }
}
