/* Banner Cropped Component */
.banner-cropped-wrapper {
    position: relative;
    width: 85vw;
    height: 26vw;
    margin: 0 auto;
    overflow: visible;
    margin-top: -46px;
}

/* SVG Container */
.banner-cropped-svg {
    width: 100%;
    height: 100%;
    display: block;
}

/* Legacy banner-cropped class (if still used elsewhere) */
.banner-cropped {
    bottom: auto;
    width: 85vw;
    height: 26vw;
    position: relative;
    top: -46px;
}



/* Title Styling */
.banner-cropped-title {
    position: absolute;
    bottom: 22%;
    left: 5%;
    color: var(--white);
    font-size: var(--font-size-26);
    font-weight: bold;
    z-index: 10;
}

/* Legacy banner text (if still used elsewhere) */
.banner-text-cropped {
    bottom: 36px;
    left: 55px;
    position: relative;

    color: var(--white);
    font-size: var(--font-size-38);
    font-weight: bold;
    z-index: 2;
}

/* Superposition d'un léger filtre noir transparent (legacy) */
.banner-cropped::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.1);
}


@media (min-width: 1024px) {
    .banner-cropped-wrapper {
        width: 874px;
        height: 212px;
        margin-top: 0;
        margin-bottom: 30px;
    }

    .banner-cropped {
        width: auto;
        height: auto;
        position: static;
        top: auto;
    }

    .banner-cropped-title {
        bottom: 30px;
        left: 393px;
        font-size: var(--font-size-48);
    }
}