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

.banner-hero-slide {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: start;
    padding-top: 10rem;
    padding-left: 4rem;
}

.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;
    padding: 2rem 2rem 2rem 4rem;
    color: #fff;
    max-width: 640px;
}

@media screen and (max-width: 999px) {
    .banner-hero-slide {
        padding-top: 7rem;
        padding-left: 2rem;
    }
    .banner-hero-cta {
        max-width: 520px;
        padding-left: 2rem;
    }
}

@media screen and (max-width: 768px) {
    .banner-hero-slide {
        min-height: 60vh;
        padding-top: 5rem;
        padding-left: 0;
        align-items: end;
    }
    .banner-hero-cta {
        padding: 2rem 1.5rem 2.5rem 1.5rem;
        max-width: 100%;
    }
    .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-cta { padding: 2rem 1rem 2rem 1rem; }
}
