.test-class {
    color:var(--brand-primary);
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    font-weight: 200;
    cursor: pointer;
    position: relative;
    font-size: 1.25rem;
    line-height: 1.625rem;
    padding-bottom: 1rem;

    &.current{
        font-weight: bold;
        cursor: default;

        &:hover{
            color: var(--brand-primary);
        }
    }

    &:hover{
        color: var(--brand-tertiary);
    }

}