/* ── Shared site footer ── */
.site-footer {
    width: 100%;
    background: #ffffff;
    border-top: none;
    margin-top: -32px;
    font-family: 'Inter', sans-serif;
}

.site-footer__inner {
    max-width: 64rem;
    margin: 0 auto;
    padding: 40px 24px 20px;
    text-align: center;
}

.site-footer__logo {
    margin-bottom: 10px;
}

.site-footer__logo img {
    height: 48px;
    width: auto;
}

.site-footer__nav {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.5rem 2.5rem;
    margin: 0 0 12px;
    list-style: none;
    padding: 0;
}

.site-footer__nav a {
    color: #1e3a6e;
    font-size: 0.95rem;
    font-weight: 500;
    text-decoration: none;
    transition: color 0.2s;
}

.site-footer__nav a:hover {
    color: #2563eb;
    text-decoration: underline;
}

.site-footer__divider {
    border: none;
    border-top: 1px solid #d1d9e6;
    margin: 0 0 8px;
}

.site-footer__copy {
    color: #6b7280;
    font-size: 0.85rem;
    margin-bottom:15px;
}

/* ── Dark mode ── */
.dark .site-footer {
    background: #1a1a1a;
    border-top: none;
}

.dark .site-footer__nav a {
    color: #ffffff;
}

.dark .site-footer__nav a:hover {
    color: #ffffff;
}

.dark .site-footer__divider {
    border-top-color: #374151;
}

.dark .site-footer__copy {
    color: #ffffff;
}



@media (max-width: 859px) {

    .site-footer {
        position: relative;
        z-index: 1;
        margin-top: 2rem;
    }

}

