/* Carrusel de fotos de la clínica (intro portada) */

.eda-clinic-swiper {
  position: relative;
  overflow: hidden;
  width: 100%;
  max-width: 100%;
  margin: 0;
  aspect-ratio: 1024 / 686;
}

/* Evitar que el wrapper flex de Swiper rompa el 50% de columna antes/después de init */
.eda-clinic-swiper .swiper-wrapper {
  box-sizing: border-box;
}

.eda-clinic-swiper:not(.swiper-initialized) .swiper-slide:not(:first-child) {
  display: none;
}

.eda-clinic-swiper .swiper-slide {
  width: 100% !important;
  height: 100%;
}

.eda-clinic-swiper .swiper-slide img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.eda-clinic-swiper .swiper-pagination {
  bottom: 14px;
}

.eda-clinic-swiper .swiper-pagination-bullet {
  width: 8px;
  height: 8px;
  margin: 0 5px;
  background: #c4c4c4;
  opacity: 1;
}

.eda-clinic-swiper .swiper-pagination-bullet-active {
  background: var(--eda-black);
}
