/* ================================================================
   KOOSHA PIANO — TESTIMONIALS MOBILE OVERRIDES
   ================================================================ */

@media (max-width: 768px) {
  .testimonials-section {
    padding-block: clamp(3rem, 7vh, 5rem);
  }

  /* Grid: single column or 1 wide card */
  .testimonials-grid {
    grid-template-columns: 1fr !important;
    gap: 1rem !important;
  }

  /* Testimonial card: comfortable padding */
  .testimonial-card {
    padding: 1.25rem;
  }

  /* Slider: show one at a time */
  .testimonials-slider {
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    display: flex;
    gap: 1rem;
  }

  .testimonials-slider::-webkit-scrollbar {
    display: none;
  }

  .testimonials-slider .testimonial-card {
    flex-shrink: 0;
    width: 85vw;
    scroll-snap-align: start;
  }

  /* Navigation arrows: bigger touch targets */
  .testimonials-nav-btn {
    width: 44px;
    height: 44px;
  }
}

@media (max-width: 480px) {
  .testimonials-slider .testimonial-card {
    width: 92vw;
  }
}
