/* =========================================================================
   Block-level link colour — loaded after baker.css

   A row or card wrapped in <a> passes the global link colour down to every
   child that doesn't set its own, so an <h3> inside a linked row renders in
   the accent red. That silently breaks the system's central colour rule:
   red is rationed to overlines, CTAs and arrows and NEVER fills a headline.
   Block links carry ink; inline links keep the accent.
   ========================================================================= */
a.job-row,
a.proj,
a.person,
a.card-link{ color:var(--ink); }

a.job-row h3{ color:var(--ink); transition:color .18s ease; }
a.job-row:hover h3{ color:var(--accent); }
