/* .einleitung {
    margin: 0, auto;
    margin-top: 10%;
    display: flex;
    justify-content: space-between;
    max-width: 1024 px;
}

.einleitung_text {
    max-width: 30vw;
}



.einleitung_bild img {
    width: 40vw;
    height: 60vh;
    object-fit: cover; 
  object-position: right top; 
}

 */

 .einleitung {
    margin: 0 auto;
    margin-top: 10%;
    display: flex;
    justify-content: space-between;
    align-items: stretch; /* gleiche Höhe */
    gap: 2rem; /* Abstand zwischen den Blöcken */
    max-width: 1024px;
}

.einleitung_text {
    flex: 1;
    max-width: 35vw;
}

.einleitung_text_breit {
    flex: 1;
    max-width: 90vw;
}

.einleitung_bild {
    flex: 1;
    max-width: 35vw; /* deine gewünschte Begrenzung */
}

.einleitung_bild_unten {
    flex: 1;
    max-width: 35vw; /* deine gewünschte Begrenzung */
}



.einleitung_bild img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: right top;
}

.einleitung_bild_unten img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: right bottom;
}

.einleitung_bild_wasser img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: right bottom;
}

.einleitung_bild video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* object-position: right top; */
}

@media (max-width: 840px) {
    .einleitung {
        flex-direction: column-reverse; /* untereinander */
    }

    .einleitung_bild,
    .einleitung_bild_unten,
    .einleitung_bild_wasser,
    .einleitung_text {
        max-width: 100%; /* volle Breite */
        flex: none;
    }

    .einleitung_bild img {
        height: 50vh; /* Bild passt sich natürlich an */
            object-fit: scale-down;
            object-position: center;
    }

    .einleitung_bild_unten img {
        height: 50vh; /* Bild passt sich natürlich an */
                    object-fit: scale-down;
            object-position: center;
    }

}

