ol.with-extended-numbering { 
    counter-reset: item;
    font-weight: bold; 
    
}

ol.with-extended-numbering span.list-item-header { 
    font-weight: bold; 

}

li.with-extended-numbering { 
    display: block;
    font-weight: normal;
}

li.with-extended-numbering:before {
     content: counters(item, ".") " "; 
     counter-increment: item 
}

li.with-extended-numbering.clickable:hover { 
    text-decoration: underline;
    cursor: pointer;
}

.article-list {
    font-size: 18px;
    line-height: 2.2;
}

/* Checklist: show only checkbox, no bullet */
li.task-list-item {
    list-style: none;
}