/* Trueline web — overrides + utility classes beyond Tailwind Play CDN. */

/* Responsive collapse: stack columns under 1100px. The CDN doesn't run a
   build, so we can't easily use Tailwind's `lg:` modifier on inline grid
   templates — this is the simplest workaround. */
@media (max-width: 1100px) {
  main { grid-template-columns: 1fr !important; }
}

/* Tabular-nums fallback for the odds/edge columns. */
.tabular-nums { font-variant-numeric: tabular-nums; }
