/* type-scale.css — Responsive typography for all FreeOrigins pages.
   Include on any page that uses var(--text-*) variables.
   workspace_shared.css includes these already — this is for standalone pages. */

html { font-size: clamp(15px, 1vw + 12px, 18px); }

:root {
  --text-2xs: 0.5625rem;
  --text-xs:  0.6875rem;
  --text-sm:  0.75rem;
  --text-base:0.8125rem;
  --text-md:  0.875rem;
  --text-lg:  1rem;
  --text-xl:  1.125rem;
  --text-2xl: 1.25rem;
  --text-3xl: 1.375rem;
  --text-4xl: 1.5rem;
  --touch-min: 2.75rem;
}
