.video-content {
    position: relative;
    display: flex; /* Organisiert die Inhalte */
    flex-direction: column; /* Inhalte untereinander anordnen */
}

.video-content-wrapper {
    position: relative;
    width: 100%; /* Volle Breite */
    padding-top: 56.25%; /* 16:9 Seitenverhältnis */
    height: 0; /* Initial wird die Höhe vom Padding abgeleitet */
    overflow: hidden; /* Stellt sicher, dass Inhalte außerhalb nicht sichtbar sind */
}

.video-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%; /* Füllt den gesamten Container aus */
    z-index: 0;
}

.video-content-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    background-color: rgba(255, 255, 255, 0.6); /* Halbtransparenter Hintergrund */
}

.video-content-elements-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    display: flex;
    flex-direction: column; /* Inhalte untereinander anordnen */
    justify-content: center; /* Vertikal zentrieren */
    align-items: center; /* Horizontal zentrieren */
    background-color: rgba(var(--core-color-rgb), 0.5); /* Halbtransparenter Hintergrund */
    text-align: center; /* Textinhalte zentrieren */
}

.video-content-elements-wrapper > * {
    width: auto; /* Breite an den Inhalt anpassen */
}

.video-content-elements h4 {
    font-size: 4.5rem;
    line-height: 0.9;
    margin-bottom: 30px;
    font-family: "Playfair Display", serif;
    font-style: normal;
}

.video-content-elements p {
    font-family: "Playfair Display", serif;
    font-size: 1.5rem;
    line-height: 1.5;
    font-style: italic;
    margin-bottom: 80px;
}


@media (max-width: 992px) {
    .video-content-elements p {
        margin-bottom: 25px;
    }

    .video-content-elements h4,
    .modal-header h4 {
        font-size: calc(4.5rem - 7.5vw) !important;
    }

    .video-content-elements p {
        font-size: calc(1.5rem - 2.5vw) !important;
    }
}