/* ============================================================
   TESTIMONIALS
   ============================================================ */

/* Already defined in style.css as .testimonial component */
/* This file adds page-level overrides */

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: var(--space-6);
}

/* Stagger animation on load */
.testimonials-grid .testimonial:nth-child(1) { animation-delay: 0ms; }
.testimonials-grid .testimonial:nth-child(2) { animation-delay: 100ms; }
.testimonials-grid .testimonial:nth-child(3) { animation-delay: 200ms; }
.testimonials-grid .testimonial:nth-child(4) { animation-delay: 300ms; }
.testimonials-grid .testimonial:nth-child(5) { animation-delay: 400ms; }

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