/* ---------- FOOTER ---------- */
.site-footer {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    background: var(--bg);
}

.footer-inner {
    max-width: 1120px;
    margin: 0 auto;
    padding: 16px 24px 20px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    font-size: 0.9rem;
    color: var(--text-soft);
}

.footer-links {
    display: flex;
    gap: 18px;
    flex-wrap: wrap;
}

.footer-icp {
    max-width: 1120px;
    margin: 0 auto;
    padding: 0 24px 16px;
    color: var(--text-soft);
    font-size: 0.9rem;
}

@media (max-width: 768px) {
    .footer-inner {
        flex-direction: column;
        align-items: center;
        justify-content: center;
        text-align: center;
        gap: 12px;
    }

    .footer-links {
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 10px;
    }

        .footer-links .me-2 {
            margin-right: 0 !important;
        }

    .footer-icp {
        text-align: center;
    }
}
