/* ── Single Video Page Layout ─────────────────────────────── */
.single-video-page {
    overflow: hidden;
}

.single-video-page .single-video {
    /* Blocks render full-width, no container constraints at page level */
}

.single-post:has(.single-video-page) {
    background: #ffffff;
}

/* Video content wrapper */
.v2-video-body {
    padding: 40px 0;
}

.v2-video-content {
    max-width: 1200px;
    margin: 0 auto;
}

/* Video embeds responsive styling */
.v2-video-content iframe,
.v2-video-content video {
    width: 100%;
    height: auto;
    aspect-ratio: 16/9;
}

/* Ensure video players render edge-to-edge if needed */
.single-video-page .hero-banner {
    margin-left: calc(-50vw + 50%);
    margin-right: calc(-50vw + 50%);
}

/* Mobile responsive */
@media (max-width: 768px) {
    .v2-video-body {
        padding: 20px 0;
    }
}
