/* 페이지 배너 공통 스타일 */
.page-banner-section {
    width: 100%;
    max-width: 100%;
    background: var(--bg-white, #ffffff);
    margin-bottom: 1rem;
    overflow: hidden;
    box-sizing: border-box;
}

.page-banner-wrapper {
    display: block;
    width: 100%;
    aspect-ratio: 10 / 3;
    overflow: hidden;
    position: relative;
}

.page-banner-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    background: #ffffff;
    transition: transform 0.3s ease;
}

.page-banner-wrapper:hover img {
    transform: scale(1.02);
}

/* Swiper 슬라이더 스타일 */
.page-banner-swiper {
    width: 100%;
    aspect-ratio: 10 / 3;
}

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

.page-banner-swiper .swiper-pagination {
    bottom: 8px;
}

.page-banner-swiper .swiper-pagination-bullet {
    background: #ffffff;
    opacity: 0.6;
    width: 6px;
    height: 6px;
}

.page-banner-swiper .swiper-pagination-bullet-active {
    background: var(--primary-color, #008f8c);
    opacity: 1;
    width: 18px;
    border-radius: 3px;
}

/* 반응형 */
@media (min-width: 768px) {
    .page-banner-section {
        width: calc(100% - 2rem);
        max-width: calc(100% - 2rem);
        margin: 0 1rem 1rem;
        border-radius: 12px;
    }

    .page-banner-wrapper,
    .page-banner-swiper {
        aspect-ratio: 10 / 3;
        border-radius: 12px;
    }
}

@media (min-width: 1024px) {
    .page-banner-wrapper,
    .page-banner-swiper {
        aspect-ratio: 10 / 3;
    }
}
