Hi @janmendozaco,
There isn’t a built-in way to achieve what you’re after but, if you’re fairly comfortable with HTML and PHP, you could edit your theme’s code to achieve what you want.
The first step to that would be for you to set up a child theme.
The following guides provide a good introduction to child themes, including steps to set one up:
After you have completed that step, copy the parent’s content.php file to your child theme’s directory and then open it in your favourite text/code editor.
Locate the following code in that file:
<a href="<?php echo esc_url( boardwalk_get_link_url() ); ?>" class="entry-link"><span class="screen-reader-text"><?php _e( 'Continue reading <span class="meta-nav">→</span>', 'boardwalk' ); ?></span></a>
The above code is defining the link for each of posts and is what you’ll need to edit to instead link to the URL for the featured image.
The following function reference may help you with the above:
https://codex.www.ads-software.com/Function_Reference/the_post_thumbnail_url
Making the image appear in a lightbox will require some JavaScript. You may be able to find some good plugins or online tutorials to help with that.]
Hope the above helps to point you in the right direction!