/* =============================================================
   TESTIMONIALS.CSS — "What Clients Say" section
============================================================= */

#testimonials {
  background: var(--white);
  padding: 60px var(--section-pad-h);
  text-align: center;
}

#testimonials h2 {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 700;
  letter-spacing: 4px;
  text-transform: uppercase;
  margin-bottom: 64px;
}

/* ── Grid of rows ── */
.testimonial-grid {
  display: flex;
  flex-direction: column;
  max-width: 860px;
  margin: 0 auto;
}

.testimonial-row {
  display: grid;
  grid-template-columns: 1fr 1px 1fr;
  border-bottom: 1px solid var(--light-gray);
  padding: 36px 0;
  text-align: left;
}

.testimonial-row:last-child {
  border-bottom: none;
}

/* Quote side */
.testimonial-quote {
  padding-right: 60px;
}

.testimonial-quote p {
  font-size: 13.5px;
  line-height: 2;
  color: var(--mid);
  margin-bottom: 20px;
  font-style: italic;
}

.testimonial-author {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1px;
  color: var(--dark);
}

/* Divider line */
.testimonial-divider {
  background: var(--light-gray);
}

/* Logo side */
.testimonial-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  padding-left: 60px;
}

/* Client logo styles */
.logo-gucci {
  font-family: var(--font-display);
  font-size: 30px;
  font-weight: 400;
  letter-spacing: 10px;
  color: var(--dark);
  text-transform: uppercase;
}

.logo-nbc {
  font-family: var(--font-body);
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 1px;
  color: #7b16e8;
}

/* ── Responsive ── */
@media (max-width: 900px) {
  #testimonials {
    padding: var(--section-pad-mobile);
  }

  .testimonial-row {
    grid-template-columns: 1fr;
    gap: 32px;
    padding: 40px 0;
  }

  .testimonial-quote {
    padding-right: 0;
  }

  .testimonial-divider {
    display: none;
  }

  .testimonial-logo {
    padding-left: 0;
    justify-content: flex-start;
  }
}