/* ── Social Proof: Testimonial Cards ── */
.testimonials {
  display: flex;
  gap: var(--space-4);
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  padding-bottom: var(--space-2);
}

/* Hide scrollbar for cleaner look */
.testimonials::-webkit-scrollbar {
  height: 4px;
}
.testimonials::-webkit-scrollbar-track {
  background: transparent;
}
.testimonials::-webkit-scrollbar-thumb {
  background: var(--color-border);
  border-radius: var(--radius-full);
}

.testimonial {
  min-width: 80vw;
  max-width: 85vw;
  scroll-snap-align: start;
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  border-top: 3px solid var(--color-gold);
  border-radius: var(--radius-xl);
  padding: var(--space-6);
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow-wrap: break-word;
  word-break: break-word;
}

.testimonial__text {
  font-size: var(--text-base);
  color: var(--color-navy);
  line-height: var(--leading-relaxed);
  font-style: italic;
  margin-bottom: var(--space-4);
}

.testimonial__author {
  display: flex;
  flex-direction: column;
  gap: var(--space-1);
  font-style: normal;
}
.testimonial__author strong {
  font-size: var(--text-base);
  font-weight: var(--weight-semibold);
  color: var(--color-navy);
}
.testimonial__author span {
  font-size: var(--text-sm);
  color: var(--color-text-secondary);
}

/* ── Scroll indicator dots (mobile only) ── */
.testimonials-dots {
  display: flex;
  justify-content: center;
  gap: var(--space-2);
  margin-top: var(--space-4);
}
.testimonials-dot {
  width: 8px;
  height: 8px;
  border-radius: var(--radius-full);
  background: var(--color-border);
}

/* ── Desktop: 3-column grid, no scroll ── */
@media (min-width: 1024px) {
  .testimonials {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-6);
    overflow-x: visible;
  }
  .testimonial {
    min-width: 0;
  }
  .testimonials-dots {
    display: none;
  }
}
