/* ==========================================================================
   news_grid — News listing grid of card-news (card base styles live in _news.css)
   ========================================================================== */

.news-grid {
  padding-block: var(--section-y);
}
.news-grid__header {
  margin-block-end: clamp(2rem, 4vw, 3rem);
}
.news-grid__header .section-header__eyebrow {
  color: var(--color-clay);
  margin: 0 0 0.75rem;
}
.news-grid__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(1.75rem, 2.5vw, 2.75rem) var(--grid-gap);
}
.news-grid__cell {
  min-width: 0;
}
.news-grid__cell.is-paged {
  display: none;
}
.news-grid__loadmore {
  display: flex;
  justify-content: center;
  margin-block-start: clamp(2rem, 4vw, 3.5rem);
}
.news-grid__loadmore .pf-loadmore {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: none;
  border: 0;
  cursor: pointer;
  font-family: var(--font-body);
  font-size: var(--text-body-sm);
  color: var(--color-steel);
}
.news-grid__loadmore .pf-loadmore:hover {
  text-decoration: underline;
}

@media (max-width: 1100px) {
  .news-grid__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 800px) {
  .news-grid__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 520px) {
  .news-grid__grid {
    grid-template-columns: 1fr;
  }
}
