.video-caption {
    --video-caption-color: #fff;
    --h2-font-color: var(--video-caption-color);
    background-image: var(--gradients-linear-gradient-1);
    background-repeat: no-repeat;

    /* background-color: var(--primary-colors-amgen-blue); */
    padding-bottom: clamp(1.5rem, calc(1.85rem + -0.94vw), 1.25rem);
    padding-left: clamp(1rem, calc(-1.3rem + 6.13vw), 2.63rem);
    box-shadow: 3px 6px 13px 0px rgba(0, 0, 0, 0.20);
    color: var(--video-caption-color);
    font-size: var(--para-sm);
    line-height: var(--para-sm-line-height);
    max-width: 80%;
    position: relative;
}

.video-caption:after {
    content: "";
    position: absolute;
    background-image: url(../images/icon/data-stream_60.svg);
    background-repeat: no-repeat;
    background-size: cover;
    opacity: .15;
    display: block;
    width: 70%;
    height: 100%;
    top: 0;
    right: 0;
    background-position: 0 60px;
    pointer-events: none;
}

@media (max-width: 600px) {
    .video-caption {
        max-width: 100%;
    }
}

.video-caption h2:not(:last-child),
.video-caption p:not(:last-child) {
    margin-bottom: clamp(1rem, calc(-0.68rem + 4.48vw), 2.19rem);

}

.video-caption-ribbon {
    background-color: var(--primary-colors-amgen-blue);
    color: #fff;
    border-top-left-radius: 70px;
    max-width: clamp(12.06rem, calc(-11.37rem + 62.5vw), 28.63rem);
    height: clamp(2.94rem, calc(1.61rem + 3.54vw), 3.88rem);
    display: flex;
    align-items: center;
    margin-left: auto;
    padding-left: clamp(1.5rem, calc(0.08rem + 3.77vw), 2.5rem);
    font-size: clamp(0.88rem, calc(-0.01rem + 2.36vw), 1.5rem);
}