/* ==============================
   Footer Layout (시안 동일 재현)
============================== */
.footer {
    width: 100%;
    background: #fff;
    border-top: 1px solid #ddd;
    padding: 25px 0;
    font-family: 'Noto Sans KR', sans-serif;
}

.footer-inner {
    width: 90%;
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    color: #777;
    font-size: 12px;
    line-height: 1.8;
}

/* 왼쪽 정보 */
.footer-left {
    flex: 1;
    text-align: left;
    color: #666;
    word-break: keep-all;
}

.footer-left p {
    margin: 2px 0;
}

/* 오른쪽 정책 & 카피라이트 */
.footer-right {
    flex: 1;
    text-align: right;
    color: #777;
}

.footer-links {
    font-size: 12px;
    color: #666;
    margin-bottom: 5px;
}

.footer-links a,
.footer-links span {
    color: #666;
    margin-left: 6px;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #222;
}

.footer-copy {
    font-size: 11px;
    color: #999;
    letter-spacing: 0.03em;
}

/* ==============================
   1200px ~ 901px : 비례 축소
============================== */
@media (max-width: 1200px) and (min-width: 901px) {
    .footer {
        padding: 20px 0;
    }

    .footer-inner {
        width: 92%;
        font-size: 11.5px;
    }

    .footer-copy {
        font-size: 10.5px;
    }
}

/* ==============================
   900px ~ 801px : 정렬 전환 준비
============================== */
@media (max-width: 900px) and (min-width: 801px) {
    .footer-inner {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 8px;
    }

    .footer-left,
    .footer-right {
        text-align: center;
    }

    .footer-copy {
        font-size: 10.5px;
    }
}

/* ==============================
   800px 이하 : 완전 중앙 정렬
============================== */
@media (max-width: 800px) {
    .footer {
        padding: 25px 0;
    }

    .footer-inner {
        flex-direction: column;
        align-items: center;
        justify-content: center;
        text-align: center;
        gap: 12px;
        width: 94%;
    }

    .footer-left,
    .footer-right {
        width: 100%;
        text-align: center;
    }

    .footer-left p,
    .footer-right p {
        margin: 4px 0;
    }

    .footer-copy {
        font-size: 10px;
        color: #888;
        letter-spacing: 0.02em;
    }
}

/* ==============================
   600px 이하 : 폰트/간격 추가 축소
============================== */
@media (max-width: 600px) {
    .footer-inner {
        gap: 10px;
        font-size: 11px;
    }

    .footer-copy {
        font-size: 9.5px;
    }
}

/* ==============================
   400px 이하 : 최소 대응
============================== */
@media (max-width: 400px) {
    .footer {
        padding: 20px 0;
    }

    .footer-inner {
        gap: 8px;
        font-size: 10.5px;
    }

    .footer-copy {
        font-size: 9px;
        line-height: 1.4;
    }
}

