/* Unified centered site footer — all blog pages */

.blog-site-footer {
    background: #f9fafb;
    border-top: 1px solid #e8eaed;
    padding: 2.75rem 1.5rem 2.5rem;
    margin-top: 0;
}

.blog-site-footer__inner {
    max-width: 56rem;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 1.15rem;
}

.blog-site-footer__brand {
    display: inline-block;
    margin: 0;
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
    font-size: clamp(1.35rem, 2.5vw, 1.65rem);
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.02em;
    color: #003580;
    text-decoration: none;
    transition: color 0.15s ease, opacity 0.15s ease;
}

.blog-site-footer__brand:hover {
    color: #002a66;
    opacity: 0.92;
}

.blog-site-footer__nav {
    width: 100%;
}

.blog-site-footer__links {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 0.5rem 1.75rem;
}

.blog-site-footer__links a {
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
    font-size: 0.9375rem;
    font-weight: 400;
    line-height: 1.4;
    color: #6b7280;
    text-decoration: none;
    transition: color 0.15s ease;
}

.blog-site-footer__links a:hover {
    color: #003580;
}

.blog-site-footer__copy {
    margin: 0.25rem 0 0;
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
    font-size: 0.8125rem;
    font-weight: 400;
    line-height: 1.5;
    color: #9ca3af;
}

@media (max-width: 639px) {
    .blog-site-footer {
        padding: 2.25rem 1.25rem 2rem;
    }

    .blog-site-footer__inner {
        gap: 1rem;
    }

    .blog-site-footer__links {
        gap: 0.45rem 1.15rem;
    }

    .blog-site-footer__links a {
        font-size: 0.875rem;
    }
}
