/* ==================== FOOTER ==================== */

.footer {
    padding: calc(var(--space-2xl) + 2rem) 0 var(--space-xl);
    background: var(--white);
    position: relative;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: var(--space-xl);
}

.footer-logo-section {
    display: flex;
    flex-direction: column;
    gap: var(--space-xs);
}

.footer-logo {
    max-width: 6.25rem;
    height: auto;
    opacity: 0.7;
}

.footer-copyright {
    font-size: 0.8125rem;
    color: var(--text-muted);
    font-weight: 400;
}

.footer-links {
    display: flex;
    gap: var(--space-lg);
    list-style: none;
}

.footer-link {
    font-size: 0.8125rem;
    font-weight: 500;
    color: var(--text-secondary);
    transition: color var(--duration-fast) ease;
}

.footer-link:hover {
    color: var(--primary);
}

.footer-disclaimer {
    margin: var(--space-xs) auto 0;
    padding-top: var(--space-sm);
    border-top: 1px solid rgba(61, 90, 128, 0.06);
    font-size: 0.8125rem;
    line-height: 1.45;
    font-weight: 400;
    color: var(--text-muted);
    text-align: center;
}

/* ==================== Mobile ==================== */
@media (max-width: 768px) {
    .footer-content {
        flex-direction: column;
        text-align: center;
        gap: var(--space-lg);
    }

    .footer-logo-section {
        align-items: center;
    }

    .footer-links {
        flex-wrap: wrap;
        justify-content: center;
        gap: var(--space-sm) var(--space-lg);
    }
}
