/* Hacker theme (html.dz) — green README/markdown headings.
   copyparty's base .mdo h1/h2 draw a gray bar + orange rule, and the hacker
   theme's single class "dz" never matches the html.z dark override, so it
   falls back to that gray/amber look. Scoped to html.dz using the theme's own
   CSS variables so no other theme is touched. Loaded via --css-browser (a real
   href'd stylesheet) so copyparty's globalcss() inlines it into the sandboxed
   readme iframe too. */
html.dz .mdo h1,
html.dz .mdo h2,
html.dz .mdo h3 {
	color: var(--a-b);
	background: transparent;
	border: none;
	border-bottom: .12em solid var(--bg-u5);
	border-radius: 0;
	padding: .15em 0;
	margin: 1.6em 0 .6em;
}
html.dz .mdo h1 {
	border-bottom-width: .18em;
	border-color: var(--fg-weak);
	text-align: left;
}
