Hi there,
The main issue there seems to be your featured image.
I wonder if pre-loading it would help?:
add_action( 'wp_head', function(){
$id = get_post_thumbnail_id();
if ( is_single() && $id ) {
$size = 'full';
$img_src = wp_get_attachment_image_url( $id, $size );
$img_srcset = wp_get_attachment_image_srcset( $id, $size );
echo '<link rel="preload" as="image" href="' . $img_src . '" imagesrcset="' . esc_attr( $img_srcset ) .'" imagesizes="100vw">';
}
} );