/**
 * Popüler paketler altı tanıtım şeridi — bridge bindirme, yukarı taşma.
 */
.orvix-home-promo-strip {
    position: relative;
    z-index: 5;
    margin-top: clamp(-5.5rem, -8.5vw, -7rem);
    padding: clamp(1.25rem, 2.5vw, 1.75rem) 0 clamp(0.35rem, 0.8vw, 0.65rem);
    background: var(--orvix-home-promo-next, #f4f6f8);
    pointer-events: none;
    overflow: visible;
    isolation: isolate;
}

.orvix-home-promo-strip__grid,
.orvix-home-promo-strip a,
.orvix-home-promo-strip button {
    pointer-events: auto;
}

html[data-bs-theme="dark"]:not([data-orvix-theme="orvapro-default"]) .orvix-home-promo-strip {
    background: transparent;
}

/* Gece — base padding kaldır (bindirme + grid boşlukları yeterli) */
html[data-bs-theme="dark"] .orvix-home-promo-strip {
    padding: 0;
}

/* Promo kartları: gece modda opak koyu zemin (soft 0.06 değil) */
html[data-bs-theme="dark"] .orvix-home-promo-strip .orvix-home-bridge__card--light {
    background: #1c212b;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.22);
}

html[data-bs-theme="dark"] .orvix-home-promo-strip::before,
html[data-bs-theme="dark"] .orvix-home-promo-strip::after {
    display: none !important;
    content: none !important;
}

/* Koyu zemin — gündüz #f4f6f8 gibi kartlar altında dolu #0b0d12 */
html[data-bs-theme="dark"] .orvix-home-promo-strip__grid::before {
    content: "";
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 100vw;
    top: 0;
    bottom: 0;
    background: #0b0d12;
    pointer-events: none;
    z-index: -1;
}

html[data-bs-theme="dark"] .orvix-home-promo-strip__grid {
    transform: translateY(-2.75rem);
    margin-bottom: -2.5rem;
    position: relative;
    z-index: 2;
}

html[data-bs-theme="dark"] .orvix-home-promo-strip__card {
    transform: none;
    position: relative;
    z-index: 3;
}

html[data-bs-theme="dark"] .orvix-home-promo-strip__card-sub {
    color: rgba(255, 255, 255, 0.85);
}

html[data-bs-theme="dark"] .orvix-home-promo-strip__mini-desc {
    color: rgba(255, 255, 255, 0.65);
}

html[data-bs-theme="dark"] .orvix-home-promo-strip .orvix-home-bridge__card-title,
html[data-bs-theme="dark"] .orvix-home-promo-strip .orvix-home-bridge__card-desc {
    color: rgba(255, 255, 255, 0.92) !important;
}

html[data-bs-theme="dark"] .orvix-home-promo-strip__slant-btn__inner {
    background: #12151c;
    color: #fff;
    border-color: rgba(37, 214, 101, 0.4);
}

html[data-bs-theme="dark"] .orvix-home-promo-strip__slant-btn__label {
    color: #fff;
}

html[data-bs-theme="dark"] .orvix-home-promo-strip__slant-btn:hover .orvix-home-promo-strip__slant-btn__inner,
html[data-bs-theme="dark"] .orvix-home-promo-strip__slant-btn:focus-visible .orvix-home-promo-strip__slant-btn__inner {
    background: #1c212b;
    color: #fff;
    border-color: rgba(37, 214, 101, 0.48);
}

html[data-bs-theme="dark"] .orvix-home-promo-strip__slant-btn:hover .orvix-home-promo-strip__slant-btn__label,
html[data-bs-theme="dark"] .orvix-home-promo-strip__slant-btn:focus-visible .orvix-home-promo-strip__slant-btn__label {
    color: #fff;
}

.orvix-home-promo-strip__grid {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.82fr) minmax(0, 1fr);
    gap: 1.35rem;
    align-items: stretch;
    transform: translateY(-4rem);
    margin-bottom: -3.35rem;
    position: relative;
    z-index: 2;
}

/* Default tema — bridge başlık/açıklama ile promo kartları arasında nefes payı (light) */
html[data-orvix-theme="orvapro-default"]:not([data-bs-theme="dark"]) .orvix-home-promo-strip {
    margin-top: clamp(-4rem, -6vw, -5.25rem);
}

