.salary {
    display: flex;
    gap: 5px;
    align-items: center;
    font-size: 20px;
    font-weight: 600;
    color: #4D4D4D;
}
.salary.salary--page {
    font-size: 22px;
    color: #406DA4;
}
.salary__wrp:has(:nth-child(2)),
.salary__wrp span:nth-child(2) {
    --gap: 20px;
}
.salary__wrp:has(:nth-child(2)) {
    display: flex;
    gap: var(--gap);
    align-items: center;
}
.salary__wrp span:nth-child(2) {
    position: relative;
}
.salary__wrp span:nth-child(2):before {
    --width: 5px;
    position: absolute;
    content: '';
    top: 60%;
    left: calc(-1 * ((var(--gap) / 2)));
    width: var(--width);
    height: 2px;
    background-color: #406DA4;
    transform: translate(calc(-1 * (var(--width) / 2)),-50%);
}
.salary__num {
    white-space: nowrap;
}
@media (max-width: 768px) {
    .salary__wrp:has(:nth-child(2)),
    .salary__wrp span:nth-child(2) {
        --gap: 14px;
    }
    .salary__wrp span:nth-child(2):before {
        top: 59%;
    }
}