/* Articles Index Page */
.articles-index-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 30px;
  flex-wrap: wrap;
  gap: 1rem;
}

@media (max-width: 768px) {
  .articles-index-header {
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
  }
}

/* The header owns its spacing; the h1 inside it does not need an inline
   override to cancel the global heading margin. */
.articles-index-header h1,
.topics-index-header h1 {
  margin: 0;
}
