/* Обёртка */
.slider-wrapper-container {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 10px;
}

/* Контейнер каждого слайдера */
[class^="custom-slider-container-"] {
  width: 188px;
  height: 117px;
  position: relative;
  overflow: hidden;
}

/* Размеры каждого Swiper */
[class^="slider-"] {
  width: 188px;
  height: 117px;
}

/* Картинки */
[class^="custom-slider-container-"] img {
  width: 188px;
  height: 117px;
  object-fit: cover;
  display: block;
  border-radius: 8px;
}

/* Стрелки */
[class^="swiper-button-prev-"],
[class^="swiper-button-next-"] {
  position: absolute;
  top: 50%;
  width: 20px;
  height: 20px;
  transform: translateY(-50%);
  z-index: 10;
  cursor: pointer;
  background-color: rgba(0, 0, 0, 0.3);
  border-radius: 50%;
}

[class^="swiper-button-prev-"] {
  left: 5px;
}

[class^="swiper-button-next-"] {
  right: 5px;
}
