/* 
// Added by EB Song on 2026-03-17.
*/

.footer {
    background-color: transparent;
    border-top: 1px solid #D9D9D9;
    padding: 60px 0;
    margin-top: 80px;
}

.footer-inner {
    display: flex;
    justify-content: space-between;
    gap: 60px;
}

/* 왼쪽 회사 정보 */
.footer-company {
    max-width: 600px;
}

.footer-logo img {
    width: 140px;
    margin-left: -6px;
    margin-bottom: 5px;
}

.footer-info {
    font-family: 'Pretendard', sans-serif;
    font-size: 12px;
    font-weight: 400;
    color: #AAAAAA;
    line-height: 18px;
    margin: 4px 0;
}
.footer-copy {
    font-size: 12px;
    color: #AAAAAA;
    margin-top: 12px;
}

/* 오른쪽 링크 영역 */
.footer-links {
    margin-top: 8px;
    display: flex;
    gap: 60px;
}

.footer-col h5 {
    font-family: 'Pretendard', sans-serif;
    font-size: 16px;
    font-weight: 500;
    color: #111111;
    margin-bottom: 12px;
}

.footer-col p {
    margin: 0;
}

.footer-col a {
    font-family: 'Pretendard', sans-serif;
    font-size: 14px;
    font-weight: 300;
    color: #3D3D3D;
    line-height: 26px;
    text-decoration: none;
    display: block;
}

.footer-col a:hover {
    color: #111111;
}

@media (max-width: 1024px) {
    .footer {
        padding: 40px 0;
        margin-top: 60px;
    }

    .footer-inner {
        flex-direction: column;
        justify-content: flex-start;
        gap: 32px;
    }

    .footer-company {
        max-width: 100%;
    }

    .footer-logo img {
        margin-left: 0;
    }

    .footer-links {
        width: 100%;
        display: flex;
        flex-direction: column;
        gap: 24px;
        margin-top: 0;
    }

    .footer-col {
        width: 100%;
    }

    .footer-col h5 {
        font-size: 15px;
        margin-bottom: 10px;
    }

    .footer-col a {
        font-size: 14px;
        line-height: 24px;
        word-break: keep-all;
        overflow-wrap: break-word;
    }

    .footer-info,
    .footer-copy {
        word-break: keep-all;
        overflow-wrap: break-word;
    }
}