/* =============================================================================
   zegit.dev/documentation — site-specific overrides on top of the vendored kit.
   Same rule as styles/site.css: colors_and_type.css, components.css and
   docs.css are vendored verbatim and must not be edited here; anything this
   site needs on top of them lives in this file. Loaded last by build.mjs.
   ============================================================================= */

/* components.css @ a36899f added a global `a:hover { text-decoration: underline }`
   so that bare <a> elements on the Control Plane pages stop rendering as browser
   defaults. The documentation kit already styles its own links: chrome (sidebar,
   TOC, breadcrumb, pager, topbar, and the whole-card `.dk-card` links) signals
   hover with colour and background, and running copy is handled by
   `.dk-prose a:not(.dk-card):not(.dk-btn)`, which underlines it deliberately.
   The blanket rule would underline every card's heading and body text on hover,
   so it is switched off here. The prose rules outrank this selector and keep
   their underline — the `#` heading anchors and the chrome do not. */
a:hover { text-decoration: none; }
