/* FC HP Hero Banner — one server-selected responsive hero per request; no slider DOM/JS. */
.fcwlhero-bricks-element {
    width: 100% !important;
    max-width: 100% !important;
    min-width: 0;
}

.fcwlhero {
    position: relative;
    width: 100%;
    max-width: 100%;
    height: var(--fcwlhero-height-desktop, 600px);
    min-height: var(--fcwlhero-height-desktop, 600px);
    overflow: hidden;
    isolation: isolate;
    box-sizing: border-box;
    background: #c8c8c8;
    /* 6.0.557: desktop is the base focal point; tablet/mobile replace these
       variables at their breakpoints without changing the image source logic. */
    --fcwlhero-image-x: var(--fcwlhero-image-x-desktop, 50%);
    --fcwlhero-image-y: var(--fcwlhero-image-y-desktop, 50%);
    --fcwlhero-image-zoom: var(--fcwlhero-image-zoom-desktop, 1);
}

.fcwlhero-picture,
.fcwlhero-image,
.fcwlhero-overlay,
.fcwlhero-content,
.fcwlhero-placeholder {
    box-sizing: border-box;
}

.fcwlhero-picture {
    position: absolute;
    inset: 0;
    z-index: 0;
    display: block;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.fcwlhero-image {
    display: block;
    border: 0;
    margin: 0;
    padding: 0;
    user-select: none;
    -webkit-user-drag: none;
}

/* Mirrors the current homepage hero geometry: image is kept at banner height,
   centred on the focal point, and wide viewports show the banner background
   in the side gutters instead of stretching the source image. */
.fcwlhero-fit-natural .fcwlhero-image {
    position: absolute;
    left: var(--fcwlhero-image-x, 50%);
    top: var(--fcwlhero-image-y, 50%);
    width: auto;
    max-width: none !important;
    height: 100%;
    max-height: none;
    object-fit: contain;
    transform: translate(-50%, -50%) scale(var(--fcwlhero-image-zoom, 1));
    transform-origin: center center;
    will-change: transform;
}

.fcwlhero-fit-cover .fcwlhero-image,
.fcwlhero-fit-contain .fcwlhero-image {
    position: absolute;
    inset: 0;
    width: 100%;
    max-width: none !important;
    height: 100%;
    max-height: none;
    object-position: var(--fcwlhero-image-x, 50%) var(--fcwlhero-image-y, 50%);
    transform: scale(var(--fcwlhero-image-zoom, 1));
    transform-origin: var(--fcwlhero-image-x, 50%) var(--fcwlhero-image-y, 50%);
    will-change: transform;
}

.fcwlhero-fit-cover .fcwlhero-image {
    object-fit: cover;
}

.fcwlhero-fit-contain .fcwlhero-image {
    object-fit: contain;
}

.fcwlhero-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    display: var(--fcwlhero-overlay-display, block);
    pointer-events: none;
}

/* Hard OFF state. Even stale/generated Bricks overlay declarations cannot leave
   a dark layer behind once the overlay is disabled. */
.fcwlhero-image-overlay-disabled .fcwlhero-overlay {
    display: none !important;
    visibility: hidden !important;
    opacity: 0 !important;
    background: none !important;
    background-image: none !important;
}

.fcwlhero-image-overlay-enabled .fcwlhero-overlay {
    visibility: visible;
}

