.block-featured-video {
    display: grid;
    gap: 16px;
}

.block-featured-video__content {
    text-align: center;
}

.block-featured-video__embed iframe {
    aspect-ratio: 16 / 9;
    width: 100%;
    height: 100%;
}

.block-featured-video__label {
    background: var(--wp--custom--color--neutral-600);
    color: #fff;
    display: inline-block;
    font-size: var(--wp--preset--font-size--small);
    letter-spacing: var(--wp--custom--letter-spacing--looser);
    line-height: 1.2;
    padding: 8px 12px;
    text-transform: uppercase;
}

@media only screen and (min-width: 767px) {
    .block-featured-video {
        grid-template-columns: 1fr 2fr;
        gap: 40px;
        align-items: center;
    }
}