/* 레이아웃 CSS */
footer .inner {max-width:1440px;}
footer .footer_copy {background: #232b37;}
footer .footer_copy_ul1_li2 {color: #fff;}

@media all and (max-width:1024px) { 
    .footer_gnb .inner {padding-left: 0 !important; padding-right: 0 !important;}
    .footer_copy .inner {padding-left: 0 !important; padding-right: 0 !important;}
}

/* 레이아웃 CSS */
.site-footer {
    background: #232b37;
    color: #ffffff;
    padding-top: 50px;
    padding-bottom: 50px;
}

.site-footer a {
    color: #ffffff;
    text-decoration: none;
}

.site-footer a:hover {
    color: #56e479;
}

.site-footer__inner {
    max-width: 1400px;
    margin: 0 auto;
    padding: 32px 24px;
    box-sizing: border-box;
}

.site-footer__top {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 24px;
}

.site-footer__brand {
    display: flex;
    flex-wrap: wrap;
    gap: 80px;
    align-items: flex-start;
}

.site-footer__logo img {
    height: 49px;
    display: block;
}

.site-footer__contact {
    font-size: 14px;
    line-height: 1.6;
    color: #e6e6e6;
}

.site-footer__contact-row {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}

.site-footer__related {
    position: relative;
}

.site-footer__related-btn {
    width: 200px;
    max-width: 100%;
    border: 1px solid #4ade80;
    color: #4ade80;
    background: transparent;
    padding: 8px 16px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    font-size: 14px;
    cursor: pointer;
    transition: background 0.2s, color 0.2s;
}

.site-footer__related-btn:hover {
    background: #4ade80;
    color: #2c3e50;
}

.site-footer__related-btn .icon-up {
    display: none;
}

.site-footer__related-btn.is-open .icon-up {
    display: block;
}

.site-footer__related-btn.is-open .icon-down {
    display: none;
}

.site-footer__related-menu {
    position: absolute;
    left: 0;
    bottom: calc(100% + 8px);
    width: auto;
    min-width: 200px;
    background: #192f55;
    border-radius: 13px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
    overflow: hidden;
    display: none;
    z-index: 10;
    white-space: nowrap;
    padding: 10px;
}

.site-footer__related-menu.is-open {
    display: block;
}

.site-footer__related-item {
    display: block;
    padding: 10px 16px;
    font-size: 14px;
    color: #ffffff;
    transition: color 0.2s, text-decoration-color 0.2s;
}

.site-footer__related-item:hover {
    color: #56e479;
    text-decoration: underline;
}

.site-footer__sns {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}

.site-footer__sns .footer_sns_ico img {
    height: 24px;
    width: auto;
    display: block;
}

.site-footer__bottom {
    border-top: 1px solid #4b5563;
    padding-top: 16px;
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    align-items: center;
    justify-content: space-between;
}

.site-footer__links {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    font-size: 14px;
}

.site-footer__copyright {
    font-size: 12px;
    color: #cbd5f5;
}

@media all and (max-width: 1024px) {
    .site-footer__inner {
        padding-left: 0;
        padding-right: 0;
    }
}

@media all and (max-width: 768px) {
    .site-footer__top {
        align-items: flex-start;
    }

    .site-footer__related-btn {
        width: 100%;
    }

    .site-footer__related-menu {
        width: auto;
        min-width: 100%;
        left: 0;
    }

    .site-footer__brand {
        gap: 40px;
    }
}

@media all and (max-width: 480px) {
    .site-footer__brand {
        gap: 24px;
    }
}