/* =====================================================================
 * BSH Engagement Story
 * ===================================================================== */

.bsh-engagement-story {
    --bsh-es-blue: #4283c4;
    --bsh-es-blue-dark: #1b3a61;
    --bsh-es-orange: #eb6a05;
    --bsh-es-text: #0f1720;

    position: relative;
    padding: 88px 0;
    background: #fff;
    overflow: hidden;
}

.bsh-engagement-story,
.bsh-engagement-story *,
.bsh-engagement-story *::before,
.bsh-engagement-story *::after {
    box-sizing: border-box;
}

.bsh-engagement-story__dots {
    position: absolute;
    inset: 0;
    background-image: radial-gradient(rgb(66 131 196 / 71%) 1px, transparent 1px);
    background-size: 9px 9px;
    opacity: 0.45;
    pointer-events: none;
}

.bsh-engagement-story__container {
    position: relative;
    z-index: 2;
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 32px;
}

.bsh-engagement-story__grid {
    position: relative;
    display: grid;
    grid-template-columns: 1.05fr 1fr;
    gap: 68px;
    align-items: start;
}

.bsh-engagement-story__image {
    margin: 0;
    overflow: hidden;
    border-top-left-radius: 50%;
    border-bottom-right-radius: 50%;
}

.bsh-engagement-story__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.bsh-engagement-story__image--left {
    aspect-ratio: 1 / 1;
    grid-column: 1;
    grid-row: 1;
    max-width: 76%;
    justify-self: start;
    border-top-left-radius: 0;
}

.bsh-engagement-story__bottom {
    grid-column: 1;
    grid-row: 2;
    margin-top: 8px;
    max-width: 720px;
}

.bsh-engagement-story__content-top {
    grid-column: 2;
    grid-row: 1 / span 2;
    position: relative;
    z-index: 2;
    padding-top: 58px;
}

.bsh-engagement-story__kicker {
    color: var(--bsh-es-orange);
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 0.08em;
    font-size: 13px;
    margin-bottom: 12px;
}

.bsh-engagement-story__title {
    margin: 0 0 14px;
    color: var(--bsh-es-text);
    font-size: clamp(28px, 4vw, 42px);
    line-height: 1.2;
    font-weight: 700;
    max-width: 90%;
}

.bsh-engagement-story__text {
    color: var(--bsh-es-text);
    font-size: 16px;
    line-height: 1.75;
    max-width: 85%;
}

.bsh-engagement-story__text p {
    margin: 0 0 16px;
}

.bsh-engagement-story__text p:last-child {
    margin-bottom: 0;
}

.bsh-engagement-story__image--right {
    margin-top: 120px !important;
    height: 450px;
}

.bsh-engagement-story__seal {
    position: absolute;
    left: 45%;
    top: 72%;
    width: 170px;
    height: 170px;
    transform: translate(-50%, -50%);
    z-index: 3;
    pointer-events: none;
}

.bsh-engagement-story__seal svg {
    width: 100%;
    height: 100%;
    display: block;
    animation: bshEngagementSpin 15s linear infinite;
}

.bsh-engagement-story__seal text {
    fill: #111;
    font-size: 18px;
    letter-spacing: 2.4px;
    text-transform: uppercase;
    font-weight: 600;
}

.bsh-engagement-story__text--bottom {
    max-width: 100%;
}

.bsh-engagement-story__btn {
    display: inline-block;
    margin-top: 10px;
    padding: 12px 24px;
    background: var(--bsh-es-orange);
    color: #fff;
    text-transform: uppercase;
    font-size: 16px;
    letter-spacing: 0.08em;
    font-weight: 700;
    text-decoration: none;
    white-space: nowrap;
    box-shadow: 0 4px 14px rgba(232, 122, 30, .25);
    transition: all 1s ease;
    border-top-left-radius: 50px;
    border-top-right-radius: 0;
    border-bottom-right-radius: 50px;
    border-bottom-left-radius: 0;
}

.bsh-engagement-story__btn:hover,
.bsh-engagement-story__btn:focus-visible {
    background: var(--bsh-es-blue-dark);
    transform: translateY(-2px);
    filter: brightness(1.06);
    box-shadow: 0 6px 22px rgba(232, 122, 30, .4);
    border-top-left-radius: 0;
    border-top-right-radius: 50px;
    border-bottom-right-radius: 0;
    border-bottom-left-radius: 50px;
}

@keyframes bshEngagementSpin {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

@media (min-width: 2000px) {
    .bsh-engagement-story__seal {
        top: 55%;
    }
}

@media (max-width: 1200px) {
    .bsh-engagement-story__grid {
        gap: 44px;
    }

    .bsh-engagement-story__seal {
        left: 43%;
        top: 71%;
        width: 150px;
        height: 150px;
    }
}

@media (max-width: 960px) {
    .bsh-engagement-story {
        padding: 64px 0;
    }

    .bsh-engagement-story__grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .bsh-engagement-story__image--left,
    .bsh-engagement-story__content-top,
    .bsh-engagement-story__bottom {
        grid-column: auto;
        grid-row: auto;
    }

    .bsh-engagement-story__content-top {
        padding-top: 0;
    }

    .bsh-engagement-story__image--left {
        min-height: 0;
        max-width: 100%;
        order: 1;
    }

    .bsh-engagement-story__bottom {
        order: 3;
    }

    .bsh-engagement-story__content-top {
        order: 2;
    }

    .bsh-engagement-story__image--right {
        margin-top: 64px !important;
        height: 450px;
    }

    .bsh-engagement-story__seal {
        display: none;
    }

    .bsh-engagement-story__bottom { max-width: none; }

    .bsh-engagement-story__text,
    .bsh-engagement-story__text--bottom {
        max-width: 100%;
    }
}

@media (max-width: 600px) {
    .bsh-engagement-story {
        padding: 44px 0;
    }

    .bsh-engagement-story__container {
        padding: 0 18px;
    }

    .bsh-engagement-story__grid {
        gap: 24px;
    }

    .bsh-engagement-story__image--left {
        aspect-ratio: 4 / 5;
        border-top-left-radius: 40%;
        border-bottom-right-radius: 40%;
    }

    .bsh-engagement-story__image--right {
        margin-top: 32px !important;
        height: 350px;
        min-height: 220px;
        max-height: 350px;
        border-top-left-radius: 40%;
        border-bottom-right-radius: 40%;
    }

    .bsh-engagement-story__title {
        font-size: 24px;
        max-width: 100%;
    }

    .bsh-engagement-story__text,
    .bsh-engagement-story__text--bottom {
        font-size: 15px;
        line-height: 1.7;
    }

    .bsh-engagement-story__btn {
        padding: 12px 24px;
        font-size: 13px;
        width: 100%;
        text-align: center;
        justify-content: center;
    }
}
