:root {
    --bannerHeight: 5rem;
}

#banner {
    width: 100%;
    height: var(--bannerHeight, 0px);
    background: #243853;
    padding: 0 5rem;
    display: flex;
    justify-content: center;
    align-items: center;
    position: fixed;
    top: 0;
    z-index: 998;
    overflow-y: hidden;
    transition: height 0.2s ease-in-out;
}
#banner span {
    font-family: "GmarketSans";
    font-weight: 500;
    font-size: 1.4rem;
    letter-spacing: -0.05em;
    color: #fff;
    padding-left: 4.6rem;
    padding-top: 0.3rem; /* 폰트가 위에 있어서 강제로 띄움 */
    background: url("/images/_layouts/banner/ic_new.svg") left no-repeat;
}
#banner button {
    position: absolute;
    right: 5rem;
    top: 50%;
    transform: translateY(-50%);
    font-weight: 500;
    font-size: 1.3rem;
    letter-spacing: -0.03em;
    color: #fff;
    padding-right: 2rem;
    background: url("/images/_layouts/banner/ic_cross.svg") right no-repeat;
}

@media (max-width: 1350px) {
    #banner button {
        right: 2rem;
    }
}
@media (max-width: 768px) {
    #banner button {
        font-size: 0;
        width: 12px;
        height: 12px;
        padding-right: 0;
    }
}
@media (max-width: 600px) {
    #banner {
        justify-content: flex-start;
        padding: 0 2rem;
    }
    #banner span {
        font-size: 1.3rem;
        margin-right: auto;
    }
    #banner button {
        position: static;
        transform: none;
        margin-left: 2rem;
        flex-shrink: 0;
    }
}
@media (max-width: 480px) {
    #banner {
        padding: 0 16px;
    }
}