.video {
    background-color: transparent;
    border: 0;
    padding: 0;
    cursor: pointer;
    width: 100%;
    --videoTitleColor: var(--grey50);
}

.video--circular-light {
    --videoTitleColor: var(--c-2-c-blue-50);
}

.video__title {
    text-align: center;
    margin-bottom: 1rem;
}
.video__poster {
    --aspect-ratio: 335/156;
    margin: 0;
    overflow: hidden;
    border-radius: 15px;
    background-color: #eee;
    position: relative;
}


.video__poster img {
    aspect-ratio: 335/156;
    display: block;
    height: 100%;
    width: 100%;
    object-fit: cover;
    transition: 250ms var(--easingPrinciple);
}

.video__play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    z-index: 2;
    transform: translate(-50%, -50%);
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--green100);
    color: #FFF;
    border-radius: 50%;
    border: 0;
    padding: 0;
    cursor: pointer;
    transition: 250ms var(--easingPrinciple);
}

.video__play-button svg {
    width: 13px;
    transform: translateX(1px);
    transition: 250ms var(--easingPrinciple);

}



.video__text {
    color: var(--videoTitleColor);
    display: block;
    margin: 1.25em 0 0;
    text-align: center;
    font-size: 16px;
    line-height: 1.5;
    text-align: center;
    letter-spacing: 0.01em;
}

.video:hover img { opacity: .9; }
.video:hover .video__play-button {
    transform:  translate(-50%, -50%) scale(1.1);
}
.video:hover .video__play-button svg {
    transform: scale(0.9) translateX(3px) ;
}

@media(min-width: 992px) {

    .video__poster {
        --aspect-ratio: 894/500;
    }

    .video__poster img {
        aspect-ratio: 894/500;
    }


    .video__play-button {
        width: 70px;
        height: 70px;
    }
    .video__play-button svg { width: 22px; transform: translateX(3px); }
}