/* Bricks-style overlay: a distinct visual layer above the image and below content. */
.fcwlhero-overlay-solid {
    background-color: var(--fcwlhero-overlay-color, #000000) !important;
    opacity: var(--fcwlhero-overlay-opacity, .08);
}

.fcwlhero-overlay-linear {
    background-color: transparent !important;
    background-image: var(--fcwlhero-overlay-gradient, none) !important;
    opacity: 1;
}

.fcwlhero-content {
    position: absolute;
    inset: 0;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: var(--fcwlhero-h-desktop, start);
    justify-content: var(--fcwlhero-v-desktop, center);
    text-align: var(--fcwlhero-h-desktop, start);
    padding: 40px var(--fcwlhero-pad-desktop, 52px);
    pointer-events: none;
}

/* 6.0.555: position is controlled independently by viewport through CSS
   variables. Historical fcwlhero-h-* / fcwlhero-v-* classes remain in markup
   only for backward compatibility with page-specific selectors. */

.fcwlhero-content-inner {
    width: min(100%, var(--fcwlhero-content-width, 560px));
    max-width: 100%;
    pointer-events: auto;
}

.fcwlhero-copy {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: var(--fcwlhero-text-gap-desktop, 26px);
    width: 100%;
    max-width: 100%;
    isolation: isolate;
}

.fcwlhero-heading,
.fcwlhero-subtitle,
.fcwlhero-description {
    /* 6.0.553: same letter-level outline/shadow on desktop, tablet, and mobile. */
    text-shadow: var(--fcwlhero-text-shadow, none) !important;
}

.fcwlhero-heading {
    margin: 0;
    padding: 0;
    color: #fff;
    font-size: var(--fcwlhero-heading-size, 52px);
    line-height: 1.08;
    font-weight: var(--fcwlhero-heading-font-weight, 700);
    letter-spacing: 0;
    text-wrap: balance;
}

.fcwlhero-subtitle,
.fcwlhero-description {
    margin: 0;
    padding: 0;
    color: #fff;
}

.fcwlhero-subtitle {
    font-size: var(--fcwlhero-subtitle-size, 26px);
    line-height: 1.25;
    font-weight: var(--fcwlhero-subtitle-font-weight, 400);
}

.fcwlhero-description {
    font-size: var(--fcwlhero-description-size, 17px);
    line-height: 1.45;
    font-weight: var(--fcwlhero-description-font-weight, 400);
}

.fcwlhero-button {
    position: relative;
    isolation: isolate;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: auto;
    min-width: min(100%, var(--fcwlhero-button-min-width, 280px));
    min-height: var(--fcwlhero-button-height, 48px);
    margin-top: 20px;
    padding: 8px 28px;
    overflow: hidden;
    border: 1px solid var(--fcwlhero-button-border, #171714);
    border-radius: var(--fcwlhero-button-radius, 0px);
    background: transparent !important;
    color: var(--fcwlhero-button-text, #fff);
    font-size: var(--fcwlhero-button-font-size, 14px);
    line-height: 1.2;
    font-weight: var(--fcwlhero-button-font-weight, 700);
    letter-spacing: var(--fcwlhero-button-letter-spacing, 2px);
    text-decoration: none !important;
    box-shadow: none;
    transform: translateZ(0);
    backface-visibility: hidden;
    transition:
        color var(--fcwlhero-button-hover-speed, 360ms) cubic-bezier(.22,.75,.22,1),
        border-color var(--fcwlhero-button-hover-speed, 360ms) cubic-bezier(.22,.75,.22,1),
        background-color var(--fcwlhero-button-hover-speed, 360ms) cubic-bezier(.22,.75,.22,1),
        transform var(--fcwlhero-button-hover-speed, 360ms) cubic-bezier(.22,.75,.22,1),
        box-shadow var(--fcwlhero-button-hover-speed, 360ms) cubic-bezier(.22,.75,.22,1);
}

.fcwlhero-button-uppercase .fcwlhero-button {
    text-transform: uppercase;
}

.fcwlhero-button-base,
.fcwlhero-button-overlay,
.fcwlhero-button-animation {
    position: absolute;
    inset: 0;
    border-radius: inherit;
    pointer-events: none;
}

.fcwlhero-button-base {
    z-index: 0;
    background-color: var(--fcwlhero-button-bg, #171714) !important;
    opacity: var(--fcwlhero-button-bg-opacity, 1);
}

/* Independent overlay layer: changing its opacity never fades the button text. */
.fcwlhero-button-overlay {
    z-index: 1;
    background-color: var(--fcwlhero-button-overlay-bg, #000000) !important;
    opacity: var(--fcwlhero-button-overlay-opacity, 0);
}

.fcwlhero:not(.fcwlhero-button-overlay-enabled) .fcwlhero-button-overlay {
    opacity: 0 !important;
}

.fcwlhero-button-animation {
    z-index: 2;
    background-color: var(--fcwlhero-button-animation-bg, #ffffff) !important;
    opacity: var(--fcwlhero-button-animation-opacity, 1);
    transform: translate3d(-104%, 0, 0);
    will-change: transform, opacity;
    transition:
        transform var(--fcwlhero-button-hover-speed, 360ms) cubic-bezier(.22,.75,.22,1),
        opacity var(--fcwlhero-button-hover-speed, 360ms) cubic-bezier(.22,.75,.22,1);
}

.fcwlhero-button-label {
    position: relative;
    z-index: 3;
    display: block;
    pointer-events: none;
    opacity: 1 !important;
    color: var(--fcwlhero-button-text, #fff) !important;
    -webkit-text-fill-color: currentColor !important;
    mix-blend-mode: normal;
    transition: color var(--fcwlhero-button-hover-speed, 360ms) cubic-bezier(.22,.75,.22,1);
}

.fcwlhero-button:hover,
.fcwlhero-button:focus-visible {
    border-color: var(--fcwlhero-button-hover-border, #171714);
}

/* Keep CTA text fully opaque/readable above translucent hover layers. */
.fcwlhero-button:hover .fcwlhero-button-label,
.fcwlhero-button:focus-visible .fcwlhero-button-label {
    opacity: 1 !important;
    color: var(--fcwlhero-button-hover-text, #fff) !important;
    -webkit-text-fill-color: currentColor !important;
}

/* Default-safe CTA behavior: when enabled in Bricks, the label is always solid white
   above the base, overlay and moving animation layers. */
.fcwlhero-button-hover-white .fcwlhero-button:hover .fcwlhero-button-label,
.fcwlhero-button-hover-white .fcwlhero-button:focus-visible .fcwlhero-button-label {
    opacity: 1 !important;
    color: #fff !important;
    -webkit-text-fill-color: #fff !important;
}

/* BKIND-inspired restrained sweep: the animation colour physically travels across the CTA. */
.fcwlhero-button-effect-sweep .fcwlhero-button-animation {
    width: 122%;
    left: -11%;
    right: auto;
    transform: translate3d(-112%, 0, 0) skewX(-10deg);
}

.fcwlhero-button-effect-sweep .fcwlhero-button:hover .fcwlhero-button-animation,
.fcwlhero-button-effect-sweep .fcwlhero-button:focus-visible .fcwlhero-button-animation {
    transform: translate3d(0, 0, 0) skewX(-10deg);
}

.fcwlhero-button-effect-fill-left .fcwlhero-button-animation {
    transform: translate3d(-104%, 0, 0);
}

.fcwlhero-button-effect-fill-left .fcwlhero-button:hover .fcwlhero-button-animation,
.fcwlhero-button-effect-fill-left .fcwlhero-button:focus-visible .fcwlhero-button-animation {
    transform: translate3d(0, 0, 0);
}

.fcwlhero-button-effect-fill-right .fcwlhero-button-animation {
    transform: translate3d(104%, 0, 0);
}

.fcwlhero-button-effect-fill-right .fcwlhero-button:hover .fcwlhero-button-animation,
.fcwlhero-button-effect-fill-right .fcwlhero-button:focus-visible .fcwlhero-button-animation {
    transform: translate3d(0, 0, 0);
}

/* Non-directional hover modes use a smooth colour-layer fade. */
.fcwlhero-button-effect-invert .fcwlhero-button-animation,
.fcwlhero-button-effect-lift .fcwlhero-button-animation,
.fcwlhero-button-effect-press .fcwlhero-button-animation,
.fcwlhero-button-effect-none .fcwlhero-button-animation {
    transform: none;
    opacity: 0;
}

.fcwlhero-button-effect-invert .fcwlhero-button:hover .fcwlhero-button-animation,
.fcwlhero-button-effect-invert .fcwlhero-button:focus-visible .fcwlhero-button-animation,
.fcwlhero-button-effect-lift .fcwlhero-button:hover .fcwlhero-button-animation,
.fcwlhero-button-effect-lift .fcwlhero-button:focus-visible .fcwlhero-button-animation,
.fcwlhero-button-effect-press .fcwlhero-button:hover .fcwlhero-button-animation,
.fcwlhero-button-effect-press .fcwlhero-button:focus-visible .fcwlhero-button-animation,
.fcwlhero-button-effect-none .fcwlhero-button:hover .fcwlhero-button-animation,
.fcwlhero-button-effect-none .fcwlhero-button:focus-visible .fcwlhero-button-animation {
    opacity: var(--fcwlhero-button-animation-opacity, 1);
}

.fcwlhero-button-effect-lift .fcwlhero-button:hover,
.fcwlhero-button-effect-lift .fcwlhero-button:focus-visible {
    transform: translateY(-3px);
    box-shadow: 0 10px 22px rgba(0,0,0,.16);
}

.fcwlhero-button-effect-press .fcwlhero-button:hover,
.fcwlhero-button-effect-press .fcwlhero-button:focus-visible {
    transform: translateY(2px) scale(.99);
}

.fcwlhero-button-preview {
    cursor: default;
}

.fcwlhero-placeholder {
    position: absolute;
    inset: 0;
    z-index: 0;
    display: grid;
    place-items: center;
    padding: 24px;
    color: #002e25;
    background: #eef2f1;
    text-align: center;
    font-size: 16px;
}

@media (max-width: 992px) {
    .fcwlhero {
        height: var(--fcwlhero-height-tablet, 600px);
        min-height: var(--fcwlhero-height-tablet, 600px);
        --fcwlhero-image-x: var(--fcwlhero-image-x-tablet, var(--fcwlhero-image-x-desktop, 50%));
        --fcwlhero-image-y: var(--fcwlhero-image-y-tablet, var(--fcwlhero-image-y-desktop, 50%));
        --fcwlhero-image-zoom: var(--fcwlhero-image-zoom-tablet, var(--fcwlhero-image-zoom-desktop, 1));
    }

    .fcwlhero-content {
        align-items: var(--fcwlhero-h-tablet, var(--fcwlhero-h-desktop, start));
        justify-content: var(--fcwlhero-v-tablet, var(--fcwlhero-v-desktop, center));
        text-align: var(--fcwlhero-h-tablet, var(--fcwlhero-h-desktop, start));
        padding-left: max(28px, var(--fcwlhero-pad-mobile, 20px));
        padding-right: max(28px, var(--fcwlhero-pad-mobile, 20px));
    }

    .fcwlhero-copy {
        gap: var(--fcwlhero-text-gap-tablet, 20px);
    }

    .fcwlhero-heading {
        font-size: var(--fcwlhero-heading-size-tablet, 42px);
    }

    .fcwlhero-subtitle {
        font-size: var(--fcwlhero-subtitle-size-tablet, 22px);
    }

    .fcwlhero-description {
        font-size: var(--fcwlhero-description-size-tablet, 16px);
    }
}

@media (max-width: 767px) {
    .fcwlhero {
        height: var(--fcwlhero-height-mobile, 600px);
        min-height: var(--fcwlhero-height-mobile, 600px);
        --fcwlhero-image-x: var(--fcwlhero-image-x-mobile, var(--fcwlhero-image-x-tablet, var(--fcwlhero-image-x-desktop, 50%)));
        --fcwlhero-image-y: var(--fcwlhero-image-y-mobile, var(--fcwlhero-image-y-tablet, var(--fcwlhero-image-y-desktop, 50%)));
        --fcwlhero-image-zoom: var(--fcwlhero-image-zoom-mobile, var(--fcwlhero-image-zoom-tablet, var(--fcwlhero-image-zoom-desktop, 1)));
    }

    .fcwlhero-content {
        align-items: var(--fcwlhero-h-mobile, var(--fcwlhero-h-tablet, var(--fcwlhero-h-desktop, start)));
        justify-content: var(--fcwlhero-v-mobile, var(--fcwlhero-v-tablet, var(--fcwlhero-v-desktop, center)));
        text-align: var(--fcwlhero-h-mobile, var(--fcwlhero-h-tablet, var(--fcwlhero-h-desktop, start)));
        padding: 24px var(--fcwlhero-pad-mobile, 20px);
    }

    .fcwlhero-content-inner {
        width: min(100%, var(--fcwlhero-content-width, 560px));
    }

    .fcwlhero-copy {
        gap: var(--fcwlhero-text-gap-mobile, 14px);
    }

    .fcwlhero-heading {
        font-size: var(--fcwlhero-heading-size-mobile, 34px);
        line-height: 1.1;
    }

    .fcwlhero-subtitle {
        font-size: var(--fcwlhero-subtitle-size-mobile, 19px);
        line-height: 1.3;
    }

    .fcwlhero-description {
        font-size: var(--fcwlhero-description-size-mobile, 15px);
        line-height: 1.4;
    }

    .fcwlhero-button {
        max-width: 100%;
        min-width: min(100%, var(--fcwlhero-button-min-width, 280px));
        min-height: min(var(--fcwlhero-button-height, 48px), 52px);
        margin-top: 16px;
        padding-left: 18px;
        padding-right: 18px;
        font-size: min(var(--fcwlhero-button-font-size, 14px), 16px);
    }
}

/* FC HP Hero 6.0.553: no rectangular text scrim; letter outline/shadow is available on every viewport. */

/* FC HP Hero 6.0.555: Desktop/Tablet/Mobile heights are direct independent controls with 600px defaults, and text position can be set independently per viewport. */

/* FC HP Hero 6.0.557: image horizontal/vertical focal points are independent on desktop, tablet, and mobile. */

/* FC HP Hero 6.0.558: true image zoom is independent on desktop, tablet, and mobile; 100% preserves the previous geometry. */
