/* Footer legale + versione sito (tutte le pagine) */
.site-footer-legal {
    flex-shrink: 0;
    width: 100%;
    box-sizing: border-box;
    border-top: 1px solid var(--border, #2a3140);
    background: var(--bg-panel, rgba(14, 17, 22, 0.92));
    padding: 14px 20px 18px;
    text-align: center;
    font-size: 12px;
    line-height: 1.5;
    color: var(--text-muted, #9aa3af);
}

/* Login admin / portale: card centrata, footer in fondo viewport */
body.has-site-footer.login-page,
body.has-site-footer.portal-login-page {
    min-height: 100dvh;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    padding: 24px 0 0;
    box-sizing: border-box;
}

body.has-site-footer.login-page > .login-card,
body.has-site-footer.portal-login-page > .portal-login-card {
    flex: 1 1 auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin: 0 auto;
    width: calc(100% - 48px);
}

body.has-site-footer.login-page > .site-footer-legal,
body.has-site-footer.portal-login-page > .site-footer-legal {
    margin-top: auto;
}

/* Pagine legali */
body.has-site-footer:has(.legal-page) {
    min-height: 100dvh;
    display: flex;
    flex-direction: column;
}

body.has-site-footer .legal-page {
    flex: 1 1 auto;
}

.site-footer-legal__inner {
    max-width: 960px;
    margin: 0 auto;
}

.site-footer-legal__links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 6px 14px;
    margin: 0 0 8px;
    padding: 0;
    list-style: none;
}

.site-footer-legal__links a {
    color: var(--text-muted, #9aa3af);
    text-decoration: none;
    font-weight: 500;
}

.site-footer-legal__links a:hover,
.site-footer-legal__links a:focus-visible {
    color: var(--accent, #d81921);
    text-decoration: underline;
}

.site-footer-legal__meta {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 6px 10px;
    margin: 0;
    font-size: 11px;
    letter-spacing: 0.02em;
    color: var(--text-muted, #7a8494);
}

.site-footer-legal__copyright {
    margin: 0 0 6px;
    font-size: 11px;
    letter-spacing: 0.02em;
    color: var(--text-muted, #9aa3af);
}

.site-footer-legal__sep {
    opacity: 0.55;
    user-select: none;
}

.site-footer-legal__version strong,
.site-footer-legal__credit strong {
    font-weight: 600;
    color: var(--text, #c8ced6);
}

/* Landing: footer legale nel blocco disclaimer (sopra sticky CTA) */
.site-footer-legal--embedded {
    margin-top: 1.35rem;
    padding: 1.15rem 0 0;
    border-top: 1px solid var(--color-border, #2a3140);
    background: transparent;
}

.site-footer-legal--embedded .site-footer-legal__links a {
    color: var(--color-text-secondary, #9aa3af);
}

.site-footer-legal--embedded .site-footer-legal__links a:hover,
.site-footer-legal--embedded .site-footer-legal__links a:focus-visible {
    color: var(--color-accent, #d81921);
}

.site-footer-legal--embedded .site-footer-legal__version strong,
.site-footer-legal--embedded .site-footer-legal__credit strong {
    color: var(--color-text-primary, #f4f6f8);
}

.site-footer-mount:empty {
    display: none;
}

/* Legal pages (variabili style.css) */
.legal-page + .site-footer-legal {
    --border: var(--color-border, #2a3140);
    --text-muted: var(--color-text-muted, #9aa3af);
    --text: var(--color-text-primary, #f4f6f8);
    --accent: var(--color-accent, #d81921);
}
