Pagination – Posting First Page Content

Try to update index.php template with new WP_Query arg paged.

The code should be:

<?php
    $paged = isset(get_query_var('paged')) ? get_query_var('paged') : 1;

    $news_query = new WP_Query(array(
      'post__not_in' => array($featured_post->ID),
      'paged' => $paged
    ));

More info in codex