/* ============================================
   header Page
   ============================================ */
.header{
    background-color: var(--color-white);
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}
.logo a{
    color: var(--color-black);
}

.header .logo-img-white {
    display: none !important;
    opacity: 0;
}

.header .logo-img-dark {
    display: block !important;
    opacity: 1;
}

.nav-list > .nav-item > a {
    color: var(--color-black);
}

.auth-nickname{
    color: var(--color-black);
}

.auth-logout{
    color: var(--color-black);
}

.link{
    color: var(--color-black);
}

.menu-toggle span, .menu-toggle span::before, .menu-toggle span::after{
    background-color: var(--color-black);
}

.btn-event{
    background-color: #ed8a99;
    border:none;
    color: var(--color-white);
}

.lang-btn{
    color: var(--color-black);
}

/* 서브페이지에서는 항상 블랙 화살표 표시 */
.header .lang-arrow {
    filter: none !important;
}

/* 서브페이지에서는 항상 블랙 아이콘 표시 */
.header .lang-icon-white {
    display: none !important;
    opacity: 0;
}

.header .lang-icon-dark {
    display: block !important;
    opacity: 1;
}

.header.gnb-open .lang-btn{
    color: var(--color-black);
    border-color: rgba(0, 0, 0, 0.1);
    margin-right: 15px;
}

/* ============================================
   Terms & Privacy Pages
   ============================================ */
body > .container.about {
    padding-top: 150px;
    padding-bottom: 100px;
    padding-left: 0;
    padding-right: 0;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
}

body > .container.about h4.tit {
    font-size: 27px;
    font-weight: 600;
    text-align: center;
    margin-top: 70px;
    margin-bottom: 40px;
    color: #333;
}

.about-tabs {
    width: 800px;
    height: 56px;
    margin: 0 auto 60px;
    display: flex;
    border-radius: 4px;
    overflow: hidden;
}

.about-tabs > button {
    width: 50%;
    height: 100%;
    font-size: 16px;
    color: #111;
    font-weight: 400;
    text-align: center;
    border: none;
    background: #fff;
    cursor: pointer;
    transition: background-color 0.3s;
    flex: 1;
}

.about-tabs .tab:first-of-type {
    position: relative;
}

.about-tabs .tab:first-of-type::after {
    position: absolute;
    top: 15px;
    right: 0;
    display: block;
    content: '';
    width: 1px;
    height: 30px;
    background-color: #eee;
}

.about-tabs .tab.active {
    border-bottom: 4px solid #888;
    font-weight: 600;
}

.wrap {
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px;
}

.wrap textarea.scroll {
    width: 100%;
    min-height: 600px;
    padding: 30px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 14px;
    line-height: 1.8;
    color: #555;
    background: #fff;
    resize: vertical;
    font-family: inherit;
    white-space: pre-wrap;
    word-wrap: break-word;
    resize: none;
}

@media (max-width: 1199px) {
    body > .container.about {
        padding-top: 60px;
        padding-bottom: 60px;
        padding-left: 0;
        padding-right: 0;
    }

    body > .container.about h4.tit {
        font-size: 22px;
    }


    .wrap textarea {
        height: 100%;
        font-size: 14px;
        margin: 40px 0;
        padding: 0 10px;
        min-height: 500px;
    }

    .about-tabs {
        width: 100%;
        height: 50px;
        margin: 0;
    }

    .about-tabs > button {
        width: 50%;
        height: 100%;
        font-size: 15px;
        color: #aaa;
        font-weight: 400;
        text-align: center;
        flex: 1;
    }

    .about-tabs .tab:first-of-type {
        position: relative;
    }

    .about-tabs .tab:first-of-type::after {
        position: absolute;
        top: 15px;
        right: 0;
        display: block;
        content: '';
        width: 1px;
        height: 20px;
        background-color: #eee;
    }

    .about-tabs .tab {
        color: #aaa;
    }

    .about-tabs .tab.active {
        border-bottom: 4px solid #888;
        font-weight: 600;
        color: #333;
    }

    .about-tabs > button:hover {
        background-color: transparent;
    }
}