/* ======= NOTÍCIAS ======= */

/* Chamada notícias */
.hero__grid {
    grid-template-columns: 1fr 1fr;
    align-items: left;
    gap: 40px;
    padding: 24px 0 28px;
}

.prod {
  width: auto;
  height: 120px;
}

/* Paginação de notícias */
.news-pagination {
  display: flex;
  gap: 0.75rem;
  justify-content: flex-end;
  margin-top: 1.25rem;
}

/* Botão desativado */
.btn-pager.is-disabled,
.btn-pager[aria-disabled="true"] {
  opacity: 0.45;
  pointer-events: none;
}

/* ======= RESPONSIVO ======= */

/* Ajustes em telas médias */
@media (max-width: 960px) {
  .news-item {
    grid-template-columns: 260px 1fr;
  }

  .news-thumb img {
    height: 160px;
  }
}

.news-thumb--placeholder {
  height: 180px; display:flex; align-items:center; justify-content:center;
  background:#f5f6f8; color:#9aa0a6; font-size:2rem; border-radius:12px;
}


/* Ajustes em telas pequenas */
@media (max-width: 720px) {
  .hero__grid,
  .news-item {
    grid-template-columns: 1fr;
  }

  .news-thumb {
    max-width: none;
  }

  .news-thumb img {
    height: 200px;
  }
}
