Add category description to list of category with taxonomy image

If I understand you correctly, you might try to replace

echo '<div class="grid col-780"><h4>In this issue</h4><p>[CATEGORY DESCRIPTION SHOULD GO HERE]</p></div>';

with:

echo '<div class="grid col-780"><h4>In this issue</h4><p>'. $term->description. '</p></div>';

i.e. $term->description to get the description part.