html[data-orvix-theme="orvapro-default"]:not([data-bs-theme="dark"]) .orvix-home-promo-strip__grid {
    transform: translateY(-2.75rem);
    margin-bottom: -2.5rem;
}

/* Default dark — gündüz bindirme; üst şeffaf (kartlar paketler üstünde), alt #0b0d12 */
html[data-bs-theme="dark"][data-orvix-theme="orvapro-default"] .orvix-home-promo-strip {
    margin-top: clamp(-4rem, -6vw, -5.25rem);
    background: transparent;
}

html[data-bs-theme="dark"][data-orvix-theme="orvapro-default"] .orvix-home-promo-strip__grid {
    transform: translateY(-2.75rem);
    margin-bottom: -2.5rem;
    padding-bottom: clamp(0.5rem, 0.9vw, 0.75rem);
}

html[data-bs-theme="dark"][data-orvix-theme="orvapro-default"] .orvix-home-promo-strip__grid::before {
    background: linear-gradient(
        180deg,
        transparent 0,
        transparent 2.75rem,
        #0b0d12 2.75rem,
        #0b0d12 100%
    );
}

/* Default dark mobil — gündüz mobil bindirme (transform/margin); platform kartı kesilmesin */
@media (max-width: 991.98px) {
    html[data-bs-theme="dark"][data-orvix-theme="orvapro-default"] .orvix-home-promo-strip {
        margin-top: clamp(-5rem, -7.5vw, -6.5rem);
        padding: 0;
        overflow: visible;
        background: transparent;
    }

    /* 2. sütun (mini kartlar) — içerik dikey ortalı */
    html[data-bs-theme="dark"] .orvix-home-promo-strip__stack {
        justify-content: center;
    }

    html[data-bs-theme="dark"] .orvix-home-promo-strip__card--mini {
        justify-content: center;
        min-height: 8.25rem;
    }

    html[data-bs-theme="dark"][data-orvix-theme="orvapro-default"] .orvix-home-promo-strip__grid {
        transform: translateY(-3rem) !important;
        margin-bottom: -2.35rem !important;
        padding-top: 1rem !important;
        padding-bottom: 1.5rem !important;
    }

    html[data-bs-theme="dark"][data-orvix-theme="orvapro-default"] .orvix-home-promo-strip__grid::before {
        background: linear-gradient(
            180deg,
            transparent 0,
            transparent 3rem,
            #0b0d12 3rem,
            #0b0d12 100%
        );
    }

    html[data-bs-theme="dark"][data-orvix-theme="orvapro-default"] .orvix-home-promo-strip__card {
        transform: none !important;
        margin-bottom: 0.75rem !important;
    }

    html[data-bs-theme="dark"][data-orvix-theme="orvapro-default"] .orvix-home-promo-strip__card--platforms {
        overflow: visible !important;
        margin-bottom: 1.25rem !important;
        padding-bottom: 1.5rem !important;
    }

    html[data-bs-theme="dark"][data-orvix-theme="orvapro-default"] .orvix-home-promo-strip__platforms {
        padding-bottom: 0.35rem;
    }

    html[data-bs-theme="dark"][data-orvix-theme="orvapro-default"] .orvix-home-promo-strip__stack > .orvix-home-promo-strip__card:last-child {
        margin-bottom: 0.85rem !important;
    }
}

.orvix-home-promo-strip__stack {
    display: flex;
    flex-direction: column;
    gap: 1.35rem;
    justify-content: flex-start;
    align-items: stretch;
}

.orvix-home-promo-strip__card {
    position: relative;
    z-index: 3;
}

.orvix-home-promo-strip__stack > .orvix-home-promo-strip__card {
    height: auto;
    min-height: 0;
    flex: 0 0 auto;
}

/* Bridge’deki 18rem promo’ya taşmasın */
.orvix-home-promo-strip .orvix-home-bridge__card--light,
.orvix-home-promo-strip .orvix-home-bridge__card--media {
    min-height: 15.25rem;
}

.orvix-home-promo-strip .orvix-home-bridge__card--media .orvix-home-bridge__cta {
    margin-top: 1rem !important;
    position: relative !important;
}

