/* "grey" is not a valid Material accent color, so it was being silently
   ignored and falling back to the theme's default blue. This restores a
   true black/grey palette and darkens link text for better contrast. */
:root {
  --md-accent-fg-color: #4a4a4a;
  --md-accent-fg-color--transparent: #4a4a4a1a;
  --md-typeset-a-color: #333333;
}

.md-typeset a {
  text-decoration: underline;
  text-decoration-color: #9999994d;
  text-underline-offset: 2px;
}

.md-typeset a:hover {
  color: #000000;
  text-decoration-color: currentColor;
}
