.hero-image {
    color: var(--white);
    overflow: hidden;
}

.hero-image .img-cont::before {
    position: absolute;
    inset: 50% 0 0 0;
    z-index: 2;
    display: block;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0));
    content: '';
    pointer-events: none;
}

.hero-image .shared-play-button {
    top: 20px;
    right: 20px;
    left: auto;
    transform: none;
}

.hero-image .slide .content-section {
    z-index: 2;
    max-width: 547px;
    padding: 20px 20px 22px;
}

.hero-image .slide .content-section a {
    pointer-events: all;
}

.hero-image .slide .sponsored {
    display: block;
    font-size: 10px;
    font-family: var(--knockout-heavy);
    letter-spacing: .05em;
    text-transform: uppercase;
    font-style: normal;
    font-weight: var(--font-weight-normal);
    background-color: rgba(0, 118, 192, .9);
    padding: 7px 10px 6px;
}

.hero-image .slide .slide-title {
    margin-bottom: 20px;
    text-shadow: 2px 2px rgba(0,0,0,0.6);
    font-family: var(--knockout-mid);
    font-weight: normal;
    font-size: 20px;
    line-height: 1;
    color: inherit;
}

.hero-image .slide p {
    font-family: var(--font-body);
    font-weight: normal;
    font-size: 14px;
    line-height: calc(11/7);
    color: inherit;
}

.hero-image .slide .read-more {
    transform: translateY(4px);
    display: inline-block;
    width: 24px;
    height: 15px;
    margin-left: 4px;
    background: url('/includes/public/assets/shared/arrow-small-right-green.svg') no-repeat center center / contain;
}

@media (min-width: 64em) {
    .hero-image .shared-play-button {
        top: 50%;
        left: 50%;
        right: auto;
        transform: translate(-50%, -50%);
    }

    .hero-image .img-cont::before {
        inset: auto auto 0 0;
        width: 46%;
        aspect-ratio: 1;
        background: radial-gradient(farthest-side circle at left bottom, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0));
    }

    .hero-image .slide .content-section {
        padding: 40px 40px 43px 80px;
    }

    .hero-image .slide .sponsored {
        font-size: 12px;
        padding: 9px 15px 8px;
    }

    .hero-image .slide .slide-title {
        font-size: 28px;
    }

    .hero-image .slide p {
        font-size: 16px;
        line-height: 1.5;
    }

    .hero-image .slide .read-more {
        transform: none;
    }
}