.bshVideoGallery {
    position: relative;
    display: flex;
    min-height: clamp(720px, 88svh, 920px);
    align-items: center;
    overflow: hidden;
    isolation: isolate;
    color: var(--bsh-color-white);
    background: var(--bsh-color-pastel-2);
}

.bshVideoGallery__media {
    position: absolute;
    top: -16%;
    right: 0;
    left: 0;
    height: 132%;
    will-change: transform;
}

.bshVideoGallery__media--fixed {
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.bshVideoGallery__shade {
    position: absolute;
    inset: 0;
}

.bshVideoGallery__image {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.01);
    transition: transform 1.5s cubic-bezier(.22, 1, .36, 1);
}

.bshVideoGallery:hover .bshVideoGallery__image {
    transform: scale(1.035);
}

.bshVideoGallery__shade {
    z-index: 1;
    background:
        linear-gradient(90deg, rgb(22 19 18 / calc(var(--bsh-video-gallery-overlay, .46) * .72)), transparent 56%),
        linear-gradient(180deg, rgb(22 19 18 / .12), rgb(22 19 18 / var(--bsh-video-gallery-overlay, .46)));
}

.bshVideoGallery__inner {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: minmax(0, 1.35fr) minmax(320px, .75fr);
    align-items: center;
    gap: clamp(56px, 7vw, 140px);
    padding-block: var(--bsh-section-y-rich);
}

.bshVideoGallery__heading {
    display: block;
}

.bshVideoGallery :is(h1, h2) {
    max-width: 980px;
    margin: 0;
    color: inherit;
    font-size: var(--bsh-fs-display);
    font-weight: 400;
    line-height: .9;
    letter-spacing: -.06em;
    text-transform: uppercase;
    text-wrap: balance;
}

.bshVideoGallery .bshSubtitle {
    margin: 10px 0 0;
    color: var(--bsh-color-pastel-1);
}

.bshVideoGallery__content {
    display: flex;
    align-items: flex-start;
    flex-direction: column;
    gap: clamp(38px, 4vw, 64px);
}

.bshVideoGallery__content > p {
    max-width: 560px;
    margin: 0;
    color: rgb(255 255 255 / .88);
    font-size: var(--bsh-fs-body);
    line-height: 1.8;
}

.bshVideoGallery__action {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: clamp(104px, 8vw, 148px);
    aspect-ratio: 1;
    padding: 0;
    border: 0;
    border-radius: 50%;
    color: inherit;
    background: color-mix(in srgb, var(--bsh-color-pastel-1) 88%, transparent);
    box-shadow: 0 22px 55px rgb(28 23 21 / .22);
    cursor: pointer;
    text-decoration: none;
    backdrop-filter: blur(7px);
    transition: color var(--bsh-transition-fast), background var(--bsh-transition-fast), transform .55s cubic-bezier(.22, 1, .36, 1);
}

.bshVideoGallery__action::before {
    position: absolute;
    inset: -12px;
    border: 1px solid rgb(255 255 255 / .22);
    border-radius: inherit;
    content: '';
    opacity: 0;
    transform: scale(.9);
    transition: opacity .45s ease, transform .45s ease;
}

.bshVideoGallery__actionIcon {
    display: grid;
    place-items: center;
    transition: transform .55s cubic-bezier(.22, 1, .36, 1);
}

.bshVideoGallery__actionIcon svg {
    width: clamp(22px, 1.7vw, 30px);
    height: auto;
    fill: currentcolor;
    stroke-width: 1.5;
}

.bshVideoGallery__action:hover,
.bshVideoGallery__action:focus-visible {
    color: var(--bsh-color-white);
    background: var(--bsh-color-pastel-1);
    transform: scale(1.06);
}

.bshVideoGallery__action:hover::before,
.bshVideoGallery__action:focus-visible::before {
    opacity: 1;
    transform: scale(1);
}

.bshVideoGallery__action:hover .bshVideoGallery__actionIcon,
.bshVideoGallery__action:focus-visible .bshVideoGallery__actionIcon {
    transform: scale(1.08);
}

.bshVideoGallery__action:focus-visible {
    outline: 2px solid var(--bsh-color-white);
    outline-offset: 7px;
}

@media (max-width: 1050px) {
    .bshVideoGallery__inner {
        grid-template-columns: 1fr;
        align-content: center;
        gap: clamp(42px, 7vw, 72px);
    }

    .bshVideoGallery__content {
        max-width: 680px;
    }
}

@media (max-width: 767px) {
    .bshVideoGallery {
        min-height: 760px;
    }

    .bshVideoGallery__media {
        top: -10%;
        height: 120%;
    }

    .bshVideoGallery__inner {
        gap: 40px;
        padding-block: var(--bsh-section-y-rich);
    }

    .bshVideoGallery :is(h1, h2) {
        font-size: var(--bsh-fs-page-title);
        line-height: .92;
    }

    .bshVideoGallery__content {
        gap: 34px;
    }

    .bshVideoGallery__action {
        width: 88px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .bshVideoGallery__media {
        top: 0;
        height: 100%;
        transform: none !important;
        will-change: auto;
    }

    .bshVideoGallery__image,
    .bshVideoGallery__action,
    .bshVideoGallery__actionIcon,
    .bshVideoGallery__action::before {
        transition: none;
    }
}
