/* ITS Video - Structure Only */

.ITS-video {
    display: block;
    width: 100%;
    min-height: 200px; /* Initial fallback - JS will override */
}

.ITS-video__wrapper {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    overflow: hidden;
}

.ITS-video__iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

video.ITS-video__iframe {
    object-fit: cover;
    background: #000;
}

.ITS-video__spacer {
    display: none;
}
