/* Universitas Scholarium — canonical site footer link styling
   Single source of truth for footer <a> hover/underline rules.
   Linked from every page's <head> via: <link rel="stylesheet" href="/footer.css">
*/
footer a {
  color: var(--ink-faint, #c4a99a);
  text-decoration: none;
  transition: color 0.2s;
}
footer a:hover {
  color: var(--gold, #8b6914);
}
