 /* swiper banner section */
 #section-banner {
    min-height: 100vh !important;
    height: 100vh !important;
    max-height: none !important;
}

.section.banner .mySwiper {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.section.banner .mySwiper .swiper-wrapper {
    display: flex;
    height: 100%;
}

.section.banner .mySwiper .swiper-slide {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

/* 슬라이드: 1=밝은 블루 계열, 2=짙은 골드·앰버(흰색 텍스트 대비) — variables-brand.css */
.section.banner .mySwiper .swiper-slide.banner1 {
    background-color: var(--color-brand-blue-bright);
    background-image: var(--gradient-banner-blue-light);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

.section.banner .mySwiper .swiper-slide.banner2 {
    background-color: #4a3d12;
    background-image: var(--gradient-banner-gold-deep);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

.section.banner .mySwiper .banner-lead-text,
.section.banner .mySwiper .banner-lead-text .login-link {
    color: rgba(255, 255, 255, 0.94);
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.28);
}

.section.banner .mySwiper .slide-wrap {
    max-width: 1440px;
    width: 100%;
    position: relative;
    padding: 0 120px;
    display: flex;
    align-items: center;
}

/* banner contents */
.section.banner .mySwiper .left-contents {
    z-index: 2;
    display: flex;
    flex-direction: column;
    gap: 32px;
    color: #fff;
    max-width: 600px;
}

.section.banner .mySwiper .left-contents .title01 {
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.18);
}

.section.banner .mySwiper .title01.mo {
    display: none;
}

.section.banner .mySwiper .store-btns {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.section.banner .mySwiper .store-btn {
    display: flex;
    width: 180px;
    height: 56px;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: #111;
    border-radius: 6px;
}

.section.banner .mySwiper .store-btn > span {
    font-size: 18px;
    font-weight: 600;
    color: #fff;
}

/* banner right contents */
.section.banner .mySwiper .right-contents {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 120px;
    width: 238px;
    height: 500px;
    flex-shrink: 0;
}

.section.banner .mySwiper .right-contents .img-wrap {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.section.banner .mySwiper .right-contents .img-wrap img {
    max-width: 100%;
    height: auto;
}

.section.banner .mySwiper .right-contents.money {
    width: 473px;
    height: 473px;
}

.section.banner .mySwiper .right-contents.money .img-wrap > img {
    width: 100%;
}

/* pagination */
.section.banner .mySwiper .swiper-pagination {
    position: absolute;
    bottom: 138px;
    left: 208px;        
    /* left: 50%;
    transform: translateX(-50%); */
    width: auto;
    display: flex;
    gap: 12px;
}

.section.banner .mySwiper .swiper-pagination-bullet {
    width: 8px;
    height: 8px;
    background-color: #fff;
    opacity: 1;
    border-radius: 50px;
    transition: width .3s linear;
}

.section.banner .mySwiper .swiper-pagination-bullet-active {
    width: 32px;
}

/* 반응형 스타일 */
@media screen and (max-width: 1024px) {
    .section.banner {
        height: 600px;
    }

    .section.banner .mySwiper .slide-wrap {
        padding: 0 60px;
    }

    .section.banner .mySwiper .right-contents {
        right: 60px;
        width: 180px;
        height: 380px;
    }

    .section.banner .mySwiper .right-contents.money {
        width: 320px;
        height: 320px;
    }

    .section.banner .mySwiper .swiper-pagination {
        left: 60px;
        bottom: 80px;
    }
}

@media screen and (max-width: 768px) {
    #section-banner {
        min-height: auto !important;
        height: auto !important;
        padding-top: 0;
        padding-bottom: 40px;
        box-sizing: border-box;
    }

    .section.banner .mySwiper .slide-wrap {
        min-height: 100vh;
        padding: 48px 20px 80px;
        flex-direction: column;
        box-sizing: border-box;
    }

    .section.banner .mySwiper .left-contents {
        text-align: center;
        align-items: center;
    }

    .section.banner .mySwiper .title01 {
        display: none;
    }

    .section.banner .mySwiper .title01.mo {
        display: block;
    }

    .section.banner .mySwiper .store-btn {
        width: 150px;
        height: 48px;
    }

    .section.banner .mySwiper .store-btn > span {
        font-size: 16px;
    }

    .section.banner .mySwiper .right-contents {
        position: relative;
        top: 20px;
        right: auto;
        transform: none;
        width: 140px;
        height: 280px;
    }

    .section.banner .mySwiper .right-contents.money {
        width: 240px;
        height: 240px;
    }

    .section.banner .mySwiper .swiper-pagination {
        /* left: 20px; */        
        left: 50%;
        transform: translateX(-50%);
        bottom: 40px;
    }
}