section.testimonials-hero {
  padding-top: var(--space-16);
}

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

.testimonials-hero-grid {
  margin-top: var(--space-8);
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(0, 1fr);
  gap: var(--space-8);
  align-items: center;
}

.testimonials-hero-intro {
  height: 100%;
}

.testimonials-hero-image-wrapper {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.testimonials-hero-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.section-header {
  max-width: 760px;
  margin-inline: auto;
}

.section-header--split {
  max-width: none;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: var(--space-6);
}

.section-header-cta {
  flex-shrink: 0;
}

.section-header--birthday {
  align-items: center;
}

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

.testimonials-birthday-grid,
.testimonials-teambuilding-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
  gap: var(--space-8);
  align-items: center;
}

.testimonials-birthday-content,
.testimonials-teambuilding-list {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.testimonials-image-wrapper {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

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

.media-quotes-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: var(--space-6);
}

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

.convert-strip-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--space-6);
}

.convert-strip-actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-4);
  justify-content: flex-end;
}

@media (max-width: 960px) {
  .testimonials-hero-grid,
  .testimonials-birthday-grid,
  .testimonials-teambuilding-grid {
    grid-template-columns: 1fr;
  }

  .testimonials-hero-image-wrapper,
  .testimonials-image-wrapper {
    max-height: 360px;
  }

  .section-header--split {
    flex-direction: column;
    align-items: flex-start;
  }

  .section-header-cta {
    width: 100%;
  }

  .section-header-cta .btn {
    width: 100%;
    justify-content: center;
  }

  .convert-strip-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .convert-strip-actions {
    width: 100%;
    justify-content: flex-start;
  }
}

@media (max-width: 768px) {
  .media-quotes-grid {
    grid-template-columns: 1fr;
  }
}
