/* Dezente Rechts-Fußzeile für öffentliche Seiten.
   Standard = dunkle Schrift für helle Hintergründe,
   .legal-footer--light = helle Schrift für dunkle Hintergründe/Verläufe.

   Bewusst KEIN width:100%: Auf den Karten-Seiten (Login, Onboarding, Master)
   ist <body> ein Flex-Container — ein 100% breites Element würde dort die
   gesamte Zeile beanspruchen und die Karte an den Rand drücken. */
.legal-footer {
    flex: 0 0 auto;
    align-self: center;
    text-align: center;
    margin: 22px auto 0;
    padding: 0 16px;
    font-size: .82rem;
    line-height: 1.4;
}
.legal-footer a {
    color: #6c757d;
    text-decoration: none;
    font-weight: 500;
    padding: 6px 10px;
    border-radius: 6px;
    transition: color .15s, background .15s;
}
.legal-footer a:hover {
    color: #333;
    background: rgba(0,0,0,.05);
}

.legal-footer--light a { color: rgba(255,255,255,.8); }
.legal-footer--light a:hover {
    color: #fff;
    background: rgba(255,255,255,.14);
}

@media print {
    .legal-footer { display: none; }
}
