/* Swiper */
.swiper {
  width: 100%;
  position: relative;
  overflow: hidden;
}

.swiper-wrapper {
  display: flex;
  transition: transform 0.3s ease-in-out;
  touch-action: pan-x;
  margin-bottom: 14px;
}

.swiper-slide {
  min-width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.swiper-slide img {
  width: 100%;
  height: 169.98px;
  border-radius: 8.91px;
  display: block;
}

.swiper-dots {
  position: absolute;
  bottom: 0px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
}

.swiper-dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background-color: #ccc;
  transition: width 0.3s, height 0.3s, background-color 0.3s;
}

.swiper-dot.active {
  width: 6px;
  height: 6px;
  background-color: #000;
}

.swiper-button-prev,
.swiper-button-next {
  display: none;
}

@media (min-width: 390px) {
  .swiper-slide img {
    height: 205px;
  }
}

@media (min-width: 430px) {
  .swiper-slide img {
    height: 225.79px;
  }
}

@media (min-width: 1280px) {
  .swiper {
    margin-bottom: 12px;
  }

  .swiper-slide img {
    max-width: 296px;
    height: 262.73px;
  }

  .swiper-dots {
    display: none;
  }

  .swiper-button-prev,
  .swiper-button-next {
    display: block;
    position: absolute;
    top: 50%;
    width: 8px;
    height: 12px;
    border: none;
    cursor: pointer;
    z-index: 10;
    background-color: transparent;
  }

  .swiper-button-next {
    right: 0px;
  }
}
