.hero__background {
    transform: unset;
    animation: none;
    object-fit: contain;
}

/* LARGE ONLY */
@media (min-width: 64rem) {
    *[style*="--large-line-clamp"] {
        height: calc(var(--line-height) * var(--font-16) * var(--large-line-clamp));
    }
}
/* END LARGE ONLY */

/* SMALL ONLY */
@media (max-width: 63.9375rem) {
    .hero--secondary {
        width: 100%;
        height: auto;
        aspect-ratio: 9/16;
        max-height: calc(var(--screen-height, 100svh) - var(--top-bar-height, var(--top-bar-estimated-height)));;
    }
    
    .see-more-container {
        transform: unset;
        left: unset;
        right: var(--grid-container-padding-x);
    }
}
/* END SMALL ONLY */