.site-footer {
    border-top: 1px solid var(--color-line);
    background: #ffffff;
}

.site-footer-inner {
    display: flex;
    justify-content: space-between;
    gap: 24px;
    padding: 34px 0 54px;
}

.footer-brand {
    font-size: 24px;
    font-weight: 900;
}

.footer-text {
    margin-top: 8px;
    color: var(--color-sub-text);
    font-size: 14px;
    line-height: 1.8;
}

.footer-links {
    display: flex;
    gap: 24px;
    align-items: flex-start;
    flex-wrap: wrap;
}

.footer-links a {
    font-size: 14px;
    color: var(--color-sub-text);
}

.footer-links a:hover {
    color: var(--color-point);
}

@media (max-width: 860px) {
    .site-footer-inner {
        flex-direction: column;
    }
}



/**
 * 개발중 안내 모달
 */
.under-construction-modal {
    position: fixed;
    inset: 0;
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
}

.under-construction-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(17, 17, 17, 0.62);
    backdrop-filter: blur(0.25rem);
}

.under-construction-dialog {
    position: relative;
    width: min(100%, 46rem);
    border-radius: 2rem;
    background: linear-gradient(145deg, #ffffff 0%, #f5f7fa 100%);
    box-shadow: 0 2rem 5rem rgba(0, 0, 0, 0.22);
    border: 1px solid #e8edf3;
    overflow: hidden;
    z-index: 1;
}

.under-construction-content {
    padding: 3.5rem 3rem;
    text-align: center;
}

.under-construction-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 6.5rem;
    height: 2.25rem;
    padding: 0 1rem;
    border-radius: 99rem;
    background: #eef4fb;
    color: var(--color-point);
    font-size: 0.8125rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    margin-bottom: 1.25rem;
}

.under-construction-title {
    margin: 0;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 900;
    line-height: 1.2;
    letter-spacing: -0.04em;
    color: #111111;
}

.under-construction-desc {
    margin: 1.375rem auto 0;
    max-width: 34rem;
    font-size: 1.0625rem;
    line-height: 1.8;
    color: #555e68;
    word-break: keep-all;
}

.under-construction-actions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.875rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.under-construction-btn {
    min-width: 10rem;
}

.under-construction-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 3rem;
    height: 3rem;
    border: 0;
    border-radius: 999px;
    background: rgba(17, 17, 17, 0.06);
    color: #111111;
    font-size: 1.75rem;
    line-height: 1;
    cursor: pointer;
}

.under-construction-modal.is-hidden {
    display: none;
}

body.modal-open {
    overflow: hidden;
}

@media (max-width: 53.75rem) {
    .under-construction-content {
        padding: 2.5rem 1.5rem;
    }

    .under-construction-title {
        font-size: 2rem;
    }

    .under-construction-desc {
        font-size: 0.975rem;
    }

    .under-construction-actions {
        flex-direction: column;
    }

    .under-construction-btn {
        width: 100%;
    }
}
