/* Shared styles for help articles under /articles/ */

/* Numbered section headings via CSS counter, so numbers are not hardcoded
   inside translatable strings and sections can be reordered freely. */
.article-steps { counter-reset: article-step; }

/* Bootstrap hides empty badges (.badge:empty), but this badge gets its content from ::before */
.article-steps .article-step-badge:empty { display: inline-block; }

.article-steps .article-step-badge::before {
    counter-increment: article-step;
    content: counter(article-step);
}
