.footer-divider {
    border: 0;
    height: 1px;
    background-image: linear-gradient(to right, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0));
    width: 60%;
    /* 0 oben, auto links/rechts, 20px unten */
    margin: 0 auto 20px auto; 
}

/* Gemeinsame Basis-Styles für den Footer-Bereich */
.footer-container {
    text-align: center;
    color: rgb(165,165,165);
    background-color: transparent;
}

/* Styles für die Impressum/Datenschutz-Links */
.footer-links {
    font-size: 14px;
    font-weight: 400;
    line-height: 14px;
    margin-top: 0px;
}

.footer-links a {
    color: inherit; /* Übernimmt das Grau von oben */
    text-decoration: none; /* Entfernt Unterstreichung */
}

/* Optional: Ein leichter Effekt beim Drüberfahren (Hover) */
.footer-links a:hover {
    text-decoration: underline;
}

/* Styles für den Copyright-Text */
.footer-copyright {
    font-size: 11px;
    font-weight: 400;
    line-height: 16.5px; /* Punkt statt Komma nutzen! */
    margin-top: 0px;
}

/* Optimierung für Mobilgeräte */
@media (max-width: 768px) {
    .footer-quote {
        font-size: 1.2rem;
    }

    .mobile-break {
        display: none;
        /* Verhindert den Zeilenumbruch auf schmalen Handys für besseren Fluss */
    }

    .footer-divider {
        width: 80%;
    }
}