.article-content ol {
  counter-reset: my-counter;
  list-style: none;
}
.article-content ol li {
  counter-increment: my-counter;
  margin-bottom: 10px;
}
.article-content ol li::before {
  content: counter(my-counter) ". ";
  font-weight: 500;
}