.testimonials-hero {
  position: relative;
  min-height: 80vh;
  display: flex;
  align-items: center;
}

.testimonials-hero__media {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

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

.testimonials-hero__overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 10% 0%, rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.95));
}

.testimonials-hero__inner {
  position: relative;
  z-index: 1;
}

.testimonials-hero__content {
  max-width: 720px;
}

.testimonials-hero__meta {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-16);
  margin-top: var(--space-24);
}

.testimonials-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-16);
  margin-top: var(--space-32);
}

.section--alt {
  background: radial-gradient(circle at top, rgba(10, 12, 16, 0.7), rgba(5, 6, 8, 0.98));
}

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

.testimonial-card--grid {
  height: 100%;
}

.testimonial-grid-title {
  margin-bottom: var(--space-16);
}

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

.split-screen__panel--content .card {
  height: 100%;
}

.split-panel-title {
  font-family: var(--font-display);
  font-size: var(--font-size-lg);
  margin-bottom: var(--space-8);
}

.split-panel-text {
  font-size: var(--font-size-sm);
  color: var(--color-text-muted);
}

.gallery-caption {
  padding: var(--space-12);
  font-size: var(--font-size-sm);
  color: var(--color-text-muted);
  background: linear-gradient(180deg, rgba(5, 6, 8, 0.9), rgba(5, 6, 8, 0.98));
}

.testimonials--slider {
  position: relative;
  padding: var(--space-24);
  border-radius: var(--radius-lg);
  background: radial-gradient(circle at top left, rgba(215, 180, 106, 0.06), rgba(15, 18, 24, 0.98));
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.testimonial-card--slider {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: var(--space-24);
  align-items: center;
}

.testimonial-card__media {
  width: 96px;
  height: 96px;
  border-radius: 50%;
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}

.testimonial-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.testimonial-card__content {
  max-width: 560px;
}

.testimonial-quote {
  font-size: var(--font-size-lg);
  color: var(--color-text);
  margin-bottom: var(--space-16);
}

.testimonial-author {
  font-weight: 600;
}

.testimonial-role {
  font-size: var(--font-size-xs);
  text-transform: uppercase;
  letter-spacing: 0.16em;
}

.testimonials-track {
  scroll-snap-type: x mandatory;
}

.testimonial-card--slider {
  scroll-snap-align: start;
}

@media (max-width: 768px) {
  .testimonials-hero {
    min-height: 70vh;
  }

  .testimonial-card--slider {
    grid-template-columns: minmax(0, 1fr);
  }

  .testimonials--slider {
    padding-bottom: var(--space-40);
  }
}
