/* ==========================================
   개인정보 수집 및 이용안내 팝업 (privacy-term-modal)
   ========================================== */

#privacy-term-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    z-index: 99999;
    justify-content: center;
    align-items: center;
}

.privacy-modal__box {
    background: #fff;
    border-radius: 12px;
    max-width: 480px;
    width: 90%;
    max-height: 75vh;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.privacy-modal__header {
    padding: 14px 16px 10px;
    border-bottom: 1px solid #eee;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.privacy-modal__title {
    margin: 0;
    font-size: 17px;
    font-weight: 600;
    color: #222;
}

.privacy-modal__close {
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: #666;
    line-height: 1;
}

.privacy-modal__body {
    padding: 16px;
    overflow-y: auto;
    font-size: 12px;
    color: #444;
    line-height: 1.4;
    word-break: keep-all;
}

.privacy-modal__body p {
    margin: 0 0 12px;
}

.privacy-modal__section-title {
    font-weight: 700;
    color: #222;
    margin: 12px 0 6px !important;
}

.privacy-modal__list {
    margin: 0 0 8px;
    padding-left: 18px;
}

.privacy-modal__list li {
    list-style: disc;
    margin-bottom: 4px;
}

.privacy-modal__footer {
    padding: 6px 24px 16px;
    text-align: center;
}

.privacy-modal__confirm {
    background: #222;
    color: #fff;
    border: none;
    border-radius: 6px;
    padding: 10px 30px;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
}