/* ==========================================================================
   Unified site footer (2026-07-24).
   The site previously ran two different footers: a full multi-column footer
   (logo + CMS link menus + newsletter) on the marketing/content pages, and a
   slim copyright + legal-links footer on the auth pages. They read as two
   different sites. This is now the single slim footer used by BOTH layouts
   (frontend-app and app) via one partial: frontend/partials/footer.blade.php.

   Self-contained on purpose: it carries its own dark background so it renders
   correctly regardless of which layout / body background it sits on, and it is
   loaded by both layouts' <head>. Colours match the site header (rgb 11,10,18).
   ========================================================================== */
.site-slim-footer {
    background: #0b0a12;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding: 1.25rem 0;
}

.site-slim-footer .slim-footer-inner {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 0.25rem 1.5rem;
}

.site-slim-footer .slim-footer-copy {
    margin: 0;
    font-size: 0.8125rem;
    color: rgba(255, 255, 255, 0.45);
}

.site-slim-footer .slim-footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    margin: 0;
    padding: 0;
    list-style: none;
}

.site-slim-footer .slim-footer-links a {
    font-size: 0.8125rem;
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
}

.site-slim-footer .slim-footer-links a:hover,
.site-slim-footer .slim-footer-links a:focus {
    color: #ffffff;
    text-decoration: underline;
}

/* Stack and centre on phones, with real 44px tap targets on the links. */
@media (max-width: 575.98px) {
    .site-slim-footer .slim-footer-inner {
        justify-content: center;
        text-align: center;
    }

    .site-slim-footer .slim-footer-links {
        justify-content: center;
        gap: 1.25rem;
    }

    .site-slim-footer .slim-footer-links a {
        display: inline-block;
        padding: 0.75rem 0;
    }
}
