/* Articles/Index.cshtml

   The article grid is the default shape of a catalog list, and that default now lives in
   layout.css, which every page already loads. What is left here is the two things that
   are true of an article index and of nothing else: the lead is a full editorial
   headline, and the rows carry more air than a dateline list does. */

@layer components {

  .one-lead--article .one-lead__title {
    font-size: clamp(var(--fs-h2), 5vw, var(--fs-display));
    line-height: var(--lh-tight);
  }

  .one-list--articles {
    gap: var(--sp-6);
  }
}
