/* ===========================
   ======= FOOTER ===========
   =========================== */
.footer {
    background-color: var(--primary-color);
    color: var(--white);
    padding: 0.7rem 0;
    margin-top: 0;
}

.footer-content {
    text-align: center;
}

.footer-content a {
    color: var(--white);
    text-decoration: none;
    margin: 0 0.35rem;
    transition: transform 0.15s ease, opacity 0.15s ease;
    display: inline-block; /* wichtig, damit scale funktioniert */
    font-size: 0.75rem;
}

.footer-content a:hover {
    opacity: 1;
    transform: scale(1.05); /* leichtes Wachsen */
}

.footer-content .separator {
    color: var(--white);
    margin: 0 0.5rem;
    padding: 0;
    font-weight: 300;
    font-family: 'Inter', sans-serif;
    font-size: 0.75rem;
}
@media (max-width: 991px) {
    .footer-content a {
        display: block;
        margin: 0.5rem 0;
    }

    .footer-content .separator {
        display: none;
    }
}