/* Footer — hand-authored additions.

   components/footer.css is GENERATED from the design handoff by scripts/split_design_css.py
   and must never be hand-edited; additions live here (CLAUDE.md house style).

   The convener credit carries a real link to pmg.engineering. Left alone it would inherit
   `.site-footer a` — steel-200 at --fs-small, i.e. the size and weight of a nav link — which
   breaks "present but subordinate" (Brief §10.4). So it takes the .foot-pmg treatment
   verbatim and only lifts on hover/focus. */

.foot-pmg a {
  color: inherit;
  font-size: inherit;
  letter-spacing: inherit;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
  transition: color var(--dur-1) var(--ease-out);
}

.foot-pmg a:hover,
.foot-pmg a:focus-visible {
  color: var(--c-text-inverse);
}
