/* Unified site footer — shared across all public pages */
.site-footer {
    background: #f8f9fa;
    border-top: 1px solid #e9ecef;
    padding: 1.5rem 1rem 1.25rem;
    margin-top: auto;
    text-align: center;
}

.site-footer__inner {
    max-width: 960px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.site-footer__nav {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 0;
    font-size: 14px;
    font-weight: 700;
    color: #1a1a1a;
    line-height: 1.5;
}

.site-footer__nav a {
    color: #1a1a1a;
    text-decoration: none;
    font-weight: 700;
}

.site-footer__nav a:hover {
    color: #1976D2;
}

.site-footer__sep {
    color: #bbb;
    margin: 0 10px;
    font-weight: 400;
    user-select: none;
}

.site-footer__copyright {
    margin: 0;
    font-size: 14px;
    font-weight: 400;
    color: #888;
    line-height: 1.5;
}

.site-footer__email {
    margin: 0;
    font-size: 14px;
    font-weight: 400;
    color: #1a1a1a;
    line-height: 1.5;
}

.site-footer__email a {
    color: #1a1a1a;
    text-decoration: none;
}

.site-footer__email a:hover {
    text-decoration: underline;
}

@media (max-width: 768px) {
    .site-footer {
        padding: 1.25rem 0.75rem 1rem;
    }

    .site-footer__nav {
        font-size: 12px;
    }

    .site-footer__sep {
        margin: 0 6px;
    }

    .site-footer__copyright,
    .site-footer__email {
        font-size: 12px;
    }
}

@media screen and (min-width: 786px) {
    .site-footer__nav,
    .site-footer__copyright,
    .site-footer__email {
        font-size: 14px;
    }
}
