.iframe-container-iframe-tag {
    position: relative;
    width: 100%;
    padding-top: 56.25%;
    overflow: hidden;
}

.iframe-container-iframe-tag iframe, .iframe-container-iframe-tag #hybrid-client {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}


.iframe-container-video-tag {
    position: relative;
    width: 100%;
    padding-top: 62%; /* 528 / 850 ≈ 0.62 for 16:9 aspect ratio */
    display: flex;
    justify-content: center;
}

.iframe-container-video-tag video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
    object-fit: contain; /* or 'cover' depending on your preference */
}