.video-block {
    button.open-modal {
        background-color: transparent;
        border: 0;
        position: relative;
        padding: 0;
        width: 100%;
        height: 443px;
        img {
            width: 100%;
            height: 443px;
            object-fit: cover;
        }
        .wp-block-cover__background {
            position: absolute;
            width: 100%;
            display: block;
            height: 100%;
            top: 0;
            background: #00000066;
            opacity: .4;
            border-radius: 1rem;
            transition: opacity 300ms ease-out;
        }
        .play-icon {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            &::after {
                content: '\f04b';
                font-family: "Font Awesome 6 Pro";
                font-weight: 700;
                color: var(--wp--preset--color--white);
                border: 2px solid var(--wp--preset--color--white);
                border-radius: 100px;
                padding: 21px 23px;
                transition: background-color 300ms ease-out;
            }
        }
        &:is(:hover, :focus){
            .wp-block-cover__background {
                background-color: transparent;
                opacity: .15;
            }
            .play-icon::after {
                color: var(--wp--preset--color--black);
                background-color: var(--wp--preset--color--white);
            }
        }
    }
}