/* =============================================================
 * footer.css — 어두운 배경 푸터.
 *
 * 시안 출처: Figma node 5:2505 (Desktop) / 5:2523 (Mobile).
 * 색은 시안 그대로 `--ws-color-text-2` (#2E2E2E) 사용.
 * ============================================================= */

.ws-footer {
    width: 100%;
    background: var(--ws-color-text-2); /* #2E2E2E — 어두운 배경 */
    color: var(--ws-color-text-white);
    border-top: 1px solid var(--ws-color-border-dark);
}

.ws-footer__inner {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: var(--ws-space-5);        /* 20px */
    padding-top: var(--ws-space-7);     /* 28px (Mobile 시안) */
    padding-bottom: var(--ws-space-7);
}

@media (min-width: 1024px) {
    .ws-footer__inner {
        gap: var(--ws-space-4);    /* 16px */
        padding-top: var(--ws-space-9);    /* 40px (PC 시안) */
        padding-bottom: var(--ws-space-9);
        /* 로고·회사정보·카피라이트를 모두 좌측 정렬 (mobile 과 동일 정렬 라인) */
        align-items: flex-start;
    }
}


/* ─────────────────────────────────────────────────────────────
 *  Logo
 * ───────────────────────────────────────────────────────────── */

.ws-footer__logo {
    display: flex;
    align-items: center;
    line-height: 0;
}

.ws-footer__logo-img {
    display: block;
    height: 48px;
    width: auto;
    max-width: 180px;
}

.ws-footer__logo-placeholder {
    display: block;
    width: 180px;
    height: 48px;
    background: var(--ws-color-primary);
    border-radius: var(--ws-radius-sm);
}


/* ─────────────────────────────────────────────────────────────
 *  Info (회사정보)
 * ───────────────────────────────────────────────────────────── */

.ws-footer__info {
    font-style: normal;
    color: var(--ws-color-text-white);
    font-family: var(--ws-font-body);
    font-size: var(--ws-fs-body-1);
    line-height: var(--ws-lh-relaxed);    /* 1.5 (시안) */
    letter-spacing: var(--ws-ls-tight);
    width: 100%;
    max-width: 1280px;
}

.ws-footer__info-line {
    margin: 0;
    word-break: keep-all;
}

.ws-footer__info-line + .ws-footer__info-line {
    margin-top: 2px;
}

.ws-footer__info-item {
    display: inline;
}

.ws-footer__info-sep {
    display: inline-block;
    margin: 0 var(--ws-space-2);
    color: var(--ws-color-text-mute2);
}

.ws-footer__info a {
    color: inherit;
    text-decoration: underline;
}


/* ─────────────────────────────────────────────────────────────
 *  Copyright
 * ───────────────────────────────────────────────────────────── */

.ws-footer__copyright {
    margin: 0;
    font-family: var(--ws-font-body);
    font-size: var(--ws-fs-body-1);
    line-height: var(--ws-lh-relaxed);
    letter-spacing: var(--ws-ls-tight);
    color: var(--ws-color-text-white);
    opacity: 0.5;                          /* 시안: 흰색 50% */
}
