ol {
// list-style: decimal;
list-style: none;
counter-reset: li;
li {
counter-increment: li;
margin-left: 32px;
.related-article {
margin-bottom: 0;
border-bottom: 0;
}
.line-breaker {
border-bottom: 1px solid #d9d9d9;
position: relative;
left: -31px;
width: 105%;
@media (max-width: $break_m_lg) {
width: 108%;
}
@media (max-width: $break_m_md) {
width: 110%;
}
}
}
li::before {
content: counter(li);
text-align: center;
font-weight: 600;
font-size: 30px;
line-height: 0;
position: relative;
top: 33px;
color: #228ffc;
display: inline-block;
width: 1em;
margin-left: -1.3em;
}
}