.pso-pogress {
    --s: 10px;
    --bg: var(--c-primary-ulight);
    --f-bg: var(--c-primary);

    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: var(--G2);
}

.pso-progress__label {
    color: var(--c-contrast-light);
}

a.pso-progress__label {
    text-decoration: none;
    
    &:hover,
    &:active {
        text-decoration: none;
        color: var(--c-contrast);
    }

    @include mq($from: desktop) {
        transition: var(--TRANS);
    }
}

.pso-progress__bar {    
    display: flex;
    align-items: center;
    width: 100%;
    height: var(--s);
    background-color: var(--bg);
    border-radius: var(--s);
    overflow: hidden;
}

.pso-progress__fill {
    width: 0;
    height: 100%;
    background-color: var(--f-bg);
    border-radius: var(--s);
    transition: var(--TRANS);
}
