/* Bloc principal du sommaire */
#div-sommaire {
    background: #f9f9f9;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 20px;
    margin: 30px 0;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

#titre-sommaire {
    display: block;
    font-size: 1.3em;
    margin-bottom: 15px;
    color: #4b2a85; /* VIOLET */
    font-weight: bold;
}

/* Liste du sommaire */
#sommaire_numerote {
    list-style: none !important;
    padding: 0 !important;
    margin: 0 !important;
}

#sommaire_numerote li {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
    padding: 0 !important;
}

#sommaire_numerote a {
    text-decoration: none;
    color: #444;
    font-size: 16px;
    transition: color 0.2s;
}

#sommaire_numerote a:hover {
    color: #4b2a85; /* VIOLET AU SURVOL */
    text-decoration: underline;
}

/* Badges numérotés ronds */
.badge-num-h2 {
    background: #4b2a85 !important; /* FORCE LE VIOLET */
    color: #ffffff !important;
    width: 26px;
    height: 26px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    font-weight: bold;
    margin-right: 12px;
    flex-shrink: 0;
}

/* Ajustement du badge dans les titres H2 du texte */
h2 .badge-num-h2 {
    background: #4b2a85 !important; /* FORCE LE VIOLET ICI AUSSI */
    width: 30px;
    height: 30px;
    font-size: 15px;
    vertical-align: middle;
    position: relative;
    top: -2px;
}

/* Titres H2 de l'article */
h2 {
    color: #4b2a85 !important; /* VIOLET */
}