/* .layer--slider-images */

.swiper {
  height: 400px; /* LOCKED HEIGHT — adjust as needed */
}

.swiper-slide {
  width: auto !important;          /* critical */
  height: 100%;
  display: flex;
  align-items: center;  /* vertical centering if needed */
  cursor: pointer;
}

.swiper-slide img {
  height: 100%;
  width: auto;          /* keeps intrinsic width */
  max-width: none;      /* prevents Swiper from constraining it */
  object-fit: contain; /* or 'cover' if you want cropping */
  display: block;
}
.swiper {
  overflow: hidden;
}

.swiper-wrapper {
  transition-timing-function: linear !important;
}
.swiper {
  pointer-events: auto;
}