Hi there,
the Excerpt length in the Customizer > Layout > Blog only applies to Excerpts that are automatically generated.
Some of your Posts are using the More Tag:
https://docs.generatepress.com/article/using-the-more-tag/
So those posts don’t have an auto excerpt.
You can either:
a. remove the More Tags from those posts
b. Add this PHP Snippet to your site so that GP ignores them and display an Auto Excerpt instead:
add_filter( 'generate_more_tag', '__return_empty_string' );
Adding PHP: https://docs.generatepress.com/article/adding-php/