/* reasons-grid block deltas (plan §5.2) — a header (title + lead) over a grid of
 * SDS num-tiles. Web-only layout; SDS tokens flip with the dark trigger. */
@layer web {
  .rg__grid {
    margin-top: clamp(2rem, 5vw, 3.5rem);
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: clamp(1rem, 2.5vw, 1.5rem);
  }
  @media (max-width: 60rem) { .rg__grid { grid-template-columns: repeat(2, 1fr); } }
  @media (max-width: 38rem) { .rg__grid { grid-template-columns: 1fr; } }
}
