/*
 * Module: Testimonial Stats
 *
 * Two-column: text + display-number stats. Below: testimonial slider.
 * Used on: Facilitation
 * Dependencies: tokens.css, testimonial-carousel.css
 */

.testimonial-stats {
  max-width: var(--max-width);
  margin: 0 auto;
}

/* ── Top section: text + stats ── */
.testimonial-stats__top {
  display: flex; gap: 50px; align-items: center;
  margin-bottom: 50px;
}

/* ── Text column ── */
.testimonial-stats__text {
  flex: 1;
  display: flex; flex-direction: column; gap: var(--space-lg);
}
.testimonial-stats__text > * { margin: 0; }

.testimonial-stats__title {
  font-family: var(--font-heading); font-weight: 600; font-size: 40px;
  color: var(--color-navy); line-height: 1.15;
}
.testimonial-stats__dot { color: var(--color-success); }

.testimonial-stats__body {
  font-family: var(--font-body); font-weight: 400;
  font-size: 18px; line-height: 28px; color: #000;
}

/* ── Stats column ── */
.testimonial-stats__numbers {
  flex: 0 0 554px;
  display: flex; flex-direction: column; gap: 25px;
}
.testimonial-stats__numbers-label {
  font-family: var(--font-heading); font-weight: 600; font-size: 18px;
  text-transform: uppercase; letter-spacing: 0.9px; color: #000;
}

/* ── Stat item ── */
.testimonial-stats__stat {
  display: flex; gap: 30px; align-items: center;
}
.testimonial-stats__stat-number {
  font-family: var(--font-body); font-weight: 900; font-size: 48px;
  line-height: 1; letter-spacing: -0.48px;
  text-transform: uppercase;
  color: var(--color-success);
  flex: 0 0 160px;
}
.testimonial-stats__stat-label {
  font-family: var(--font-body); font-weight: 400; font-size: 22px;
  color: #000; padding: 10px 0;
}

/* ── Bottom: testimonial slider ── */
.testimonial-stats__slider {
  max-width: 1216px; margin: 0 auto;
}

/* ── Responsive ── */
@media (max-width: 1024px) {
  .testimonial-stats { padding: 0 24px; }
  .testimonial-stats__top { flex-direction: column; gap: 40px; }
  .testimonial-stats__numbers { flex: none; }
}
@media (max-width: 768px) {
  .testimonial-stats { padding: 0 16px; }
  .testimonial-stats__title { font-size: 28px; }
  /* Strip card treatment on mobile — use quote-style green left border */
  .testimonial-stats__stat {
    gap: 16px; flex-direction: row; align-items: center;
    background: transparent;
    border: none;
    border-left: 3px solid var(--color-success);
    border-radius: 0;
    box-shadow: none;
    padding: 8px 0 8px 16px;
  }
  .testimonial-stats__stat-number { font-size: 36px; flex: 0 0 110px; }
  .testimonial-stats__stat-label { font-size: 16px; padding: 0; color: #1A1A1A; }
}