@media (min-width: 992px) {
    .orvix-home-promo-strip__grid > .orvix-home-promo-strip__card--support,
    .orvix-home-promo-strip__grid > .orvix-home-promo-strip__card--platforms,
    .orvix-home-promo-strip__grid > .orvix-home-promo-strip__stack {
        height: 100%;
        min-height: 15.25rem;
    }

    .orvix-home-promo-strip__stack {
        justify-content: center;
    }

    .orvix-home-promo-strip__stack > .orvix-home-promo-strip__card--mini {
        flex: 1 1 0;
        min-height: 0;
        justify-content: center;
    }

    html[data-orvix-theme="orvapro-default"] .orvix-home-promo-strip .orvix-home-bridge__card--light,
    html[data-orvix-theme="orvapro-default"] .orvix-home-promo-strip .orvix-home-bridge__card--media,
    html[data-orvix-theme="orvapro-default"] .orvix-home-promo-strip__card--support,
    html[data-orvix-theme="orvapro-default"] .orvix-home-promo-strip__card--platforms {
        min-height: 15.25rem !important;
        padding-bottom: 1.35rem !important;
    }

    html[data-orvix-theme="orvapro-default"] .orvix-home-promo-strip__card--mini {
        min-height: 0 !important;
        padding-bottom: 1.05rem !important;
    }

    html[data-orvix-theme="orvapro-default"] .orvix-home-promo-strip .orvix-home-bridge__card--media .orvix-home-bridge__cta {
        margin-top: auto !important;
    }

    .orvix-home-promo-strip__card--platforms .orvix-home-promo-strip__platforms {
        margin-top: auto !important;
        padding-top: 0.85rem;
    }

}

/* Promo kartlarda bridge primary glow kapalı */
.orvix-home-promo-strip .orvix-home-bridge__card--light::before {
    display: none !important;
    content: none !important;
}

.orvix-home-promo-strip .orvix-home-bridge__cta,
.orvix-home-promo-strip .orvix-home-bridge__cta:hover,
.orvix-home-promo-strip .orvix-home-bridge__cta:focus,
.orvix-home-promo-strip .orvix-home-bridge__cta:focus-visible {
    color: #fff !important;
}

.orvix-home-promo-strip__card--support {
    min-height: 15.25rem;
    overflow: hidden;
}

.orvix-home-promo-strip .orvix-home-promo-strip__card--support.orvix-home-bridge__card--light {
    overflow: hidden;
}

.orvix-home-promo-strip__card--support .orvix-home-bridge__card-title,
.orvix-home-promo-strip__card--support .orvix-home-promo-strip__card-sub,
.orvix-home-promo-strip__card--support .orvix-home-bridge__card-desc {
    position: relative;
    z-index: 3;
}

.orvix-home-promo-strip__card--support .orvix-home-bridge__cta {
    position: relative;
    z-index: 4;
}

.orvix-home-promo-strip .orvix-home-promo-strip__card--support.orvix-home-bridge__card--media .orvix-home-bridge__visual {
    top: 0;
    right: 0;
    left: 22%;
    bottom: 0;
    width: auto;
    max-width: 78%;
    height: 100%;
    max-height: none;
    z-index: 1;
    align-items: flex-end;
    justify-content: flex-end;
    pointer-events: none;
}

.orvix-home-promo-strip .orvix-home-promo-strip__card--support.orvix-home-bridge__card--media .orvix-home-bridge__visual img {
    display: block;
    width: auto;
    height: 100%;
    max-width: 100%;
    max-height: 100%;
    min-height: 0;
    min-width: 0;
    margin: 0;
    transform: none;
    object-fit: contain;
    object-position: bottom right;
}

@media (min-width: 992px) {
    .orvix-home-promo-strip__card--support {
        overflow: hidden;
        padding-bottom: 1.35rem !important;
    }

    .orvix-home-promo-strip__card--platforms {
        overflow: hidden;
        padding-bottom: 1.35rem !important;
    }

    .orvix-home-promo-strip .orvix-home-promo-strip__card--support.orvix-home-bridge__card--media .orvix-home-bridge__visual {
        top: 0.15rem;
        bottom: 0;
        left: 20%;
        max-width: 80%;
    }

    .orvix-home-promo-strip .orvix-home-promo-strip__card--support.orvix-home-bridge__card--media .orvix-home-bridge__visual img {
        height: 100%;
        max-height: 100%;
        min-height: 13rem;
    }
}

