.ecomOfferPromo {
    display: flex;
    flex-direction: column;
    overflow: hidden;
    border-radius: 12px;
    background-color: var(--ecomOfferPromoBg, #f7e6d5);
    color: var(--ecomOfferPromoText, #1c3a4b);
    margin-top: -8px;
}

.ecomOfferPromoImage {
    display: block;
    width: 100%;
    height: 180px;
    object-fit: cover;
    object-position: center;
    -webkit-mask-image: linear-gradient(to bottom, #000 60%, transparent);
    mask-image: linear-gradient(to bottom, #000 60%, transparent);
}

.ecomOfferPromoContent {
    display: flex;
    flex-direction: column;
    gap: 6px;
    padding: 20px;
}

.ecomOfferPromoOverline {
    margin: 0;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    opacity: 0.85;
}

.ecomOfferPromoIntro {
    margin: 0;
    font-size: 15px;
    font-weight: 600;
}

.ecomOfferPromoHighlight {
    margin: 4px 0;
    font-size: 20px;
    font-weight: 600;
    line-height: 1.2;
}

.ecomOfferPromoNote {
    margin: 0;
    font-size: 11px;
    opacity: 0.7;
}

@media (min-width: 1024px) {
    .ecomOfferPromo {
        position: relative;
        isolation: isolate;
        min-height: 180px;
        padding: 20px;
    }

    .ecomOfferPromoImage {
        position: absolute;
        inset-block: 0;
        inset-inline-end: 0;
        width: 45%;
        height: 100%;
        -webkit-mask-image: linear-gradient(to right, transparent, #000 45%);
        mask-image: linear-gradient(to right, transparent, #000 45%);
    }

    .ecomOfferPromoContent {
        position: relative;
        z-index: 1;
        max-width: 55%;
        padding: 0;
    }
}
