/* batch-12-cesm1.2_clm4.5 — per-batch overrides on top of the Unity theme.
   Rule: memory/themes/docbook-1.79.md §Resolved patterns -> "In-pre <code> needs a
   per-batch CSS reset (MANDATORY)"; edge case memory/edge-cases/assets.md.
   Unity's bare `code` rule is display:inline-block/min-width:100%/padding/background and
   its own `pre code` rule only re-sets color, so in-pre code spans render as full-width
   white boxes. `pre code` (0,0,2) beats bare `code` (0,0,1) and ties Unity's `pre code`,
   winning on load order because this file is linked after the Unity css-include.
   No !important needed. Touches no HTML, so <pre> byte-fidelity is unaffected. */
pre code { display: inline; min-width: 0; padding: 0; background: none; }