.orvix-home-promo-strip__card-sub {
    margin: 0 0 0.55rem;
    max-width: 11rem;
    font-size: 0.82rem;
    font-weight: 700;
    line-height: 1.35;
    color: #111827;
}

.orvix-home-promo-strip__card--support .orvix-home-bridge__card-desc {
    max-width: 11rem;
    margin-bottom: 1rem;
}

.orvix-home-promo-strip__card--mini {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    text-align: center;
    padding: 1.15rem 1.1rem 1.05rem;
    flex: 0 0 auto;
}

.orvix-home-promo-strip__mini-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 3.35rem;
    height: 3.35rem;
    margin-bottom: 0.55rem;
    border-radius: var(--orvix-ui-radius-sm, 0.5rem);
    font-size: 1.65rem;
    line-height: 0;
}

.orvix-home-promo-strip__card--tools .orvix-home-promo-strip__mini-icon {
    background: rgba(236, 72, 153, 0.14);
    color: #db2777;
}

.orvix-home-promo-strip__card--how .orvix-home-promo-strip__mini-icon {
    background: rgba(59, 130, 246, 0.14);
    color: #2563eb;
}

.orvix-home-promo-strip__mini-desc {
    margin: 0 0 0.75rem;
    max-width: 12.5rem;
    font-size: 0.76rem;
    line-height: 1.55;
    color: rgba(17, 24, 39, 0.52);
}

/* Orta kartlar — açılı pill, açık zemin + koyu yazı */
.orvix-home-promo-strip__slant-btn {
    display: block;
    width: auto;
    max-width: 100%;
    margin: 0 auto;
    padding: 0;
    border: none;
    background: transparent;
    box-shadow: none;
    text-decoration: none;
}

