.block-quote-media .v-quote-cnt {
    display: flex;
    gap: 110px;
    align-items: center;
}
.v-quote--iv-wrapper {
    width: 640px;
    min-width: 640px;
}
.block-quote-media .video-container {
    width: 100%;
    aspect-ratio: 16/9;
    position: relative;
}
.v-quote--video-thumbnail {
    display: flex;
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
    align-items: center;
    justify-content: center;
}
.v-quote--video-thumbnail > img {
    position: absolute;
    z-index: 1;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.1);
    transition: all .3s ease;
}
.v-quote--video-thumbnail:is(:hover,:focus) > img {
    filter: brightness(.6);
    transform: scale(1);
}
.video-played .v-quote--video-thumbnail img{
    transition: all .6s .3s ease;
    opacity: 0;
    pointer-events: none;
}
.v-quote--video-thumbnail svg {
    position: relative;
    z-index: 2;
    transition: all .3s ease;
}
.v-quote--video-thumbnail:is(:hover,:focus) svg {
    transform: scale(1.1);
}
.video-played .v-quote--video-thumbnail svg{
    transition: all .6s .3s ease;
    opacity: 0;
    pointer-events: none;
}

.video-container iframe {
    display: none;
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    z-index: 0;
}
.video-played.video-container iframe {
    display: block;
}
/*Image*/
.block-cta__img {
    width: 100%;
    max-width: 100%;
    height: auto;
}

.block-quote-container blockquote{
    font-size: 48px;
    line-height: 56px;
    color: var(--yellow);
    position: relative;
    padding: 0 50px;
    max-width: 480px;
}
.block-quote-container blockquote svg {
    position: absolute;
    top: 0;
    left: 0;
}
.block-quote-container blockquote svg:last-of-type {
    top: unset;
    left: unset;
    right: 10px;
    bottom: -5px
}

/*Image/Video on Right*/
.block-layout-left .v-quote-cnt {
    flex-direction: row-reverse;
}




/* Background Layout*/
.block-layout-right-bg {
    padding: 120px 0;
    background: var(--black);
}
.block-layout-right-bg .v-quote-cnt {
    background: var(--black);
    color: #fff;
}

/* Colored Backgrounds */
.para-content.block-bg-grey {
    padding: 120px 0;
    margin: 0;
    background-color: var(--grey-lighter);
}
.para-content.block-bg-black {
    padding: 120px 0;
    margin: 0;
    background-color: var(--black);
    color: var(--white);
}

@media (max-width: 1440px) {
    .v-quote--iv-wrapper {
        width: 600px;
        min-width: 600px;
    }
    .v-quote-cnt {
        gap: 80px;
    }
}
@media (max-width: 1200px) {
    .v-quote--iv-wrapper {
        width: 470px;
        min-width: 470px;
    }
    .v-quote-cntt {
        gap: 60px;
    }
    .block-quote-container blockquote {
        font-size: 44px;
        line-height: 52px;
        padding: 0 40px;
    }
}
@media (max-width: 992px) {
    .v-quote-cnt {
        gap: 50px;
        flex-direction: column;
    }
    .v-quote--iv-wrapper {
        width: 100%;
        min-width: 100%;
    }
    .block-quote-container blockquote {
        padding: 0 50px;
        max-width: unset;
    }
}
@media (max-width: 769px) {
    .v-quote-cnt {
        gap: 40px;
    }
    .block-quote-container blockquote {
        font-size: 38px;
        line-height: 48px;
    }
}
@media (max-width: 586px) {
    .block-quote-container blockquote {
        font-size: 32px;
        line-height: 42px;
        padding: 0 45px;
    }
    .block-quote-container blockquote svg {
        width: 28px;
    }
}
