Hi info220,
Yes we have designed our theme this way. The client cannot add more than 126 text including space. If there is more than 126 text then it will get truncated.
If you like to remove it then you can make a code customization. Go to theme folder -> inc -> structure -> content-extension.php on line no 140
replace code <p><?php echo substr(get_the_excerpt(),0,126); ?></p>
with<p><?php echo get_the_excerpt(); ?></p>
We recommended not to change the code because if you change the code then while updating to our new version all your customisation code will be lost. So better make child theme and first unhook the functions and the edit the code.
http://codex.wordpress.org/Child_Themes
Thank you