/* Frontend & Editor shared styles */
.cdi-carrusel-wrapper {
  width: 100%;
  display: flex;
  justify-content: center;
}

/* Desktop: 80% centered */
.cdi-carrusel {
  width: 80%;
  box-sizing: border-box;
}

/* Mobile/Tablet: full width */
@media (max-width: 1024px) {
  .cdi-carrusel {
    width: 100%;
  }
}

.cdi-carrusel .swiper-slide img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
}

/* Pagination dots styling */
.cdi-carrusel .swiper-pagination-bullets {
  bottom: 8px;
}

/* Hide arrows */
.cdi-carrusel .swiper-button-next,
.cdi-carrusel .swiper-button-prev {
  display: none;
}
