/* ═══════════════════════════════════════
   TESTIMONIALS.CSS
═══════════════════════════════════════ */

#testimonials {
  background: var(--mid);
  padding: 9rem 0;
  overflow: hidden;
}

#testimonials .section-header {
  padding: 0 5vw 4rem;
  border-bottom: 1px solid var(--border);
  margin-bottom: 0;
}

#testimonials .section-header h2 {
  font-size: clamp(1.8rem, 2.5vw, 2.5rem);
  color: var(--white);
}

/* ── GRID HORIZONTAL ── */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--border);
}

.testimonial-item {
  padding: 4rem 4vw;
  border-right: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 2.5rem;
  transition: background 0.4s;
  cursor: default;
}
.testimonial-item:last-child { border-right: none; }
.testimonial-item:hover { background: rgba(255,255,255,0.02); }

.testimonial-quote {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.05rem, 1.5vw, 1.35rem);
  font-weight: 400;
  font-style: italic;
  color: var(--accent);
  line-height: 1.6;
  opacity: 0.95;
  flex: 1;
}

.testimonial-author {
  border-top: 1px solid var(--border);
  padding-top: 1.5rem;
}
.testimonial-name {
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--white);
  letter-spacing: 0.05em;
}
.testimonial-role {
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 0.3rem;
}

@media (max-width: 900px) {
  .testimonials-grid { grid-template-columns: 1fr 1fr; }
  .testimonial-item:nth-child(2) { border-right: none; }
  .testimonial-item:nth-child(3) {
    grid-column: 1 / -1;
    border-right: none;
    border-top: 1px solid var(--border);
  }
}
@media (max-width: 600px) {
  .testimonials-grid { grid-template-columns: 1fr; }
  .testimonial-item { border-right: none; border-top: 1px solid var(--border); }
  .testimonial-item:first-child { border-top: none; }
}
