/* === Footer === */
.site-footer {
    flex-shrink: 0;
    background-color: var(--color-charcoal-700);
    border-top: none;
    padding: 24px 0 16px;
    width: 98%;
    margin: 0;
}

.footer-container {
    max-width: 100%;
    margin: 0 auto;
    padding: 0 24px;
}

.footer-content {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 120px;
    margin-bottom: 20px;
    max-width: 1440px;
    margin-left: auto;
    margin-right: auto;
}

.footer-section {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-title {
    font-size: 13px;
    font-weight: 600;
    color: var(--color-white);
    margin-bottom: 2px;
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding: 0;
    margin: 0;
}

.footer-link {
    color: var(--color-gray-300);
    text-decoration: none;
    font-size: 13px;
    transition: color 0.15s ease;
}

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

.footer-bottom {
    padding-top: 16px;
    border-top: none;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
    max-width: 1440px;
    margin-left: auto;
    margin-right: auto;
}

.footer-copyright {
    font-size: 12px;
    color: var(--color-gray-400);
}

.footer-legal {
    display: flex;
    gap: 20px;
}

.footer-legal-link {
    font-size: 12px;
    color: var(--color-gray-400);
    text-decoration: none;
    transition: color 0.15s ease;
}

.footer-legal-link:hover {
    color: var(--color-gray-300);
}

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

    .footer-bottom {
        flex-direction: column;
        gap: 12px;
    }
}
