.dc-promo-banners {
    --dc-promo-max-width: 1280px;
    --dc-promo-section-gap: 24px;
    --dc-promo-top-gap: 24px;
    --dc-promo-top-height: 300px;
    --dc-promo-banner-ratio: 2.093333;
    --dc-promo-card-min-height: 360px;
    --dc-promo-content-width: 50%;
    --dc-promo-content-pt: 76px;
    --dc-promo-content-pr: 0px;
    --dc-promo-content-pb: 48px;
    --dc-promo-content-pl: 76px;
    --dc-promo-product-width: 47.35%;
    --dc-promo-product-right: 46px;
    --dc-promo-product-top: 0px;
    --dc-promo-gradient-top: #c2e2ff;
    --dc-promo-gradient-bottom: #ffffff;
    --dc-promo-gradient-angle: 180deg;
    --dc-promo-product-shadow: rgba(0, 0, 0, 0.30);
    --dc-promo-button-text: #0059ab;
    --dc-promo-button-bg: #ffffff;
    --dc-promo-button-border: #0059ab;
    --dc-promo-button-icon-bg: #0059ab;
    --dc-promo-button-icon: #ffffff;
    --dc-promo-button-hover-text: #0059ab;
    --dc-promo-button-hover-bg: #ffffff;
    --dc-promo-button-hover-border: #0059ab;
    --dc-promo-button-hover-icon-bg: #0059ab;
    --dc-promo-button-hover-icon: #ffffff;
    --dc-promo-button-min-width: 154px;
    --dc-promo-button-height: 48px;
    --dc-promo-button-pt: 7px;
    --dc-promo-button-pr: 7px;
    --dc-promo-button-pb: 7px;
    --dc-promo-button-pl: 24px;
    --dc-promo-button-radius: 24px;
    --dc-promo-button-icon-size: 32px;
    --dc-promo-button-glyph-size: 12px;
    --dc-promo-button-gap: 12px;

    width: min(100%, var(--dc-promo-max-width));
    margin-inline: auto;
    display: flex;
    flex-direction: column;
    gap: var(--dc-promo-section-gap);
    min-width: 0;
}

.dc-promo-banners,
.dc-promo-banners * {
    box-sizing: border-box;
}

.dc-promo-banners__top {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: var(--dc-promo-top-gap);
    align-items: start;
    min-width: 0;
}

.dc-promo-banner {
    position: relative;
    width: 100%;
    min-width: 0;
    height: auto;
    overflow: hidden;
    background: transparent;
}

/* Default/natural mode: let the real image ratio define card height.
 * This prevents both cropping and the letterbox gaps created by object-fit: contain. */
.dc-promo-banners--banner-natural .dc-promo-banner {
    height: auto;
    aspect-ratio: auto;
}

.dc-promo-banners--banner-fixed .dc-promo-banner {
    height: var(--dc-promo-top-height);
    aspect-ratio: auto;
    background: #eef4f8;
}

.dc-promo-banner__link {
    width: 100%;
    display: block;
    color: inherit;
    text-decoration: none;
}

.dc-promo-banners--banner-natural .dc-promo-banner__link {
    height: auto;
}

.dc-promo-banners--banner-fixed .dc-promo-banner__link {
    height: 100%;
}

.dc-promo-banner__image {
    width: 100% !important;
    max-width: none !important;
    display: block;
    object-position: center;
}

.dc-promo-banners--banner-natural .dc-promo-banner__image {
    height: auto !important;
    object-fit: initial !important;
}

.dc-promo-banners--banner-fixed .dc-promo-banner__image {
    height: 100% !important;
}

.dc-promo-banner__link:focus-visible {
    outline: 2px solid #0059ab;
    outline-offset: 3px;
}

.dc-promo-feature {
    position: relative;
    isolation: isolate;
    width: 100%;
    min-width: 0;
    min-height: var(--dc-promo-card-min-height);
    overflow: hidden;
    background: linear-gradient(var(--dc-promo-gradient-angle), var(--dc-promo-gradient-top) 0%, var(--dc-promo-gradient-bottom) 100%);
}

.dc-promo-feature__content {
    position: relative;
    z-index: 3;
    width: var(--dc-promo-content-width);
    min-height: var(--dc-promo-card-min-height);
    padding: var(--dc-promo-content-pt) var(--dc-promo-content-pr) var(--dc-promo-content-pb) var(--dc-promo-content-pl);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.dc-promo-feature__eyebrow,
.dc-promo-feature__title,
.dc-promo-feature__description {
    position: relative;
    z-index: 2;
    max-width: 100%;
}

.dc-promo-feature__eyebrow {
    margin: 0 0 6px;
    color: #0059ab;
    font-size: 28px;
    line-height: 1.2;
    font-weight: 700;
}

.dc-promo-feature__title {
    margin: 0 0 6px;
    color: #0059ab;
    font-size: 48px;
    line-height: 1.08;
    font-weight: 700;
    letter-spacing: -1px;
}

.dc-promo-feature__title-before,
.dc-promo-feature__highlight,
.dc-promo-feature__title-after {
    display: inline;
}

.dc-promo-feature__title-before::after,
.dc-promo-feature__highlight::after {
    content: " ";
}

.dc-promo-feature__highlight {
    color: #fe0b21;
}

.dc-promo-feature__description {
    margin: 0 0 22px;
    color: #011139;
    font-size: 18px;
    line-height: 1.4;
    font-weight: 400;
}

.dc-promo-feature__button,
.dc-promo-feature__button:visited {
    position: relative;
    z-index: 4;
    width: fit-content;
    min-width: var(--dc-promo-button-min-width);
    min-height: var(--dc-promo-button-height);
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--dc-promo-button-gap);
    margin: 0;
    padding: var(--dc-promo-button-pt) var(--dc-promo-button-pr) var(--dc-promo-button-pb) var(--dc-promo-button-pl);
    border: 1px solid var(--dc-promo-button-border);
    border-radius: var(--dc-promo-button-radius);
    background: var(--dc-promo-button-bg);
    color: var(--dc-promo-button-text);
    box-shadow: none;
    text-decoration: none;
    white-space: nowrap;
    cursor: pointer;
    transition: color 160ms ease, background-color 160ms ease, border-color 160ms ease;
}

