.youtube-embed {
    position: relative;
    aspect-ratio: 16/9;
    margin: 50px auto 0 auto;
    width: 100%;
    max-width: 980px;
    border-radius: 10px;
    overflow: hidden !important;
    box-shadow: 0 14px 40px rgba(0,0,0,0.35);
}

.youtube-embed img,
.youtube-embed iframe {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 8;
}

.youtube-embed .play-icon {
    width: 100px;
    height: 100px;
    position: absolute;
    z-index: 9;
    top: calc(50% - 50px);
    left: calc(50% - 50px);
    border: 2px solid var(--darkblue);
    background: var(--brightgreen) url('/wp-content/themes/aibatros/images/icon-play.svg') no-repeat 37px center;
    background-size: 34px auto;
    border-radius: 200px;
    box-shadow: 0 4px 14px rgba(0,0,0,0.35);
    cursor: pointer; 
    transition: 0.2s;
}

.youtube-embed:hover .play-icon {
    background-color: white;
}

@media (max-width: 768px) {
    .youtube-embed .play-icon {
        height: 60px;
        width: 60px;
        top: calc(50% - 30px);
        left: calc(50% - 30px);
        background: var(--brightgreen) url('/wp-content/themes/aibatros/images/icon-play.svg') no-repeat 23px center;
        background-size: 22px auto;
    }

    .youtube-embed {
        margin: 25px auto 15px auto;
    }
 }