Display future posts in search

Something like this might work:

<?php while (have_posts()) : the_post(); ?>
    <?php if ( 'future' === get_post_status( the_ID() ) ) : ?>
    <div <?php post_class(); ?>>
        <div class="news-item" onclick="location.href="https://wordpress.stackexchange.com/questions/54815/<?php echo the_permalink(); ?>"">
            <h2><a href="https://wordpress.stackexchange.com/questions/54815/<?php echo the_permalink(); ?>"><?php echo the_time('d.m.Y'); ?> / <?php echo the_title(); ?></a></h2>
            <p class="news-page">
                <?php if (get_field('description') != "") { ?>
                    <?php echo the_field('description'); ?>
                <?php } else { 
                    $newscontent = get_the_content();
                    $newscontent_str = strip_tags($newscontent, '');
                    echo substr($newscontent_str,0,250) . "…";
                } ?>    
            </p>
        </div>
    </div>
    <?php endif; ?>