I was sent this as part of a project mockup to realize, but when it comes to this one I have no idea how to make this happen.
I have an ordered list in which there is 2 diffrent markers with a styled dot, does anyone know how to make this happen.
Here is a screenshot of what it should look like

And here is a snippet of the code
.pj__list {
padding-left: inherit;
li {
font-weight: bold;
}
li::marker {
content: #{$dot} counter(list-item) ". ";
}
}
<ol class="pj__list">
<li class="my-2"> Bulletin de salaire </li>
<li class="my-2"> Copie de la CIN </li>
<li class="my-2"> Attestation de travail </li>
</ol>