/* ========================================
   Site Footer — Editorial Bottom Bar
   ======================================== */

.site-footer {
    width: 100%;
    background: var(--color-bg-primary);
    padding: 1.75rem clamp(1.5rem, 4vw, 3rem);
    border-top: 1px solid var(--color-border);
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 1.5rem;
    max-width: var(--container-max);
    margin: 0 auto;
}

.footer-link {
    color: var(--color-text-muted);
    font-family: var(--font-mono);
    font-size: 0.74rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    text-decoration: none;
    transition: color var(--transition-fast);
}

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

.footer-copyright {
    color: var(--color-text-dim);
    font-family: var(--font-mono);
    font-size: 0.72rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
}

/* No bullet dividers — clean layout */
.footer-content > *:not(:last-child)::after {
    content: none;
}

@media (max-width: 600px) {
    .footer-content {
        flex-direction: column;
        gap: 0.85rem;
        justify-content: center;
        text-align: center;
    }
}
