.image-carousel__rotator {
  display: flex;
  align-items: center;
  gap: 4px;
}
@media only screen and (min-width: 768px) {
  .image-carousel__rotator {
    gap: 0;
  }
}
.image-carousel__swiper {
  overflow: hidden;
  flex: 1;
  min-width: 0;
}
.image-carousel__slide {
  width: calc((100% - 10px) / 1.2);
  flex-shrink: 0;
}
@media only screen and (min-width: 768px) {
  .image-carousel__slide {
    width: calc((100% - 40px) / 2.5);
  }
}
.image-carousel__img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 660/488;
  object-fit: cover;
  border-radius: 20px;
}
.image-carousel__arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: none;
  background: #FFFFFF;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
  cursor: pointer;
  color: #002957;
  padding: 0;
  transition: opacity all 0.3s ease-out;
  z-index: 3;
}
@media only screen and (min-width: 768px) {
  .image-carousel__arrow {
    width: 80px;
    height: 80px;
  }
}
.image-carousel__arrow::before {
  display: none !important;
}
.image-carousel__arrow svg {
  width: 8px;
  height: 14px;
}
@media only screen and (min-width: 768px) {
  .image-carousel__arrow svg {
    width: 15px;
    height: 25px;
  }
}
.image-carousel__arrow--prev {
  margin-right: -15px;
}
@media only screen and (max-width: 767px) {
  .image-carousel__arrow--prev {
    transform: translateX(-14px);
  }
}
@media only screen and (min-width: 768px) {
  .image-carousel__arrow--prev {
    margin-right: -40px;
  }
}
.image-carousel__arrow--next {
  margin-left: -15px;
}
@media only screen and (max-width: 767px) {
  .image-carousel__arrow--next {
    transform: translateX(14px);
  }
}
@media only screen and (min-width: 768px) {
  .image-carousel__arrow--next {
    margin-left: -40px;
  }
}
.image-carousel__arrow.swiper-button-disabled {
  opacity: 0;
  pointer-events: none;
}
.image-carousel__pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 6px;
}
@media only screen and (min-width: 768px) {
  .image-carousel__pagination {
    margin-top: 40px;
  }
}
.image-carousel__pagination .swiper-pagination-bullet {
  display: block;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: rgba(0, 41, 87, 0.2);
  cursor: pointer;
  transition: background all 0.3s ease-out;
}
.image-carousel__pagination .swiper-pagination-bullet-active {
  background: #002957;
}
.image-carousel__preview-notice {
  padding: 1rem;
  background: #f0f0f0;
  border: 1px dashed #ccc;
  text-align: center;
}

/*# sourceMappingURL=image-carousel.css.map */
