/* Keep all text black; use a muted gold underline for links instead of
   colored link text (mkdocs-material's stock amber/indigo is too bright
   and low-contrast for body copy). */
:root {
  --md-typeset-a-color: var(--md-default-fg-color);
}

.md-typeset a {
  color: var(--md-default-fg-color);
  text-decoration: underline;
  text-decoration-color: #c9a227;
  text-decoration-thickness: 0.09em;
  text-underline-offset: 0.15em;
}

.md-typeset a:hover,
.md-typeset a:focus {
  color: var(--md-default-fg-color);
  text-decoration-color: #96730f;
}
