/* ============================================================================
   testsite-overrides.css — test.wuweixin.art-ONLY visual differences.
   Kept deliberately tiny. The test site is meant to look IDENTICAL to the old
   site; the real test-only differences are NOT visual and live OUTSIDE the theme
   layer, so they are intentionally NOT here:
     - Basic Auth + X-Robots-Tag noindex  -> OpenResty vhost (B.3: do not migrate)
     - blog_public=0                       -> WordPress option, flipped at cutover
   No test-only CSS rule is required for the header/logo/hero/scroll contract.
   This file exists so future test-only tweaks have ONE short, obvious home
   (instead of leaking back into the contract sheet).
   ============================================================================ */

/* ============================================================================
   2G-06B font-stack regfix (CSS fallback ONLY — no remote font, no @font-face,
   no webfont download). Google Fonts (the parent body{} serif stack relied on
   'Noto Serif CJK SC' served by fonts.googleapis) were removed from the clean app;
   the body font then fell back to SimSun/serif. Give body a STABLE SYSTEM Chinese
   font stack instead. 'html body' (specificity 0,0,2) beats the parent 'body'
   (0,0,1) regardless of lib.css async (loadCSS) order, and stays BELOW '.fa' /
   '.iconfont' (0,1,0) so FontAwesome / iconfont glyphs are untouched.
   ========================================================================== */
html body {
    font-family:
        -apple-system,
        BlinkMacSystemFont,
        "Helvetica Neue",
        "PingFang SC",
        "Hiragino Sans GB",
        "Microsoft YaHei",
        "Noto Sans CJK SC",
        "Source Han Sans SC",
        Arial,
        sans-serif;
}
/* Code / monospace areas must NOT inherit the CJK body stack. (Highlighted blocks
   keep github.css's .hljs monospace, which is more specific; this covers inline
   <code> and any non-highlighted code so it never renders in the body font.) */
html body code,
html body pre,
html body kbd,
html body samp,
html body tt {
    font-family: "SFMono-Regular", Consolas, "Liberation Mono", Menlo, Courier, monospace;
}
