div.article-template__content {
  sup {
    a {
      color: var(--primary-color);
      text-decoration: none;
    }
  }
  ol:last-of-type {
    counter-reset: ol-counter;
    padding: 0;

    li {
      counter-increment: ol-counter;
      list-style: none;
      position: relative;
      padding-left: 2.4em;

      &:before {
        border: 0;
        content: counter(ol-counter, decimal-leading-zero);
        font-weight: 600;
        left: .4em;
        line-height: 100%;
        position: absolute;
        text-align: left;
        top: .6rem;
        z-index: 5;
      }

      a {
        text-decoration: none;
        color: var(--primary-color);
      }
    }
  }
}
