/* Minimal overrides for what Tailwind doesn't ship by default. */

/* Force tabular numerals everywhere — Tailwind's tabular-nums utility covers
   most places, but link/anchor children sometimes inherit proportional digits. */
html {
  font-variant-numeric: tabular-nums;
}

/* Prose blocks (about page) keep paragraphs roomy without the @tailwindcss/typography plugin. */
.prose p { margin-top: 0.75rem; margin-bottom: 0.75rem; }
.prose h2 { color: rgb(15 23 42 / 1); }

/* Hide focus rings on mouse but keep them on keyboard navigation. */
:focus:not(:focus-visible) { outline: none; }
