/**
 * Site-wide default link color (a / p a).
 *
 * Introduced 2026-08-15 (TopMenu / Vite 8 work): Vite’s html-proxy crashes when
 * index.html embeds an inline <style>, so these rules live as a static file under
 * public/ (linked from index.html as /link-colors.css) instead of a <style> block.
 * Applies on every page (SSR + client), before React mounts.
 */
a, p a {
  color: #2196f3;
  font-weight: 600;
}
