/* Patch v12 Videoformat */

.video-embed {
    position: relative;
    background-color: #000;
    width: 100%;
    max-width: 800px;
    padding-top: 55%;
}

.video-embed video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/* Dynamische Anpassung für Mobile Geräte */
@media screen and (max-width: 1024px) {
    .video-embed {
        padding-top: unset;
        height: auto;
    }

    .video-embed video {
        position: relative;
        width: 100%;
        height: auto;
        aspect-ratio: auto;
    }
}