/* Hero Banner Swiper 스타일 */
.hero-banner-swiper {
  width: 100%;
  height: 100%;
}

.hero-banner-swiper .swiper-slide {
  width: 100%;
  height: 100%;
}

/* Pagination 커스텀 스타일 */
.hero-banner-pagination {
  position: absolute;
  z-index: 10;
}

.hero-banner-pagination .swiper-pagination-bullet {
  background-color: color-mix(in oklab, var(--muted-foreground) 30%, transparent);
  opacity: 1;
  transition: all 0.3s ease;
}

.hero-banner-pagination .swiper-pagination-bullet-active {
  background: var(--primary);
  opacity: 1;
}

