.site-footer {
    max-width: 1200px;
    margin: 2.5rem auto 1.5rem;
    padding: 1.5rem 1.5rem 0.75rem;
    font-size: 0.82rem;
    color: var(--text-secondary, #64748b);
    border-top: 1px solid var(--border, rgba(226, 232, 240, 0.9));
}

.site-footer__grid {
    display: grid;
    gap: 1rem;
}

@media (min-width: 768px) {
    .site-footer__grid {
        grid-template-columns: 2fr 1.2fr 1.2fr;
    }
}

.site-footer__title {
    font-weight: 600;
    font-size: 0.9rem;
    color: #334155;
    margin-bottom: 0.4rem;
}

.site-footer__links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.site-footer__links li {
    margin-bottom: 0.25rem;
}

.site-footer__links a {
    color: var(--text-secondary, #64748b);
    text-decoration: none;
    font-size: 0.82rem;
}

.site-footer__links a:hover {
    color: var(--accent, #16a34a);
}

.site-footer__bottom {
    margin-top: 1rem;
    border-top: 1px solid var(--border, rgba(226, 232, 240, 0.9));
    padding-top: 0.6rem;
    font-size: 0.78rem;
    text-align: center;
}

body.has-site-nav .site-footer {
    margin-bottom: calc(var(--bottom-nav-height, 92px) + 1rem);
}

@media (min-width: 981px) {
    body.has-site-nav .site-footer {
        margin-bottom: 1.5rem;
    }
}
