/* ============================================================
   GRID HELPERS
============================================================ */

.grid { display:grid; gap:24px; }

@media (min-width:900px) {
  .cols-2 { grid-template-columns:1fr 1fr; }
  .cols-3 { grid-template-columns:repeat(3,1fr); }
}
