/* Conteneur des mentions légales */
.mentions_legales_section {
    display: flex;
    justify-content: center;
    height: fit-content;
    text-align: center;
    flex-direction: column;
    background-image:
        url("../images/rouage_gris.png"),
        url("../images/rouage_gris.png");
    background-repeat: no-repeat, no-repeat;
    background-size: 820px, 640px;
    background-position: -380px 40px, calc(100% + 300px) calc(100% - 40px);
}

/* Bannière texte */
.titre-legal {
    background: var(--bleu-logo);
    color: var(--fond-blanc);
    font-family: var(--titre);
    border-radius: 22px;
    padding: 32px;
    box-sizing: border-box;
    margin: 64px 322px 0px 322px;
    position: relative;
    overflow: hidden;

    h1 {
        font-weight: 900;
    }

    p {
        font-weight: 500;
    }
}

.etoile1_img {
    position: absolute;
    top: 50%;
    left: 32px;
    transform: translateY(-50%);
    pointer-events: none;

    img {
        width: 76px;
        height: auto;
    }
}

.etoile2_img {
    position: absolute;
    top: 50%;
    right: 32px;
    transform: translateY(-50%) scaleX(-1);
    pointer-events: none;

    img {
        width: 76px;
        height: auto;
    }
}

/* Contenu des mentions légales */
.contenu-legal {
    padding: 0px 520px;
    text-align: start;
    margin-bottom: 64px;
}


.titre-parties {
    font-family: var(--titre);
    color: var(--bleu-logo);
    font-weight: 900;
    font-size: 24px;
    margin-top: 64px;
    margin-bottom: 24px;
}

.texte-parties {
    font-family: var(--texte);
    font-weight: 500;
    font-size: 18px;
}


.gras-vert, .lien {
    font-weight: 600;
    color: var(--vert-logo);
}

.contenu-legal ul {
    margin: 0;
    padding-left: 1.35em;
}

.contenu-legal .texte-parties {
    line-height: 1.55;
    overflow-wrap: anywhere;
}

@media (max-width: 900px) {
    .mentions_legales_section {
        background-size: 420px, 320px;
        background-position: -220px 24px, calc(100% + 140px) calc(100% - 24px);
    }

    .titre-legal {
        margin: 40px 24px 0;
        padding: 28px 20px;
        border-radius: 18px;
    }

    .titre-legal h1 {
        font-size: clamp(1.5rem, 5vw, 2rem);
        margin: 0 0 8px;
    }

    .titre-legal p {
        font-size: 15px;
        margin: 0;
    }

    .etoile1_img,
    .etoile2_img {
        display: none;
    }

    .contenu-legal {
        padding: 0 24px;
        margin-bottom: 48px;
    }

    .titre-parties {
        font-size: 20px;
        margin-top: 40px;
        margin-bottom: 16px;
    }

    .texte-parties {
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .mentions_legales_section {
        background-size: 280px, 220px;
        background-position: -160px 16px, calc(100% + 100px) calc(100% - 16px);
    }

    .titre-legal {
        margin: 24px 16px 0;
        padding: 22px 16px;
        border-radius: 14px;
    }

    .titre-legal h1 {
        font-size: 1.35rem;
    }

    .titre-legal p {
        font-size: 14px;
    }

    .contenu-legal {
        padding: 0 16px;
        margin-bottom: 40px;
    }

    .titre-parties {
        font-size: 18px;
        margin-top: 32px;
        margin-bottom: 12px;
    }

    .texte-parties {
        font-size: 15px;
    }

    .contenu-legal ul {
        padding-left: 1.15em;
    }
}