/* ===== SECTION MENTIONS ===== */
.mentions-section {
    background: #f7f9fc;
    padding: 3em;
}
 
.mentions-wrapper {
    max-width: 860px;
    margin: 0 auto; /* centre le bloc sur la page */
    display: flex;
    flex-direction: column;
    gap: 1.5em;
}
 
/* ===== BLOCS ===== */
.bloc {
    background: white;
    border-radius: 12px;
    border: 1px solid #dde6f0;
    padding: 1.8em 2em;
}
 
.bloc h2 {
    color: #1B3A6B;
    font-size: 1.1em;
    font-family: "Questrial", sans-serif;
    margin-bottom: 0.4em;
    text-align: center; /* centre les titres */
}

.bloc h3 {
    color: #4A7FB5;
    font-size: 0.95em;
    font-family: "Questrial", sans-serif;
    margin: 1em 0 0.4em;
    text-align: center; /* centre les sous-titres */
}

hr.titlehr {
    width: 8em;
    border: 0;
    border-bottom: 5px dotted #1B3A6B;
    opacity: 0.7;
    margin: 0 auto 1.2em; /* centre le trait pointillé */
}

.bloc p {
    font-size: 0.92em;
    line-height: 1.7em;
    color: #3D3D3D;
    margin-bottom: 0.8em;
    text-align: center; /* centre les paragraphes */
}
 
.bloc ul {
    list-style: none;
    padding: 0;
    margin: 0.5em 0 0.8em;
}
 
.bloc ul li {
    font-size: 0.92em;
    line-height: 1.6em;
    color: #3D3D3D;
    padding: 4px 0 4px 1em;
    border-left: 3px solid #e0e8f4;
    margin-bottom: 6px;
    text-align: left; /* les listes restent à gauche pour la lisibilité */
}
.bloc ul li strong {
    color: #1B3A6B;
}
 
.bloc a {
    color: #4A7FB5;
    text-decoration: none;
}
 
.bloc a:hover {
    color: #1B3A6B;
    text-decoration: underline;
}
 
/* Zones à remplir — mises en évidence */
.a-remplir {
    background: #fff3cd;
    color: #856404;
    border: 1px dashed #ffc107;
    border-radius: 4px;
    padding: 1px 6px;
    font-style: italic;
    font-size: 0.92em;
}
 
/* Bloc date */
.bloc--date {
    background: #f0f4fa;
    border-color: #ccd6e8;
    text-align: right;
}
 
.bloc--date p {
    margin: 0;
    font-size: 0.85em;
    color: #777;
}
 
 
/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
    .mentions-section {
        padding: 1.5em 1em;
    }
 
    .bloc {
        padding: 1.2em 1em;
    }
 
    .hero-intern h1 {
        font-size: 1.3em;
    }
}


