1.content-list-cs {
2    margin-bottom: 1rem;
3}
4
5.list-group-item {
6    display: list-item;
7}
8
9.list-group-item p:last-child{
10    margin-bottom: 0;
11}
12
13.list-group-numbered>*::before {
14    content: counters(section, ".") ". ";
15    counter-increment: section;
16    margin-right: 0.5rem;
17}
18
19
20
21
22