@charset "utf-8";
@charset "utf-8";

/* ================================
   Footer
================================ */
#footer {
    background-color: #2e2e2e;
    color: #fff;
    padding: 40px 0;
}

#footer .footer_inner {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

/* 좌측 */
#footer .footer_left {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

#footer .footer_left .footer_company {
    color: #fff;
}

#footer .footer_left .footer_info {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

#footer .footer_left .footer_info .footer_contact,
#footer .footer_left .footer_info .footer_address {
    color: #ccc;
    line-height: 1.6;
}

#footer .footer_left .footer_copy {
    color: #888;
    margin-top: 4px;
}

/* 우측 로고 */
#footer .footer_right .footer_logo {
    color: #fff;
}

/* ================================
   Mobile
================================ */
@media screen and (max-width: 767px) {

    #footer {
        padding: 40px 0;
    }

    #footer .footer_inner {
        flex-direction: column;
        align-items: flex-start;
        gap: 30px;
    }

    #footer .footer_left .footer_info .footer_contact {
        display: flex;
        flex-direction: column;
        gap: 6px;
    }

    #footer .footer_left .footer_info .footer_contact,
    #footer .footer_left .footer_info .footer_address {
        font-size: 12px;
        word-break: keep-all;
    }

    #footer .footer_right .footer_logo {
        font-size: 28px;
    }
}

/* ================================
   Tablet
================================ */
@media screen and (min-width: 768px) and (max-width: 1024px) {

    #footer .footer_inner {
        flex-direction: column;
        align-items: flex-start;
        gap: 24px;
    }

    #footer .footer_left .footer_info .footer_contact,
    #footer .footer_left .footer_info .footer_address {
        font-size: 13px;
        word-break: keep-all;
    }

    #footer .footer_right .footer_logo {
        font-size: 30px;
    }
}