/* sliders-helper.css
   Small stability/cosmetic helpers for multi-card Swiper sliders */

/* Ensure pagination and arrows render above slides */
.catalogs-vertical, .testimonials-slider {
  position: relative;
}

/* Avoid clipping focus/hover effects around slides */
.catalogs-vertical .swiper, .testimonials-slider .swiper {
  overflow: visible;
}

/* A bit more breathing room around arrows on desktop */
@media (min-width: 992px) {
  .catalogs-vertical .swiper-button-prev,
  .catalogs-vertical .swiper-button-next,
  .testimonials-slider .swiper-button-prev,
  .testimonials-slider .swiper-button-next {
    transform: translateY(-50%);
  }
}

/* Card media fits without cropping */
.catalogs-vertical .swiper-slide img,
.testimonials-slider .swiper-slide img {
  max-width: 100%;
  height: auto;
  object-fit: contain;
  display: block;
}
