.quote-section {
    max-width: 80%;
    margin: 2rem auto;
    position: relative;
}
.quote-section__image-container {
    width: 100%;
    padding-bottom: 60%; /* 2:1 Aspect Ratio */
    position: relative;
    border-radius: 8px; /* Abgerundete Ecken für den Container */
    overflow: hidden; /* Wichtig: Begrenzt das Bild innerhalb der abgerundeten Ecken */
}
.quote-section__image-container img {
    position: absolute;
    top: 0;
    left: 0;
    width: 80%;
    height: 80%;
    object-fit:cover;
    border-radius: 8px; /* Abgerundete Ecken für das Bild */
}
.quote-section__text-container {
    padding: 2rem;
    max-width: 600px;
    border-radius: 8px; /* Abgerundete Ecken für den Textcontainer */
}
.quote-section__title {
    margin-top: 0;
}
.quote-section__quote {
    font-style: italic;
    text-align: right;
    margin-top: 1rem;
}

@media (min-width: 992px) {
    .quote-section__image-container {
        transform: translateX(-5%);
        width: 110%; /* Überlappung erzeugen */
    }
    .quote-section__text-container {
        transform: translateX(5%);
        margin-top: -25%; /* Überlappung mit dem Bild */
        position: relative;
        z-index: 1; /* Stellt sicher, dass der Text über dem Bild liegt */
        width: 90%;
        margin-left: auto;
    }
}

@media (max-width: 991px) {
    .quote-section__image-container {
        padding-bottom: 100%; /* 1:1 Aspect Ratio */
    }
    .quote-section__image-container img {
        width: 100%;
        height: 50%;
    }
    .quote-section__text-container {
        padding: 1rem;
        margin-top: -50%; /* Überlappung mit dem Bild */
    }
}