/* 사이트 팝업 레이어 (includes/footer.php 에서 동적 생성) */
.site-popup-layer {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    box-sizing: border-box;
}
.site-popup-box {
    position: relative;
    /* width 는 팝업 설정값에 따라 인라인으로 지정 */
    max-width: 100%;
    max-height: 90vh;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    overflow: auto;
    box-sizing: border-box;
}
.site-popup-close {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 36px;
    height: 36px;
    border: none;
    background: rgba(0, 0, 0, 0.5);
    color: #fff;
    border-radius: 50%;
    cursor: pointer;
    font-size: 18px;
    line-height: 1;
    z-index: 2;
}
.site-popup-img {
    width: 100%;
    height: auto;
    display: block;
    vertical-align: top;
}
.site-popup-body {
    padding: 24px;
}
.site-popup-title {
    margin: 0 0 12px;
    font-size: 20px;
    color: #2B3674;
}
.site-popup-text {
    font-size: 14px;
    color: #555;
    line-height: 1.6;
}
.site-popup-link {
    display: inline-block;
    margin-top: 16px;
    padding: 10px 20px;
    background: #6C5CE7;
    color: #fff;
    border-radius: 8px;
    text-decoration: none;
    font-size: 14px;
}
.site-popup-footer {
    padding: 12px 24px;
    border-top: 1px solid #eee;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 8px;
}
.site-popup-checklabel {
    cursor: pointer;
    font-size: 13px;
    color: #666;
    display: flex;
    align-items: center;
    gap: 8px;
}
.site-popup-closebtn {
    padding: 8px 16px;
    border: 1px solid #ddd;
    background: #fff;
    border-radius: 8px;
    cursor: pointer;
    font-size: 13px;
}
