/* couleurs rubriques */
.jaune {
    color: #FECC2B;
}

.turquoise {
    color: #1ca19a;
}


/* Carrousel */
.section_titre {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    position: relative;
}

.carrousel_titre {
    font-family: 'ZillaSlab-Bold';
    font-size: 32px;
    text-transform: uppercase;
    display: inline-block;
    vertical-align: middle;
}

.separator_line {
    flex: 1;
    background-color: var(--couleur_bleue);
    display: inline-block;
    height: 4px;
    margin-left: 20px;
    margin-right: 0;
}

.carrousel_nav {
    position: absolute;
    top: 50%;
    width: 100%;
    height: 0;
    pointer-events: none;
    z-index: 10;
}

.bt_fleche {
    position: absolute;
    display: flex;
    width: 50px;
    height: 50px;
    background: white;
    border: 2px solid white;
    border-radius: 50%;
    cursor: pointer;
    pointer-events: all;
    align-items: center;
    justify-content: center;
    transform: translateY(-50%);
    box-shadow: 1px 2px 5px 0px var(--couleur-grise);
}

.bt_fleche i {
    font-size: 2em;
    font-weight: 900;
    color: var(--couleur_bleue);
    filter: drop-shadow(0.5px 0 0 var(--couleur_bleue)) 
            drop-shadow(-0.5px 0 0 var(--couleur_bleue));
    transform: translateY(1.5px);
}

.bt_fleche_gauche {
    left: -25px;
    transform: translateX(-1px);
}

.bt_fleche_droite {
    right: -25px;
    transform: translateX(1px);
}

.bt_fleche.disabled {
    opacity: 0;
    cursor: not-allowed;
}

.section_contenu {
    position: relative;
    overflow-x: visible;
}

.carrousel_elements {
    display: flex;
    gap: 20px;
    padding: 20px 0;
    overflow-x: auto;
    width: 100%;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.carrousel_elements::-webkit-scrollbar {
    display: none;
    width: 0;
    height: 0;
}

.carrousel_element {
    flex: 0 0 360px;
    height: auto;
    display: flex;
    flex-direction: column;
    min-width: 360px;
}

.carrousel_element img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

.carrousel_element .rubrique {
    display: inline-block;
    vertical-align: middle;
}

.carrousel_element .sous_rubrique {
    padding-left: 3px;
}

.carrousel_element a {
    text-decoration: none;
    color: black;
}

.carrousel_element h3 {
    font-family: 'ZillaSlab-Bold';
    font-size: 24px;
    padding: 15px 0;
}

.carrousel_element .date {
    font-family: 'Outfit-Regular';
    font-size: 14px;
}