/* Channel Publisher — frontend styles */

/* ─── Single video embed (prepended to blog posts) ────────────────── */

.cp-single-player {
    position: relative;
    aspect-ratio: 16 / 9;
    background: #000;
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 1.5rem;
}

@supports not (aspect-ratio: 16 / 9) {
    .cp-single-player {
        padding-top: 56.25%;
        height: 0;
    }
    .cp-single-player iframe {
        position: absolute;
        inset: 0;
    }
}

.cp-single-player iframe {
    width: 100%;
    height: 100%;
    border: 0;
    display: block;
}
