Hi Zechariah,
When you click title or image in frontend, it should open associated article details page, this is default behavior of Joomla.
In order to make it direct to a blog, I’m afraid that you must customize / change link for title of article in com_content, depend on type of that featured article then you change associated file as below:
Open templates/ja_fixel/html/com_content/featured/default_item_images.php file
Line 36: <a class=”article-link” href=”<?php echo $link; ?>” title=”<?php echo $this->escape($this->item->title); ?>”>
Open templates/ja_fixel/html/com_content/featured/default_item_gallery.php file
Line 36: <a class=”video-link” href=”<?php echo $link; ?>” title=”<?php echo $this->escape($this->item->title); ?>”>
Open templates/ja_fixel/html/com_content/featured/default_item_default.php file
Line 24: <a class=”article-link” href=”<?php echo JRoute::_(ContentHelperRoute::getArticleRoute($this->item->slug, $this->item->catid)); ?>”> <?php echo $this->escape($this->item->title); ?></a>
This requires customization in core and you should try by yourself.
Regards