@charset "utf-8";

/* 메인 히어로 */
#container:has(.main-hero),
#container_wr:has(.main-hero) {
    width: 100%;
    max-width: none;
    float: none;
    margin: 0;
    min-height: 0;
    padding: 0;
}

.main-hero__bg-img {
    object-position: left center;
}

@media (min-width: 1024px) {
    .main-hero__bg-img {
        object-position: center center;
    }
}

.main-hero__bg-shade {
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.88) 0%, rgba(255, 255, 255, 0.55) 42%, rgba(255, 255, 255, 0) 72%);
}

@media (max-width: 1023px) {
    .main-hero__bg-shade {
        background: linear-gradient(180deg, rgba(255, 255, 255, 0.72) 0%, rgba(255, 255, 255, 0.35) 55%, rgba(255, 255, 255, 0.15) 100%);
    }
}

/* 외부몰 버튼: 글래스 백드롭 + 하늘색→흰색 그라데이션 외곽선만 */
.main-hero__mall {
    position: relative;
    background: rgba(255, 255, 255, 0.5);
    border: none;
    -webkit-backdrop-filter: blur(14px);
    backdrop-filter: blur(14px);
}

.main-hero__mall::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    padding: 1px;
    background: linear-gradient(90deg, #aad3ff 0%, #ffffff 100%);
    -webkit-mask:
        linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);
    mask:
        linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
}

.main-hero__mall-wrap {
    padding-top: 22px;
}

@media (min-width: 1024px) {
    .main-hero__mall-wrap {
        padding-top: 26px;
    }
}

/* 말풍선 뱃지  */
.main-hero__badge {
    position: absolute;
    left: 36px;
    top: -4px;
    z-index: 2;
    display: block;
    width: 102px;
    height: 35px;
    pointer-events: none;
}

.main-hero__badge-shape {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    display: block;
}

.main-hero__badge-text {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 14px;
    font-weight: 500;
    line-height: 1;
    letter-spacing: 0;
    white-space: nowrap;
}

.main-hero__badge--home {
    width: 128px;
}

@media (max-width: 1023px) {
    .main-hero__mall-wrap {
        padding-top: 16px;
    }

    .main-hero__badge {
        left: 28px;
        top: 4px;
        width: 90px;
        height: 32px;
    }

    .main-hero__badge--home {
        width: 112px;
    }

    .main-hero__badge-text {
        height: 26px;
        font-size: 12px;
    }
}
