Do you what is causing the number getting wrong?
EDIT MODE
PREVIEW
THIS IS THE CSS DOING NUMBER COLORING
li {
padding-left: 5px;
padding-top: 0px;
}
ol li {
counter-increment: list;
list-style-type: none;
position: relative;
}
ol li:before {
color: var(--color-accent);
content: counter(list) ".";
left: -15px;
position: absolute;
text-align: left;
width: 26px;
text-shadow:0 0px 10px var(--color-accent);
}