/* Contact page — "Useful links" card grid.
   The compiled Tailwind build only ships sm:grid-cols-2 (whichever
   utilities happen to be used elsewhere on the site), not sm:grid-cols-3,
   so a 3-card row needs this small explicit override. */

.wtap-links-grid {
  grid-template-columns: repeat(2, 1fr);
}

@media (min-width: 40rem) {
  .wtap-links-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
