This is matter of WordPress. In WordPress documentation you can find this words:
An auto-generated excerpt is trimmed down to a word-boundary and the default length is 55 words.
So how to enlarge that limitation?
If you want to print longer excerpt, please add at the end of your function.php this code:
function jaw_custom_excerpt_length( $length ) { return 100; } add_filter( 'excerpt_length', 'jaw_custom_excerpt_length', 999 );