.dc-promo-feature__button:hover,
.dc-promo-feature__button:focus-visible {
    border-color: var(--dc-promo-button-hover-border);
    background: var(--dc-promo-button-hover-bg);
    color: var(--dc-promo-button-hover-text);
    text-decoration: none;
}

.dc-promo-feature__button:focus-visible {
    outline: 2px solid color-mix(in srgb, var(--dc-promo-button-border) 35%, transparent);
    outline-offset: 3px;
}

.dc-promo-feature__button-icon {
    width: var(--dc-promo-button-icon-size);
    height: var(--dc-promo-button-icon-size);
    flex: 0 0 var(--dc-promo-button-icon-size);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--dc-promo-button-icon-bg);
    color: var(--dc-promo-button-icon);
    transition: color 160ms ease, background-color 160ms ease;
}

.dc-promo-feature__button:hover .dc-promo-feature__button-icon,
.dc-promo-feature__button:focus-visible .dc-promo-feature__button-icon {
    background: var(--dc-promo-button-hover-icon-bg);
    color: var(--dc-promo-button-hover-icon);
}

.dc-promo-feature__button-icon svg,
.dc-promo-feature__button-icon i {
    width: var(--dc-promo-button-glyph-size);
    height: var(--dc-promo-button-glyph-size);
    display: block;
    color: currentColor;
    font-size: var(--dc-promo-button-glyph-size);
}

.dc-promo-feature__button-icon--custom svg {
    fill: currentColor;
}

.dc-promo-feature__button-icon--reference svg {
    fill: none;
    stroke: currentColor;
    stroke-width: 1.5;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.dc-promo-feature__product {
    position: absolute;
    z-index: 2;
    top: var(--dc-promo-product-top);
    right: var(--dc-promo-product-right);
    width: var(--dc-promo-product-width);
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: none;
}

.dc-promo-feature--product-shadow .dc-promo-feature__product::before {
    content: "";
    position: absolute;
    z-index: -1;
    left: 50%;
    bottom: 24px;
    width: 94%;
    height: 88px;
    transform: translateX(-50%);
    border-radius: 50%;
    background: var(--dc-promo-product-shadow);
    filter: blur(28.8px);
}

.dc-promo-feature__product-image {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 100%;
    height: 100%;
    display: block;
    object-fit: contain;
    object-position: center;
}

@media (max-width: 1024px) {
    .dc-promo-banners {
        --dc-promo-content-pt: 48px;
        --dc-promo-content-pb: 40px;
        --dc-promo-content-pl: 48px;
        --dc-promo-product-right: 20px;
    }

    .dc-promo-feature__eyebrow {
        font-size: 24px;
    }

    .dc-promo-feature__title {
        font-size: 40px;
    }

    .dc-promo-feature__description {
        font-size: 17px;
    }
}

@media (max-width: 767px) {
    .dc-promo-banners {
        --dc-promo-card-min-height: 0px;
        --dc-promo-content-width: 100%;
        --dc-promo-content-pt: 28px;
        --dc-promo-content-pr: 24px;
        --dc-promo-content-pb: 12px;
        --dc-promo-content-pl: 24px;
        --dc-promo-product-width: 100%;
        --dc-promo-product-right: 0px;
        --dc-promo-product-top: 0px;
    }

    .dc-promo-banners__top {
        grid-template-columns: 1fr;
    }

    .dc-promo-banners--mobile-scroll .dc-promo-banners__top {
        display: flex;
        overflow-x: auto;
        overflow-y: hidden;
        scroll-snap-type: x mandatory;
        overscroll-behavior-inline: contain;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        padding-bottom: 2px;
    }

    .dc-promo-banners--mobile-scroll .dc-promo-banners__top::-webkit-scrollbar {
        display: none;
    }

    .dc-promo-banners--mobile-scroll .dc-promo-banner {
        flex: 0 0 88%;
        scroll-snap-align: start;
    }

    .dc-promo-feature {
        display: flex;
        flex-direction: column;
    }

    .dc-promo-feature__content {
        width: 100%;
        min-height: 0;
    }

    .dc-promo-feature__eyebrow {
        font-size: 20px;
    }

    .dc-promo-feature__title {
        font-size: 34px;
        line-height: 1.1;
        letter-spacing: -0.5px;
    }

    .dc-promo-feature__description {
        font-size: 16px;
    }

    .dc-promo-feature__product {
        position: relative;
        top: auto;
        right: auto;
        width: 100%;
        height: auto;
        min-height: 220px;
        padding: 0 10px 10px;
    }

    .dc-promo-feature__product-image {
        width: 100%;
        height: auto;
        max-height: 280px;
        object-fit: contain;
    }

    .dc-promo-feature--product-shadow .dc-promo-feature__product::before {
        bottom: 26px;
        width: 82%;
        height: 56px;
        filter: blur(20px);
    }
}

@media (prefers-reduced-motion: reduce) {
    .dc-promo-feature__button,
    .dc-promo-feature__button-icon {
        transition: none;
    }
}
