Permalink and ACF field

You’ll need to use some different functions for obtaining the post thumbnail and title from outside of the loop:

get_the_title( $post_id )https://developer.wordpress.org/reference/functions/get_the_title/

and

get_the_post_thumbnail( $post_id, 'post_cover' )https://developer.wordpress.org/reference/functions/get_the_post_thumbnail/

Note: These functions only return the title and post thumbnail so will need to be echoed out.