.banner-hero-section {
    background: var(--color-neutral-900);
}

.banner-hero-slide {
    position: relative;
    min-height: 100vh;
    justify-content: center;
}

.banner-hero-slide .content-img {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.banner-hero-slide .content-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.banner-hero-slide::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to right,
        rgba(0, 0, 0, 0.72) 0%,
        rgba(0, 0, 0, 0.4) 55%,
        rgba(0, 0, 0, 0.1) 100%
    );
    z-index: 1;
}

.banner-hero-cta {
    position: relative;
    z-index: 2;
    color: #fff;
}

.banner-hero-cta__sub {
    max-width: 400px;
}

.carousel-banner-hero {
    position: relative;
}

.banner-hero-controls {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 4;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 0.75rem 1rem;
    padding-bottom: clamp(1rem, 3vw, 2.25rem);
    pointer-events: none;
}

.banner-hero-controls .banner-hero-nav {
    pointer-events: auto;
}

.banner-hero-nav {
    display: inline-flex;
    align-items: center;
    gap: 0.65rem 0.85rem;
    max-width: min(100%, 320px);
    margin: 0;
    padding: 0.4rem 0.55rem 0.4rem 0.65rem;
    border: 1px solid rgba(255, 255, 255, 0.126);
    border-radius: 2px;
    background: rgba(13, 17, 23, 0.083);
    color: #fff;
    font-family: inherit;
    font-size: 0.9375rem;
    font-weight: 700;
    line-height: 1.2;
    text-align: left;
    text-transform: uppercase;
    letter-spacing: 0.02em;
    cursor: pointer;
    transition: background 0.2s ease, border-color 0.2s ease;
}

.banner-hero-nav--next {
    padding: 0.4rem 0.65rem 0.4rem 0.55rem;
    text-align: right;
}

.banner-hero-nav:hover,
.banner-hero-nav:focus-visible {
    background: rgba(0, 44, 95, 0.118);
    border-color: rgba(255, 255, 255, 0.45);
    color: #fff;
    outline: none;
}

.banner-hero-nav:focus-visible {
    box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.35);
}

.banner-hero-nav__arrow {
    display: flex;
    flex-shrink: 0;
    align-items: center;
    justify-content: center;
    width: 2rem;
    height: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.35);
    background: rgba(0, 0, 0, 0.25);
}

.banner-hero-nav__arrow img {
    display: block;
    width: 7px;
    height: 11px;
    filter: brightness(0) invert(1);
}

.banner-hero-nav__title {
    flex: 1 1 auto;
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.banner-hero-nav__thumb {
    flex-shrink: 0;
    width: 3.25rem;
    height: 3.25rem;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.banner-hero-nav__thumb img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@media screen and (max-width: 768px) {
    .banner-hero-slide {
        min-height: 60vh;
    }
    .banner-hero-slide::after {
        background: linear-gradient(
            to top,
            rgba(0, 0, 0, 0.82) 0%,
            rgba(0, 0, 0, 0.45) 55%,
            rgba(0, 0, 0, 0.15) 100%
        );
    }
}

@media screen and (max-width: 576px) {
    .banner-hero-slide {
        min-height: 50vh;
    }

    .banner-hero-controls {
        padding-bottom: 1rem;
    }

    .banner-hero-nav {
        max-width: calc(50% - 0.35rem);
        gap: 0.35rem 0.45rem;
        padding: 0.35rem 0.4rem;
        font-size: 0.6875rem;
    }

    .banner-hero-nav--next {
        padding: 0.35rem 0.4rem;
    }

    .banner-hero-nav__arrow {
        width: 1.65rem;
        height: 1.65rem;
    }

    .banner-hero-nav__thumb {
        width: 2.5rem;
        height: 2.5rem;
    }
}
