.wp-block-cover.is-style-half {
    height: 26.85dvh;
    .wp-block-cover__image-background, video.wp-block-cover__video-background, .wp-block-cover__image-background, .video.wp-block-cover__video-background {
        max-width: 50%;        
        width: 50%;
        left: auto;
    }
    &::before {
        content: " ";
        display: block;
        background: url('../../images/blue-dice-min.svg') no-repeat bottom/contain;
		position: absolute;
        left: 2rem;
        bottom: -0.85rem;
		width: 7.27%;
        min-width: 3.5rem;
        height: 125px;
		z-index: 0;
        transform: rotate(22.36deg);
    }
    &::after {
        content: " ";
        display: block;
        height: 100%;
        width: 6.36%;
        background-color: var(--wp--preset--color--beige);
        position: absolute;
        left: calc(50% - 1px);
        top: 0;
        clip-path: polygon(0 0, 0% 100%, 100% 0);
    }
}

@media screen and (max-width: 600px) {
    .wp-block-cover.is-style-half { 
        .wp-block-cover__image-background, video.wp-block-cover__video-background, .wp-block-cover__image-background, .video.wp-block-cover__video-background {
            max-width: 33%;        
            width: 33%;
        }
        &::after {
            left: calc(67% - 1px);
        }
    }    
}