/* Carrusel base */
.swiper.cc-carousel {
  width: 100%;
  height: var(--carousel-height, 400px);
  position: relative;
  overflow: hidden;
}

/* Slides */
.swiper-slide.cc-carousel-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 10px;
  box-sizing: border-box;
}

/* Medios (imagen, video, iframe) */
.cc-carousel-item img,
.cc-carousel-item video,
.cc-carousel-item iframe {
  width: var(--media-width, 100%);
  height: var(--media-height, 200px);
  object-fit: cover;
  border-radius: 8px;
  display: block;
  margin-bottom: 10px;
  max-width: 100%;
}

/* Texto */
.cc-carousel-item p {
  margin: 0;
  font-size: 14px;
  color: #333;
}

/* Flechas de navegaci¨Žn */
.swiper-button-prev,
.swiper-button-next {
  top: 0;
  bottom: 0;
  height: 100%;
  width: 60px;
  background: rgba(0, 0, 0, 0);
  color: #fff;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s ease;
}

.swiper-button-prev:hover,
.swiper-button-next:hover {
  background: rgba(0, 0, 0, 0.6);
}

/* Paginaci¨Žn */
.swiper-pagination-bullet {
  background: #000;
  opacity: 0.5;
}

.swiper-pagination-bullet-active {
  opacity: 1;
}
