/* =====================================================
   articles-index.css — Page "Tous nos articles"
===================================================== */

.articles-index-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 32px 20px 60px;
}

.articles-index-header {
  text-align: center;
  margin-bottom: 36px;
}

.articles-index-header h1 {
  font-family: var(--font-display, inherit);
  font-size: 2rem;
  margin-bottom: 8px;
  color: var(--text);
}

.articles-index-header p {
  color: var(--text-dim);
  font-size: 0.95rem;
  max-width: 560px;
  margin: 0 auto;
}

.articles-index-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 20px;
}

.articles-index-grid .news-card {
  display: flex;
  flex-direction: column;
  height: 100%;
}

@media (max-width: 700px) {
  .articles-index-header h1 { font-size: 1.5rem; }
  .articles-index-grid { grid-template-columns: repeat(auto-fill, minmax(160px, 1fr)); gap: 14px; }
}
