.footer-quote-container {
    text-align: center;
    padding: 40px 20px 20px 20px;
    background-color: #b89e4b;
    /* Gleiche Farbe wie der Hauptteil */
}

.footer-quote {
    font-family: "Playfair Display", "Georgia", serif;
    font-style: italic;
    font-size: 1.0rem;
    color: #444;
    max-width: 800px;
    margin: 0 auto 20px auto;
    line-height: 1.4;
}

.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%;
    margin: 0 auto;
}

/* Optimierung für Mobilgeräte */
@media (max-width: 667px) {
    .footer-quote {
        font-size: 1.2rem;
    }

    .mobile-break {
        display: none;
        /* Verhindert den Zeilenumbruch auf schmalen Handys für besseren Fluss */
    }

    .footer-divider {
        width: 80%;
    }
}