.offer-media-hero {
    position: relative;
    overflow: hidden;
    isolation: isolate;
    min-height: 14rem;
    aspect-ratio: 16 / 9;
    border-radius: 1.08rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background:
        linear-gradient(180deg, rgba(4, 8, 18, 0.02), rgba(4, 8, 18, 0.18) 58%, rgba(4, 8, 18, 0.46)),
        var(--offer-media-image);
    background-position: center;
    background-size: cover;
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.07),
        0 18px 34px rgba(0, 0, 0, 0.22);
}

.offer-media-hero::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    box-shadow: inset 0 0 0 1px color-mix(in srgb, var(--offer-accent, var(--vm-cyan)) 16%, transparent);
    pointer-events: none;
}

@media (max-width: 820px) {
    .offer-media-hero {
        min-height: 10.5rem;
        aspect-ratio: 16 / 10;
    }
}
