.block-video-tile {
    position: relative;
    border-radius: var( --border-radius );
    box-shadow: var( --box-shadow );
    height: 500px;
    display: flex;
    align-items: stretch;
    justify-content: center;
    background-size: cover;
    overflow: hidden;
}
.block-video-tile__dot-grid {
    width: 180px; 
    height: 180px;
    position: absolute;
    top: -20px;
    right: -20px;
}

.block-video-tile div {
    background-color: rgba( 0,0,0,0.1);
    height: 100%;
    flex-grow: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.block-video-tile__play-button {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 80px;
    width: 80px;
    border-radius: 50%;
    background-color: rgba(250,250,250,1);
    box-shadow: 0px 0px 10px 0px rgba(0,0,0,0.5);
}
.block-video-tile__play-button::before {
    display: block;
    position: absolute;
    content: "";
    width: 100px;
    height: 100px;
    left: -10px;
    top: -10px;
    border-radius: 50%;
    background-color: rgba(250,250,250,0.8);
    box-shadow: 0px 0px 10px 0px rgba(0,0,0,0.5);
}
.block-video-tile__play-button::after {
    display: block;
    position: absolute;
    content: "";
    width: 120px;
    height: 120px;
    left: -20px;
    top: -20px;
    border-radius: 50%;
    background-color: rgba(250,250,250,0.6);
    box-shadow: 0px 0px 20px 0px rgba(0,0,0,0.3);
}
.block-video-tile__play-button img {
    height: 25px;
    margin-left: 4px;
    z-index: 10;
    opacity: 0.8;
}

.block-video-tile__play-button:hover img {
    opacity: 1;
}

@media ( max-width: 781px )  {
    .block-video-tile {
        height: auto;
    }
    .block-video-tile div {
        padding: 60px 10px;
    }
}

@media ( max-width: 480px )  {
    .block-video-tile {
        height: auto;
    }
    .block-video-tile div {
        padding: 30px 10px;
    }
}