/* Client Feedback — consistent 3-card desktop grid across all pages that use .testis */
#testimonials .testis {
  display: grid !important;
  grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  gap: 18px !important;
  align-items: stretch !important;
}

#testimonials .testis > .testi {
  width: auto !important;
  max-width: none !important;
  min-width: 0 !important;
  margin: 0 !important;
  height: 100% !important;
}

@media (max-width: 991px) {
  #testimonials .testis {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }
}

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