section.block-hero-featured{
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 3.125rem 0 0;
    background-color: var(--wp--preset--color--white);
    color: var(--wp--preset--color--black);
    background-position: center;
    background-repeat: no-repeat;
    min-height: 400px;
    border: none;
}
.block-hero-featured .inner-hero{
    position: relative;
    z-index: 1;
}
.block-hero-featured .video-background{
    position: absolute;
    z-index: 0;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.20) 0%, rgba(0, 0, 0, 0.20) 100%);
}
.block-hero-featured .video-background iframe{
    height: 100%;
    width: 100%;
}
.block-hero-featured .video-background .overlay{
    position: absolute;
    top: 0;
    background-color: rgba(255, 255, 255, 0.69);
    height: 100%;
    width: 100%;
}
@media (max-width: 919px) {
    section.block-hero-featured{
        background-size: cover;
        padding: 1.5rem 1rem;
    }
    .block-hero-featured .wp-block-buttons{
        display: table;
        width: 100%;
    }
    .block-hero-featured .wp-block-buttons>.wp-block-button{
        display: block;
        margin-bottom: 0.75rem;
    }
}