/* YDC2026 — Explore Swiper */

.ydc-explore-swiper {
  overflow: hidden;
  margin-bottom: var(--ydc-space-4, 32px);
}

.ydc-explore-swiper .swiper-slide {
  height: auto;
}

.ydc-explore-swiper .ydc-card {
  height: 100%;
}

.ydc-explore-swiper__controls {
  width: 100%;
  gap: 28px;
  margin-bottom: var(--ydc-space-4, 32px);
}

.ydc-explore-swiper__pagination {
  display: flex;
  align-items: center;
  gap: 8px;
  position: static;
  width: auto;
}

.ydc-explore-swiper__pagination .swiper-pagination-bullet {
  display: block;
  width: 48px;
  height: 8px;
  margin: 0;
  border-radius: 100px;
  background: rgba(178, 0, 88, 0.3);
  opacity: 1;
  transition: background-color 0.2s ease;
}

.ydc-explore-swiper__pagination .swiper-pagination-bullet-active {
  background: #b20058;
}

@media (max-width: 575.98px) {
  .ydc-explore-swiper__controls {
    justify-content: center;
  }

  .ydc-explore-swiper__pagination .swiper-pagination-bullet {
    width: 32px;
  }
}