/* ==========================================================================
   HERO SECTION BASE STYLES
   ========================================================================== */

.actualites-full__hero {
    position: relative;
    border-radius: 0 0 0 4.37rem;
    /* max-height: 660px; */
    transform: translateY(calc(-5.31rem - 2rem));
}

.actualites-full__hero::before {
    content: '';
    position: absolute;
    top: 0;
    width: 100vw;
    left: 50%;
    right: 50%;
    bottom: 0;
    margin-left: -50vw;
    margin-right: -50vw;
    background-color: var(--color-primary--xclear);
    border-radius: 0 0 0 4.37rem;
    z-index: -1;
}

/* ==========================================================================
   TOOLBAR CONNECTED STATE
   ========================================================================== */

.toolbar-horizontal .actualites-full__hero {
    transform: translateY(calc(-8.12rem - 2rem));
    overflow: visible;
}

/* ==========================================================================
   HERO CONTENT LAYOUT
   ========================================================================== */

.actualites-full__hero--content {
    display: flex;
    flex-direction: column-reverse;
    align-items: flex-start;
    position: relative;
    overflow: visible;
    padding-top: 0;
    z-index: 1;
    width: 100%;
    margin: 0 0;
    padding-top: 9.5rem;
}

@media (min-width: 1000px) {
    .actualites-full__hero--content {
        flex-direction: row;
        justify-content: space-between;
        align-items: stretch;
        padding-top: 9.37rem;
        margin: 0 auto;
    }
}

/* ==========================================================================
   HERO TITLES
   ========================================================================== */

.actualites-full-hero--titles {
    margin-left: 1rem;
    margin-right: 1rem;
    margin-bottom: 3rem;
    max-width: 850px;
}

.actualites-full-hero-titles--breadcrumb > * {
    color: var(--color-neutral);
    font-family: Montserrat;
    font-size: 0.875rem;
    font-style: normal;
    font-weight: 500;
    margin: 0;
    margin-top: 0.75rem;
}

.actualites-full-hero-titles--main {
    color: var(--color-primary);
    font-family: Jost;
    text-transform: uppercase;
    font-size: var(--heading-size--l);
    font-weight: 800;
    margin-top: 0;
    line-height: 120%;
    margin-bottom: 2.81rem;
}

/* ==========================================================================
   CONTENT SECTION
   ========================================================================== */

.actualites-full__content {
    padding: 2rem 1rem;
}

.actualites-full__content--wrapper {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.actualites-full__content--text {
    order: 2;
}

.actualites-full__content--image {
    order: 1;
}

/* ==========================================================================
   DESKTOP STYLES
   ========================================================================== */

@media (min-width: 1000px) {
    .actualites-full__hero {
        border-radius: 0 0 0 25rem;
        /* max-height: 560px; */
        margin-bottom: -5.313rem; /* Adapté pour desktop */
    }

    .actualites-full__hero::before {
        border-radius: 0 0 0 25rem;
    }

    .actualites-full-hero--titles {
        padding-left: 0;
    }

    .actualites-full-hero-titles--breadcrumb > * {
        font-size: 1rem;
        margin-top: 1.56rem;
    }

    .actualites-full-hero-titles--main {
        font-weight: 600;
        margin-top: 1.5rem;
        margin-bottom: 0;
        line-height: 130%;
    }

    .actualites-full__content {
        padding: 4rem 0;
    }

    .actualites-full__content--wrapper {
        flex-direction: row;
        align-items: flex-start;
        gap: 2rem;
    }

    .actualites-full__content--text {
        flex: 0 0 66.666%; /* 8/12 = 66.666% */
        order: 1;
    }

    .actualites-full__content--image {
        flex: 0 0 33.333%; /* 4/12 = 33.333% */
        order: 2;
    }
}
