.offer-products-container {
    padding-top: 28px;
    padding-bottom: 28px;
}

.offer-products--featured {
    position: relative;
    isolation: isolate;
    overflow: hidden;
    padding: 28px 24px;
    border: 1px solid rgba(255, 255, 255, .16);
    border-radius: 28px;
    color: #fff;
    background:
        linear-gradient(112deg, rgba(8, 160, 146, .2), transparent 42%),
        linear-gradient(135deg, var(--secondary) 0%, #022724 58%, #011b19 100%);
    box-shadow: 0 22px 55px rgba(3, 58, 53, .2);
}

.offer-products--featured::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    opacity: .18;
    background-image: radial-gradient(rgba(255, 255, 255, .75) .7px, transparent .7px);
    background-size: 14px 14px;
    mask-image: linear-gradient(to left, #000, transparent 68%);
    -webkit-mask-image: linear-gradient(to left, #000, transparent 68%);
}

.offer-products__glow {
    position: absolute;
    z-index: -1;
    width: 230px;
    height: 230px;
    border-radius: 50%;
    pointer-events: none;
    filter: blur(8px);
}

.offer-products__glow--top {
    top: -145px;
    right: -80px;
    background: rgba(8, 160, 146, .32);
}

.offer-products__glow--bottom {
    bottom: -175px;
    left: 18%;
    background: rgba(228, 10, 14, .24);
}

.offer-products__intro {
    display: flex;
    min-height: 290px;
    padding: 12px 8px 12px 4px;
    flex-direction: column;
    align-items: flex-start;
    justify-content: space-between;
}

.offer-products__eyebrow {
    display: inline-flex;
    margin-bottom: 18px;
    padding: 7px 12px;
    border: 1px solid rgba(255, 255, 255, .2);
    border-radius: 999px;
    gap: 8px;
    align-items: center;
    color: #fff;
    background: rgba(255, 255, 255, .1);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    font-size: 12px;
    font-weight: 700;
}

.offer-products__pulse {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--tertiary);
    box-shadow: 0 0 0 5px rgba(228, 10, 14, .18);
    animation: offer-pulse 1.8s ease-in-out infinite;
}

.offer-products__title {
    margin: 0;
    color: #fff;
    font-family: "doran-bold", sans-serif !important;
    font-size: clamp(25px, 2.25vw, 38px);
    font-weight: 900;
    line-height: 1.55;
    letter-spacing: -.7px;
    text-wrap: balance;
}

.offer-products__title::after {
    content: "";
    display: block;
    width: 54px;
    height: 5px;
    margin-top: 14px;
    border-radius: 999px;
    background: linear-gradient(90deg, var(--tertiary), #ff7d7f);
}

.offer-products__caption {
    max-width: 190px;
    margin: 15px 0 0;
    color: rgba(255, 255, 255, .7);
    font-size: 13px;
    line-height: 1.8;
}

.offer-products__action {
    display: inline-flex;
    min-height: 46px;
    padding: 10px 16px !important;
    border: 1px solid rgba(255, 255, 255, .9) !important;
    border-radius: 12px !important;
    gap: 10px;
    align-items: center;
    justify-content: center;
    color: var(--secondary) !important;
    background: #fff !important;
    font-weight: 800;
    box-shadow: 0 10px 26px rgba(0, 0, 0, .16);
    transition: transform .25s ease, box-shadow .25s ease, color .25s ease;
}

.offer-products__action svg {
    width: 21px;
    transition: transform .25s ease;
}

.offer-products__action:hover,
.offer-products__action:focus-visible {
    color: var(--tertiary) !important;
    transform: translateY(-3px);
    box-shadow: 0 14px 30px rgba(0, 0, 0, .24);
}

.offer-products__action:hover svg {
    transform: translateX(-4px);
}

.offer-products__list {
    padding: 4px 10px 4px 0;
}

@keyframes offer-pulse {
    0%, 100% {
        transform: scale(1);
        opacity: 1;
    }

    50% {
        transform: scale(.78);
        opacity: .72;
    }
}

@media (max-width: 767.98px) {
    .offer-products-container {
        padding: 18px 12px;
    }

    .offer-products--featured {
        padding: 22px 14px 16px;
        border-radius: 22px;
    }

    .offer-products__intro {
        min-height: auto;
        padding: 0 4px 22px;
        flex-direction: row;
        gap: 16px;
        align-items: flex-end;
    }

    .offer-products__heading {
        flex: 1;
    }

    .offer-products__eyebrow {
        margin-bottom: 10px;
    }

    .offer-products__title {
        font-size: 24px;
        line-height: 1.45;
    }

    .offer-products__title::after {
        width: 42px;
        height: 4px;
        margin-top: 9px;
    }

    .offer-products__caption {
        display: none;
    }

    .offer-products__action {
        min-height: 42px;
        padding: 8px 12px !important;
        white-space: nowrap;
        font-size: 12px;
    }

    .offer-products__list {
        padding: 0;
    }
}

@media (prefers-reduced-motion: reduce) {
    .offer-products__pulse,
    .offer-products__action,
    .offer-products__action svg {
        animation: none;
        transition: none;
    }
}
