.advanced-video-block .video-player {
    height: auto;
    overflow: hidden;
    position: relative;
    pointer-events: none;
    aspect-ratio: 16/9;
}
.advanced-video-block .video-player video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.advanced-video-block .video-player iframe {
    width: 100%;
    height: calc((100vw*9) /16);
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
@media (max-aspect-ratio: 16/9) {
.advanced-video-block .video-player{
    width: 100%;
    overflow: hidden;
}
.advanced-video-block .video-player iframe{
    width: calc((100vh*16)/9);
    height: 100vh; /*old browser support*/
    height: 100svh;
}
}