/* `a.` prefix bumps specificity to (0,1,1) so these rules survive the
   `.app-nav a` rule in app.css that wraps the admin nav. Without the
   prefix, `.pw-nav-link--active` (0,1,0) loses to `.app-nav a` regardless
   of source order. */
a.pw-nav-link {
  color: var(--pw-color-cream-base);
  text-decoration: none;
  transition: color 0.15s;
}

a.pw-nav-link:hover {
  text-decoration: underline;
}

a.pw-nav-link--active {
  color: var(--pw-color-orange-soft);
}
