.testimonial-slider {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  overscroll-behavior-x: contain;
  scroll-snap-type: x mandatory;
  scrollbar-width: thin;
  scrollbar-color: #214fe5 #e7eaf2;
  padding-bottom: 16px;
  margin-bottom: 40px;
}
.testimonial-slide {
  flex: 0 0 calc((100% - 16px) / 1.5);
  min-width: 0;
  scroll-snap-align: start;
  border-radius: 12px;
  overflow: hidden;
}
.testimonial-slide img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 2 / 3;
  object-fit: contain;
  background: #17212d;
}
.testimonial-slider:focus-visible, .testimonial-slide:focus-visible {
  outline: 3px solid #214fe5;
  outline-offset: 3px;
}
@media (min-width: 768px) {
  .testimonial-slide { flex-basis: calc((100% - 32px) / 3); }
}
