.article__stages-item {
    margin-bottom: 39px;
    position: relative;
    padding-left: 75px;
}
.article__stages-item p:nth-of-type(1) {
    font-size: 1.25rem;
    line-height: 1.438rem;
    color: var(--kmnd-body-color-primary);
    margin-bottom: 35px;
}
.article__stages-item p:nth-of-type(2) {
    color: #656564;
    margin-bottom: 0;
}
.article__stages-item:before {
    content: "";
    display: block;
    position: absolute;
    left: 0;
    top: 2px;
    height: 18px;
    width: 18px;
    background: var(--kmnd-body-background-accent);
    border: solid 1px var(--kmnd-body-background-accent);
    border-radius: 50%;
}
.article__stages-item:after {
    content: "";
    display: block;
    position: absolute;
    left: 8px;
    top: 37px;
    width: 1px;
    height: 60px;
    background: var(--kmnd-body-background-accent);
}
.article__stages-item:last-of-type:after {
    display: none;
}
.article__stages-item:nth-of-type(even):before {
    background: none;
}
@media (max-width: 576px) {
    .article__stages-item {
        padding-left: 44px;
    }
    .article__stages-item p:nth-of-type(1) {
        margin-bottom: 13px;
    }
    .article__stages-item p:nth-of-type(2) {
        margin-bottom: 27px;
        min-height: 32px;
    }
}