@charset "utf-8";

/* ===== Footer ===== */
.footer {
    background: #fff;
    padding: 60px var(--side-padding, 240px) 100px;
    border-top: 1px solid #dddddd;
}

.footer .footer-inner {
    width: 100%;
    max-width: var(--content-max, 1440px);
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.footer .footer-logo-wrap {
    line-height: 0;
}

.footer .footer-logo {
    width: 260px;
    height: 47px;
    object-fit: contain;
    opacity: 0.8;
}

.footer .footer-info-wrap {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer .footer-info {
    display: flex;
    align-items: center;
    gap: 20px;
    font-size: 18px;
    font-weight: 500;
    color: rgba(0, 0, 0, 0.4);
    line-height: 1.4;
    letter-spacing: -0.36px;
}

.footer .footer-info strong {
    font-weight: 600;
    color: rgba(0, 0, 0, 0.4);
}

.footer .footer-info .divider {
    display: inline-block;
    width: 1px;
    height: 22px;
    background: rgba(0, 0, 0, 0.15);
    flex-shrink: 0;
}

.footer .footer-copyright {
    font-size: 16px;
    font-weight: 500;
    color: #000;
    opacity: 0.32;
    line-height: 1.4;
    letter-spacing: -0.32px;
    text-transform: uppercase;
    margin: 0;
}

/* ===== Footer Responsive ===== */
@media (max-width: 960px) {
    .footer {
        padding: 40px 30px 60px;
    }

    .footer .footer-logo {
        width: 200px;
        height: auto;
    }

    .footer .footer-info {
        flex-wrap: wrap;
        font-size: 14px;
        gap: 10px;
    }

    .footer .footer-info .divider {
        height: 16px;
    }

    .footer .footer-copyright {
        font-size: 13px;
    }
}
