.bshStickyBox {
    --bsh-stickybox-bg: #f5f3f1;
    padding-block: var(--bsh-section-y-rich);
    background: var(--bsh-stickybox-bg);
}

.bshStickyBox--soft {
    --bsh-stickybox-bg: #f5f3f1;
    --bsh-stickybox-bg: color-mix(in srgb, var(--bsh-color-pastel-1) 14%, var(--bsh-color-white));
}

.bshStickyBox--white {
    --bsh-stickybox-bg: var(--bsh-color-white);
    padding-block: var(--bsh-section-y);
}

.bshStickyBox--light {
    --bsh-stickybox-bg: var(--bsh-color-bg);
    padding-block: var(--bsh-section-y);
}

.bshStickyBox--pastel {
    --bsh-stickybox-bg: #e5dfdc;
    --bsh-stickybox-bg: color-mix(in srgb, var(--bsh-color-pastel-1) 34%, var(--bsh-color-white));
}

.bshStickyBox__layout {
    display: grid;
    width: min(100%, 1560px);
    grid-template-columns: minmax(0, .88fr) minmax(0, 1fr);
    gap: clamp(80px, 8vw, 165px);
    align-items: start;
    margin-inline: auto;
    padding-inline: clamp(12px, 2.6vw, 50px);
}

.bshStickyBox__intro {
    position: sticky;
    top: clamp(100px, 12vh, 148px);
    align-self: start;
    max-width: 760px;
    padding-right: clamp(0px, 1.5vw, 28px);
}

.bshStickyBox__intro :is(h1, h2) {
    max-width: min(100%, 900px);
    margin: 0;
    color: var(--bsh-color-headline);
    font-size: var(--bsh-fs-h2);
    font-weight: 400;
    letter-spacing: -.05em;
    line-height: 1.04;
}

.bshStickyBox__copy {
    max-width: 680px;
    margin-top: clamp(18px, 1.8vw, 30px);
    color: var(--bsh-color-body);
    font-size: var(--bsh-fs-body);
    line-height: 1.75;
}

.bshStickyBox__copy > *:first-child {
    margin-top: 0;
}

.bshStickyBox__copy > *:last-child {
    margin-bottom: 0;
}

.bshStickyBox__cta {
    margin-top: clamp(28px, 2.4vw, 42px);
}

.bshStickyBox__track {
    display: grid;
    gap: clamp(34px, 4vw, 72px);
    width: min(100%, 760px);
    min-width: 0;
    justify-self: center;
}

.bshStickyBox__card {
    position: relative;
    min-width: 0;
    overflow: hidden;
    background: var(--bsh-color-white);
}

.bshStickyBox__card--link {
    cursor: pointer;
}

.bshStickyBox__cardLink {
    position: absolute;
    inset: 0;
    z-index: 4;
}

.bshStickyBox__media {
    position: relative;
    aspect-ratio: 16 / 10;
    overflow: hidden;
    background: var(--bsh-color-pastel-1);
}

.bshStickyBox__mediaInner {
    position: absolute;
    inset: -8% 0;
}

.bshStickyBox__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: filter 600ms ease, transform 950ms cubic-bezier(.22, 1, .36, 1);
}

.bshStickyBox__cardContent {
    position: relative;
    display: grid;
    gap: clamp(10px, .8vw, 16px);
    min-height: clamp(190px, 15vw, 290px);
    padding: clamp(26px, 2.7vw, 52px);
}

.bshStickyBox__kicker {
    display: flex;
    gap: .65em;
    align-items: center;
    margin: 0;
    color: var(--bsh-color-pastel-2);
    font-size: var(--bsh-fs-sm);
    font-style: normal;
    font-weight: 500;
    letter-spacing: .24em;
    line-height: 1.4;
    text-transform: uppercase;
}

.bshStickyBox__kicker i {
    font-style: normal;
    opacity: .72;
}

.bshStickyBox__card h3 {
    max-width: 90%;
    margin: 0;
    color: var(--bsh-color-headline);
    font-size: var(--bsh-fs-h3);
    font-weight: 500;
    letter-spacing: -.045em;
    line-height: 1.08;
    transition: color var(--bsh-transition-base);
}

.bshStickyBox__description {
    max-width: 780px;
    margin: 0;
    color: var(--bsh-color-body);
    line-height: 1.7;
}

.bshStickyBox__arrow {
    position: absolute;
    right: clamp(24px, 2.4vw, 44px);
    bottom: clamp(24px, 2.4vw, 44px);
    display: grid;
    width: clamp(46px, 3.6vw, 64px);
    aspect-ratio: 1;
    place-items: center;
    border: 1px solid var(--bsh-color-border);
    border-radius: 50%;
    color: var(--bsh-color-headline);
    transition: color var(--bsh-transition-base), border-color var(--bsh-transition-base), background-color var(--bsh-transition-base), transform var(--bsh-transition-base);
}

.bshStickyBox__arrow svg {
    width: 34%;
    height: 34%;
    stroke-width: 1.5;
}

.bshStickyBox__card--link:focus-within {
    outline: 2px solid var(--bsh-color-pastel-2);
    outline-offset: 4px;
}

.bshStickyBox__cardLink:focus-visible {
    outline: none;
}

.bshStickyBox__card--no-media .bshStickyBox__cardContent {
    min-height: clamp(280px, 30vw, 520px);
    align-content: center;
}

@media (hover: hover) and (pointer: fine) {
    .bshStickyBox__card--link:hover .bshStickyBox__image {
        filter: saturate(.84);
        transform: scale(1.045);
    }

    .bshStickyBox__card--link:hover h3 {
        color: var(--bsh-color-pastel-2);
    }

    .bshStickyBox__card--link:hover .bshStickyBox__arrow {
        color: var(--bsh-color-white);
        border-color: var(--bsh-color-pastel-2);
        background: var(--bsh-color-pastel-2);
        transform: rotate(45deg);
    }
}

@media (max-width: 1100px) {
    .bshStickyBox__layout {
        grid-template-columns: 1fr;
        gap: clamp(48px, 7vw, 78px);
    }

    .bshStickyBox__intro {
        position: relative;
        top: auto;
        max-width: 850px;
        padding-right: 0;
    }

    .bshStickyBox__track {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: clamp(20px, 3vw, 34px);
    }

    .bshStickyBox__media {
        aspect-ratio: 4 / 3;
    }

    .bshStickyBox__cardContent {
        min-height: 230px;
    }

    .bshStickyBox__card h3 {
        max-width: 100%;
        font-size: var(--bsh-fs-h4);
    }

    .bshStickyBox__arrow {
        position: relative;
        right: auto;
        bottom: auto;
        margin-top: 12px;
    }
}

@media (max-width: 700px) {
    .bshStickyBox__track {
        grid-template-columns: 1fr;
    }

    .bshStickyBox__cardContent {
        min-height: 0;
        padding: 28px 24px 32px;
    }

    .bshStickyBox__card--no-media .bshStickyBox__cardContent {
        min-height: 280px;
    }

    .bshStickyBox__kicker {
        letter-spacing: .18em;
    }
}

@media (prefers-reduced-motion: reduce) {
    .bshStickyBox__image,
    .bshStickyBox__card h3,
    .bshStickyBox__arrow {
        transition: none;
    }
}
