.site-footer {
    background: #003763;
    color: #fff;
    padding: 40px 0;
    position: relative;      /* für das Leseband */
    overflow: visible;       /* Leseband darf überstehen */
}

/* Leseband (zentriert, ragt in den Inhalt darüber) */
.site-footer::before {
    content: "";
    position: absolute;
    top: -1px;              /* ggf. feinjustieren: -10px bis -20px */
    left: calc(15% + 10px);
    transform: translateX(-50%);
    width: clamp(22px, 2.8vw, 36px);
    height: clamp(18px, 2.2vw, 28px);
    background: url("images/footer-leseband.png") no-repeat center / contain;
    pointer-events: none;
    z-index: 2;
}

.footer-inner {
    width: 70%;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    font-size: 0.9rem;
    gap: 0.5rem;
}

.footer-nav a {
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    margin-right: 9px;
    margin-left: 9px;
    opacity: 0.95;
}

.footer-nav a.first {
    margin-left:0px !important;
}

.footer-nav a:hover { opacity: 1; }

.footer-copy {
    margin: 0;
    color: #fff;
    font-size: 0.9rem;
}

.footer-icons a {
    display: inline-flex;
    align-items: center;
    margin-left: 12px;
    margin-left: 12px;
}

.footer-icons img {
    height: 26px;
    display: block;
    opacity: 0.92;
    transition: opacity .2s ease;
}
.footer-icons a:hover img { opacity: 1; }

/* Mobile */
@media (max-width: 900px) {
    .footer-inner {
        width: 85%;
        justify-content: center;
        text-align: center;
        gap: 1.2rem 1.5rem;
    }

    .footer-inner, .footer-cop {
        font-size: 1.2rem;
    }

    .footer-nav { order: 1; width: 100%; }
    .footer-copy { order: 2; width: 100%; }
    .footer-icons { order: 0; width: 100%; display: flex; justify-content: center;}

    .footer-icons a {
        margin-left: 7vw;
        margin-right: 7vw;
    }

    .site-footer::before {
        left: 50%;
    }
}

/* Footer-Container als Bezugspunk setzen */
.footer-inner {
    position: relative; /* NEU */
}

/* Dezent rechts unten platzieren */
#creator {
/* nimmt eine eigene Zeile im Flex-Container ein */
flex: 0 0 100%;
order: 99;            /* ganz nach unten/rechts */
text-align: right;    /* rechtsbündig */
font-size: .70rem;
line-height: 1.1;
opacity: .45;
margin-top: .25rem;
white-space: nowrap;
}

#creator a {
color: #fff;
text-decoration: none;
/*border-bottom: 1px dotted rgba(255,255,255,.4);*/
transition: opacity .2s ease, border-color .2s ease;
}
#creator a:hover { opacity: 1; border-bottom-color: rgba(255,255,255,.85); }

/* Mobile: mittig anzeigen */
@media (max-width: 900px) {
    #creator {
    text-align: center;
    font-size: 0.60rem;
    }
}
