.ci-video {
    border-radius: 6px;
    background: linear-gradient(119.54deg, #F2F6FD 46.86%, #FFFBF2 100.63%);
    padding: 20px;
}

.ci-video .ci-video__title {
    font-size: 24px;
    font-weight: 700;
    line-height: 34px;
    color: #0E0E0F;
}

.ci-video .ci-video__description {
    font-size: 14px;
    line-height: 24px;
    font-weight: 400;
    color: #373C43;
    padding: 16px 20px;
    border-left: 4px solid #D1D5DB;
}

.ci-video.ci-video--portrait {
    padding-top: 0px;
    padding-right: 0px;
}

.ci-video .ci-video__branding {
    font-size: 12px;
    padding-top: 16px;
    border-top: 1px solid #DEE5ED;
    color: #333333;
}


.ci-video__frame--interactive {
    position: relative;
    cursor: pointer;
}

.ci-video.ci-video--portrait .ci-video__frame--interactive {
    aspect-ratio: 9 / 16;
    max-width: 350px;
    position: relative;
}

.ci-video.ci-video--landscape .ci-video__frame--interactive {
    width: 100%;
    aspect-ratio: 16 / 9;
    position: relative;
}

.ci-video.ci-video--landscape .ci-video__frame iframe, .ci-video.ci-video--landscape .ci-video__thumbnail {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.ci-video__frame--interactive iframe, .ci-video__thumbnail {
    inset: 0;
    width: 100%;
    height: 100%;
}

.ci-video__thumbnail {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

.ci-video__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.35);
}

.ci-video__play {
    position: absolute;
    inset: 0;
    display: grid;
    place-items: center;
    background: none;
    border: 0;
    padding: 0;
}

.ci-video__play svg {
    width: 64px;
    height: 64px;
    filter: drop-shadow(0 6px 16px rgba(0,0,0,0.35));
    transition: transform 0.2s ease;
}

.ci-video__frame--interactive:hover .ci-video__play svg {
    transform: scale(1.06);
}

@media (max-width: 767px) {
    
    .ci-video.ci-video--portrait {
        padding: 20px;
        height: auto;
    }

    .lazy-image-height {
        margin-bottom: 0px !important;
    }

}

/* Disable yt video suggestions */
.ytp-pause-overlay-container .ytp-pause-overlay {
    display: none !important;
}