.fbn-banner,
.fbn-banner * {
    box-sizing: border-box;
}

.fbn-banner {
    --fbn-desktop-height: 600px;
    --fbn-mobile-height: 320px;
    --fbn-content-max-width: min(92%, 640px);
    --fbn-content-padding: clamp(1.25rem, 3vw, 2.5rem);
    --fbn-text-color: #ffffff;
    --fbn-button-bg: #ffffff;
    --fbn-button-text: #111111;
    --fbn-shadow-color: rgba(0, 0, 0, 0.28);
    --fbn-overlay-low: rgba(0, 0, 0, 0.18);
    --fbn-overlay-medium: rgba(0, 0, 0, 0.34);
    --fbn-overlay-high: rgba(0, 0, 0, 0.54);
    position: relative;
    width: 100%;
    min-height: var(--fbn-mobile-height);
    overflow: hidden;
    isolation: isolate;
    background: #0f0f0f;
}

.fbn-banner a,
.fbn-banner button,
.fbn-banner h2,
.fbn-banner p {
    font: inherit;
}

.fbn-banner-slider,
.fbn-banner-slides,
.fbn-slide,
.fbn-media,
.fbn-image {
    width: 100%;
    min-height: var(--fbn-mobile-height);
    height: var(--fbn-mobile-height);
}

.fbn-banner-slider,
.fbn-banner-slides {
    position: relative;
}

.fbn-slide {
    position: relative;
    overflow: hidden;
    background: #111111;
}

.fbn-media {
    display: block;
}

.fbn-image {
    display: block;
    object-fit: cover;
    object-position: center;
}

.fbn-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
}

.fbn-overlay--low {
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.04) 0%, var(--fbn-overlay-low) 100%);
}

.fbn-overlay--medium {
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.08) 0%, var(--fbn-overlay-medium) 100%);
}

.fbn-overlay--high {
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.12) 0%, var(--fbn-overlay-high) 100%);
}

.fbn-content {
    position: absolute;
    inset: auto 0 0 0;
    z-index: 2;
    display: grid;
    gap: 0.8rem;
    width: 100%;
    max-width: var(--fbn-content-max-width);
    padding: var(--fbn-content-padding);
    color: var(--fbn-text-color);
    text-shadow: 0 2px 18px var(--fbn-shadow-color);
}

.fbn-heading {
    margin: 0;
    color: inherit;
    font-size: clamp(1.7rem, 4.5vw, 3.4rem);
    font-weight: 700;
    line-height: 1.05;
    letter-spacing: -0.03em;
}

.fbn-description {
    margin: 0;
    max-width: 56ch;
    color: rgba(255, 255, 255, 0.92);
    font-size: clamp(0.95rem, 1.8vw, 1.08rem);
    line-height: 1.6;
}

.fbn-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: fit-content;
    min-width: 140px;
    min-height: 46px;
    padding: 0.75rem 1.2rem;
    border-radius: 999px;
    background: var(--fbn-button-bg);
    color: var(--fbn-button-text);
    font-size: 0.95rem;
    font-weight: 600;
    line-height: 1;
    text-decoration: none;
    transition: transform 180ms ease, box-shadow 180ms ease, background-color 180ms ease;
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.18);
}

.fbn-button:hover,
.fbn-button:focus-visible {
    transform: translateY(-1px);
    box-shadow: 0 18px 28px rgba(0, 0, 0, 0.24);
}

.fbn-button:focus-visible,
.fbn-banner-arrow:focus-visible {
    outline: 2px solid #ffffff;
    outline-offset: 2px;
}

.fbn-banner-pagination {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 1rem;
    z-index: 3;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.45rem;
    width: 100%;
    margin: 0;
    transform: none;
    text-align: center;
}

.fbn-banner .swiper-pagination-bullet {
    flex: 0 0 auto;
    width: 10px;
    height: 10px;
    margin: 0;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.45);
    opacity: 1;
    transition: transform 180ms ease, background-color 180ms ease;
}

.fbn-banner .swiper-pagination-bullet-active {
    transform: scale(1.15);
    background: #ffffff;
}

.fbn-banner button.fbn-banner-arrow {
    position: absolute;
    top: 50%;
    z-index: 3;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    width: 46px;
    min-width: 46px;
    height: 46px;
    min-height: 46px;
    margin: 0;
    padding: 0;
    border: 0;
    border-radius: 999px;
    background: rgba(17, 17, 17, 0.5);
    box-shadow: none;
    color: transparent;
    font-size: 0;
    line-height: 0;
    appearance: none;
    -webkit-appearance: none;
    cursor: pointer;
    transform: translateY(-50%);
    transition: background-color 180ms ease, transform 180ms ease;
    backdrop-filter: blur(6px);
}

.fbn-banner button.fbn-banner-arrow:hover,
.fbn-banner button.fbn-banner-arrow:focus-visible {
    background: rgba(17, 17, 17, 0.72);
}

.fbn-banner button.fbn-banner-arrow:hover,
.fbn-banner button.fbn-banner-arrow:focus-visible,
.fbn-banner button.fbn-banner-arrow:active {
    box-shadow: none;
    transform: translateY(-50%);
}

.fbn-banner button.fbn-banner-arrow::before {
    content: "";
    display: block;
    width: 11px;
    height: 11px;
    border-top: 2px solid #ffffff;
    border-right: 2px solid #ffffff;
}

.fbn-banner button.fbn-banner-arrow--prev {
    left: 1rem;
}

.fbn-banner button.fbn-banner-arrow--prev::before {
    transform: rotate(-135deg);
}

.fbn-banner button.fbn-banner-arrow--next {
    right: 1rem;
}

.fbn-banner button.fbn-banner-arrow--next::before {
    transform: rotate(45deg);
}

.fbn-banner--single .fbn-content {
    max-width: min(94%, 720px);
}

.fbn-banner .swiper-button-disabled {
    opacity: 0.35;
    cursor: default;
    pointer-events: none;
}

@media (min-width: 768px) {
    .fbn-banner {
        min-height: var(--fbn-desktop-height);
    }

    .fbn-banner-slider,
    .fbn-banner-slides,
    .fbn-slide,
    .fbn-media,
    .fbn-image {
        min-height: var(--fbn-desktop-height);
        height: var(--fbn-desktop-height);
    }

    .fbn-content {
        inset: auto auto 0 0;
    }

    .fbn-banner-pagination {
        bottom: 1.4rem;
    }

    .fbn-banner button.fbn-banner-arrow--prev {
        left: 1.5rem;
    }

    .fbn-banner button.fbn-banner-arrow--next {
        right: 1.5rem;
    }
}

@media (max-width: 767px) {
    .fbn-banner {
        min-height: var(--fbn-mobile-height);
    }

    .fbn-content {
        max-width: 100%;
        gap: 0.7rem;
        padding-right: calc(var(--fbn-content-padding) + 0.25rem);
    }

    .fbn-heading {
        max-width: 14ch;
    }

    .fbn-description {
        max-width: 100%;
        font-size: 0.95rem;
    }

    .fbn-button {
        min-width: 128px;
        min-height: 44px;
    }

    .fbn-banner button.fbn-banner-arrow {
        display: none;
    }
}
