/* 누비고 사이트 이전 안내 팝업 (하드코딩, 단일 정적 팝업) */
#sitePopupModal.modal {
    display: none;
    position: fixed;
    z-index: 999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background: rgba(0, 0, 0, 0.45);
}

#sitePopupModal .modal-content.site-popup-card {
    position: relative;
    margin: 90px auto 0;
    width: 90%;
    max-width: 420px;
    border: none;
    border-radius: 20px;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 24px 60px -12px rgba(20, 30, 60, 0.35), 0 4px 16px rgba(20, 30, 60, 0.08);
}

.site-popup-image-wrap {
    position: relative;
    width: 100%;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    background: #f2f3f5;
}

.site-popup-image-wrap > img:first-child {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.site-popup-badge-overlay {
    position: absolute;
    left: 50%;
    bottom: -18%;
    width: 62%;
    height: auto;
    transform: translateX(-50%);
}

.site-popup-body {
    padding: 30px 26px 22px;
    text-align: center;
}

.site-popup-title {
    margin: 0 0 10px;
    font-size: 20px;
    font-weight: 700;
    color: #1a1a1a;
    line-height: 1.4;
    word-break: keep-all;
}

.site-popup-text {
    margin: 0 0 20px;
    font-size: 15px;
    line-height: 1.7;
    color: #5b6068;
    word-break: keep-all;
}

.site-popup-actions {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 14px;
}

.site-popup-btn {
    display: block;
    padding: 13px 16px;
    border-radius: 12px;
    font-size: 15px;
    font-weight: 700;
    text-decoration: none;
    cursor: pointer;
}

.site-popup-btn--primary {
    background: #2a5ec4;
    color: #fff;
}

.site-popup-btn--primary:hover {
    background: #244f9f;
}

.site-popup-btn--outline {
    background: #fff;
    color: #2a5ec4;
    border: 1px solid #2a5ec4;
}

.site-popup-btn--outline:hover {
    background: #f3f6fd;
}

@media screen and (max-width: 768px) {
    #sitePopupModal .modal-content.site-popup-card {
        margin: 60px auto 0;
        width: 92%;
    }

    .site-popup-title {
        font-size: 18px;
    }

    .site-popup-text {
        font-size: 14px;
    }

    .site-popup-btn {
        font-size: 14px;
        padding: 12px 14px;
    }
}
