/*
 * A versioned safeguard for visitors carrying an older immutable Astro
 * stylesheet. It affects only reading links, leaving navigation and buttons
 * in their established treatments.
 */
:root {
  --color-accent: #3d6b4f !important;
  --color-link: #0f6b46 !important;
}

main .prose-page a {
  color: #0f6b46;
  text-decoration-line: underline;
  text-decoration-thickness: 0.09em;
  text-decoration-color: color-mix(in srgb, currentColor 72%, transparent);
  text-underline-offset: 0.18em;
}

main .prose-page a:hover {
  color: #1a3d2e;
}
