<?php get_header(); ?>

<div class="page-hero">
  <h1>Notícias</h1>
  <p class="breadcrumb"><a href="<?php echo home_url(); ?>">Início</a> › Notícias</p>
</div>

<div class="page-content">
  <div class="noticias-list">
    <?php if ( have_posts() ) : while ( have_posts() ) : the_post(); ?>
      <article class="noticia-full">
        <div class="noticia-full-img">
          <?php if ( has_post_thumbnail() ) : ?>
            <?php the_post_thumbnail('noticia-lista'); ?>
          <?php else : ?>
            <div style="width:100%;height:100%;background:linear-gradient(135deg,#7B1D1D,#9b2626);"></div>
          <?php endif; ?>
        </div>
        <div class="noticia-body">
          <div class="noticia-date"><?php echo get_the_date('d \d\e M \d\e Y'); ?></div>
          <h2><a href="<?php the_permalink(); ?>"><?php the_title(); ?></a></h2>
          <p><?php the_excerpt(); ?></p>
          <a href="<?php the_permalink(); ?>" class="read-more">
            LEIA MAIS <span class="read-more-arrow">›</span>
          </a>
        </div>
      </article>
    <?php endwhile; else : ?>
      <p>Nenhuma notícia encontrada.</p>
    <?php endif; ?>
  </div>

  <div style="margin-top:32px;">
    <?php the_posts_pagination(['mid_size' => 2]); ?>
  </div>
</div>

<?php get_footer(); ?>
