/* General */

.video-und-text .video-kachel {
    position: relative;
    width: 100%;
    max-width: 100%;
    overflow: hidden;
    aspect-ratio: 16 / 9;
    background: var(--navy);
    border-radius: 36px;
    box-shadow: var(--shadow);
    line-height: 0;
}

.video-und-text .video-kachel iframe,
.video-und-text .video-kachel video,
.video-und-text .video-kachel object,
.video-und-text .video-kachel embed {
    position: absolute;
    inset: 0;
    display: block;
    width: 100% !important;
    max-width: none !important;
    height: 100% !important;
    border: 0;
}

.video-und-text .buttons_wrapper {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 15px;
    margin: 25px 0;
}

/* Responsive */

@media only screen and (max-width: 991.98px) {
    .video-und-text .video-kachel {
        margin-top: 35px;
        border-radius: 28px;
    }
}

@media only screen and (max-width: 575.98px) {
    .video-und-text .video-kachel {
        margin-top: 28px;
        border-radius: 20px;
    }

    .video-und-text .buttons_wrapper {
        align-items: flex-start;
        flex-direction: column;
    }
}
