It looks like $this->item->link is not returning the correct article URL, possibly because of how Joomla is handling links in your template.
Instead of $this->item->link, try using:
<a href="<?php echo JRoute::_($this->item->link); ?>">
<?php echo LayoutHelper::render('joomla.content.intro_image', $this->item); ?>
</a>
If the above still redirects to the homepage, replace $this->item->link with:
<a href="<?php echo $this->item->readmore_link; ?>">
<?php echo LayoutHelper::render('joomla.content.intro_image', $this->item); ?>
</a>
and clear cache for every single try