.orvix-home-promo-strip__slant-btn__inner {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.45rem;
    width: auto;
    min-height: 2.75rem;
    padding: 0.68rem 1.25rem;
    border: 1px dashed var(--orvix-primary-tint-32, rgba(55, 98, 234, 0.32));
    border-radius: 999px;
    background: var(--orvix-primary-on-white-14, #dfe8fb);
    color: var(--bs-primary, #3762ea);
    box-shadow: none;
    transform: rotate(-3.5deg);
    transform-origin: 50% 50%;
    transition: background 0.18s ease;
}

.orvix-home-promo-strip__slant-btn__label {
    display: inline-block;
    font-weight: 600;
    font-size: 0.84rem;
    line-height: 1.2;
    color: var(--bs-primary, #3762ea);
}

.orvix-home-promo-strip__slant-btn:hover .orvix-home-promo-strip__slant-btn__inner,
.orvix-home-promo-strip__slant-btn:focus-visible .orvix-home-promo-strip__slant-btn__inner {
    background: var(--orvix-primary-on-white-18, #d5e1fa);
    color: var(--bs-primary, #3762ea);
}

.orvix-home-promo-strip__card--platforms {
    display: flex;
    flex-direction: column;
    min-height: 15.25rem;
    padding-bottom: 1.35rem;
    position: relative;
    overflow: hidden;
}

.orvix-home-promo-strip__card--platforms .orvix-home-bridge__card-title {
    max-width: 13rem;
}

.orvix-home-promo-strip__card--platforms .orvix-home-bridge__card-desc {
    max-width: 13.5rem;
    margin-bottom: 0;
}

.orvix-home-promo-strip__arrow {
    position: absolute;
    left: 58%;
    top: 36%;
    width: min(7.5rem, 38%);
    z-index: 2;
    pointer-events: none;
    transform: rotate(-8deg);
}

.orvix-home-promo-strip__arrow img {
    display: block;
    width: 100%;
    height: auto;
    object-fit: contain;
}

.orvix-home-promo-strip__platforms {
    display: flex;
    align-items: center;
    gap: 0.45rem;
    margin-top: auto;
    padding-top: 1.35rem;
    width: 100%;
}

.orvix-home-promo-strip__plat {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    min-height: 2.55rem;
    height: 2.55rem;
    padding: 0;
    border-radius: 999px;
    background: var(--orvix-promo-plat, var(--orvix-home-promo-primary, #3762ea));
    color: #fff;
    text-decoration: none;
    font-size: 0.82rem;
    font-weight: 700;
    line-height: 1;
    overflow: hidden;
    flex: 0 0 2.55rem;
    min-width: 2.55rem;
    transition: flex 0.28s ease, padding 0.28s ease, gap 0.28s ease, min-width 0.28s ease;
}

.orvix-home-promo-strip__plat.is-expanded {
    flex: 1 1 auto;
    min-width: 0;
    padding: 0 0.95rem;
    justify-content: flex-start;
    gap: 0.4rem;
}

.orvix-home-promo-strip__plat i {
    flex-shrink: 0;
    font-size: 1.15rem;
    line-height: 0;
}

.orvix-home-promo-strip__plat-label {
    white-space: nowrap;
    overflow: hidden;
    max-width: 0;
    opacity: 0;
    transition: max-width 0.28s ease, opacity 0.22s ease;
}

.orvix-home-promo-strip__plat.is-expanded .orvix-home-promo-strip__plat-label {
    max-width: 9rem;
    opacity: 1;
}

@media (max-width: 991.98px) {
    .orvix-home-promo-strip {
        margin-top: clamp(-5rem, -7.5vw, -6.5rem);
    }

    .orvix-home-promo-strip__grid > .orvix-home-promo-strip__card--support,
    .orvix-home-promo-strip__grid > .orvix-home-promo-strip__card--platforms,
    .orvix-home-promo-strip__grid > .orvix-home-promo-strip__stack {
        height: auto;
        min-height: 0;
    }

    .orvix-home-promo-strip__grid {
        grid-template-columns: 1fr;
        gap: 1rem;
        transform: translateY(-3rem);
        margin-bottom: -2.35rem;
    }

    html[data-bs-theme="dark"]:not([data-orvix-theme="orvapro-default"]) .orvix-home-promo-strip__grid {
        transform: translateY(-1.75rem);
        margin-bottom: -2.25rem;
        padding-top: 1rem;
        padding-bottom: 1.1rem;
    }

    html[data-bs-theme="dark"] .orvix-home-promo-strip__card {
        transform: none;
    }

    html[data-bs-theme="dark"][data-orvix-theme="orvapro-default"] .orvix-home-promo-strip__card {
        transform: none !important;
    }

    html[data-bs-theme="dark"] .orvix-home-promo-strip__grid::before,
    html[data-bs-theme="dark"][data-orvix-theme="orvapro-default"] .orvix-home-promo-strip__grid::before {
        top: 0;
    }

    .orvix-home-promo-strip__stack {
        gap: 1rem;
    }

    /* Default light — 2. ve 3. promo kart içeriği dikey ortalı */
    html[data-orvix-theme="orvapro-default"]:not([data-bs-theme="dark"]) .orvix-home-promo-strip__stack {
        justify-content: center;
    }

    html[data-orvix-theme="orvapro-default"]:not([data-bs-theme="dark"]) .orvix-home-promo-strip__card--mini {
        justify-content: center;
        align-items: center;
        text-align: center;
        min-height: 8.25rem;
    }

    .orvix-home-promo-strip__arrow {
        display: none;
    }
}

@media (max-width: 767.98px) {
    .orvix-home-promo-strip {
        margin-top: clamp(-4.5rem, -7vw, -6rem);
        padding-bottom: 1.75rem;
    }

    .orvix-home-promo-strip .orvix-home-promo-strip__card--support.orvix-home-bridge__card--media .orvix-home-bridge__visual {
        top: 0;
        right: 0;
        left: 28%;
        max-width: 72%;
        height: 100%;
    }

    .orvix-home-promo-strip .orvix-home-promo-strip__card--support.orvix-home-bridge__card--media .orvix-home-bridge__visual img {
        max-height: 100%;
        min-height: 0;
        min-width: 0;
    }

    .orvix-home-promo-strip__grid {
        transform: translateY(-2.75rem);
        margin-bottom: -2.1rem;
    }

    html[data-bs-theme="dark"] .orvix-home-promo-strip {
        padding-bottom: 1.5rem;
        overflow: visible;
    }

    html[data-bs-theme="dark"] .orvix-home-promo-strip__grid {
        margin-bottom: -0.5rem;
        padding-bottom: 1.35rem;
    }

    html[data-bs-theme="dark"] .orvix-home-promo-strip__card--platforms {
        overflow: visible;
        margin-bottom: 1rem;
        padding-bottom: 1.35rem;
    }

    html[data-bs-theme="dark"][data-orvix-theme="orvapro-default"] .orvix-home-promo-strip {
        margin-top: clamp(-4.5rem, -7vw, -6rem);
        background: transparent;
    }

    html[data-bs-theme="dark"][data-orvix-theme="orvapro-default"] .orvix-home-promo-strip__grid {
        transform: translateY(-2.75rem) !important;
        margin-bottom: -2.1rem !important;
    }

    html[data-bs-theme="dark"][data-orvix-theme="orvapro-default"] .orvix-home-promo-strip__grid::before {
        background: linear-gradient(
            180deg,
            transparent 0,
            transparent 2.75rem,
            #0b0d12 2.75rem,
            #0b0d12 100%
        );
    }

    html[data-bs-theme="dark"] .orvix-home-promo-strip__card {
        transform: none;
    }

    html[data-bs-theme="dark"][data-orvix-theme="orvapro-default"] .orvix-home-promo-strip__card {
        transform: none !important;
    }

    .orvix-home-promo-strip__mini-desc {
        font-size: 0.72rem;
    }

    .orvix-home-promo-strip__slant-btn__label {
        font-size: 0.8rem;
    }
}

/**
 * Paket sayfası — bridge bindirme kapalı; vw/transform ile zoom kayması yok.
 */
.orvix-home-promo-strip.orvix-home-promo-strip--static {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
    padding: 0 0 0.75rem !important;
    isolation: auto;
}

.orvix-home-promo-strip.orvix-home-promo-strip--static .orvix-home-promo-strip__grid {
    transform: none !important;
    margin: 0 !important;
    padding: 0 !important;
    top: auto !important;
}

.orvix-home-promo-strip.orvix-home-promo-strip--static .orvix-home-promo-strip__grid::before,
.orvix-home-promo-strip.orvix-home-promo-strip--static .orvix-home-promo-strip__grid::after {
    display: none !important;
    content: none !important;
}

.orvix-home-promo-strip.orvix-home-promo-strip--static .orvix-home-promo-strip__card {
    transform: none !important;
    top: 0 !important;
    position: relative !important;
}

html[data-bs-theme="dark"] .orvix-home-promo-strip.orvix-home-promo-strip--static {
    background: transparent !important;
}

html[data-bs-theme="dark"] .orvix-home-promo-strip.orvix-home-promo-strip--static .orvix-home-promo-strip__grid,
html[data-bs-theme="dark"] .orvix-home-promo-strip.orvix-home-promo-strip--static .orvix-home-promo-strip__grid::before {
    transform: none !important;
    margin: 0 !important;
    padding: 0 !important;
}

html[data-bs-theme="dark"] .orvix-home-promo-strip.orvix-home-promo-strip--static .orvix-home-promo-strip__card {
    transform: none !important;
    top: 0 !important;
}

@media (max-width: 991.98px) {
    .orvix-home-promo-strip.orvix-home-promo-strip--static,
    .orvix-home-promo-strip.orvix-home-promo-strip--static .orvix-home-promo-strip__grid,
    .orvix-home-promo-strip.orvix-home-promo-strip--static .orvix-home-promo-strip__card {
        transform: none !important;
        margin-top: 0 !important;
        margin-bottom: 0 !important;
    }

    html[data-bs-theme="dark"] .orvix-home-promo-strip.orvix-home-promo-strip--static .orvix-home-promo-strip__grid::before {
        top: auto !important;
    }
}

@media (max-width: 767.98px) {
    .orvix-home-promo-strip.orvix-home-promo-strip--static,
    .orvix-home-promo-strip.orvix-home-promo-strip--static .orvix-home-promo-strip__grid,
    .orvix-home-promo-strip.orvix-home-promo-strip--static .orvix-home-promo-strip__card {
        transform: none !important;
        margin-top: 0 !important;
        margin-bottom: 0 !important;
        padding-bottom: 0 !important;
    }
}
