/* ============================================================
   InferFoundry LOCAL hand-tuning — NOT part of the design handoff.
   inferfoundry-theme.css is kept byte-identical to the handoff; this
   file exists per the handoff README's own instruction to
   "hand-tune only where Zensical's markup differs from Material's
   class names" (README.md, "Fidelity").

   Zensical's "classic" variant compiles a hardcoded rgba wash onto
   each admonition type's title row, e.g.:
     .md-typeset .note>.admonition-title{background-color:#448aff1a}
     .md-typeset .warning>.admonition-title{background-color:#ff91001a}
   This selector is MORE specific than the handoff's generic
   ".md-typeset .admonition { background: var(--md-default-bg-color) }"
   rule, so it wins and paints a visible tinted band behind the title
   text/icon in both colour schemes (the values are plain hex, not
   scheme-aware --md-* variables). BRANDING.md / the handoff mandate
   "no tinted fills" for admonitions (hairline border + left bar only),
   so this file neutralises just that title-row background, mirroring
   Material's own selectors so it wins on source order (same
   specificity, loaded after inferfoundry-theme.css via extra_css).

   Nothing else is touched here — borders, left-bar colours, icon
   colours, and everything else still come from inferfoundry-theme.css.
   ============================================================ */

.md-typeset .admonition-title,
.md-typeset summary,
.md-typeset .note > .admonition-title,
.md-typeset .note > summary,
.md-typeset .abstract > .admonition-title,
.md-typeset .abstract > summary,
.md-typeset .info > .admonition-title,
.md-typeset .info > summary,
.md-typeset .tip > .admonition-title,
.md-typeset .tip > summary,
.md-typeset .success > .admonition-title,
.md-typeset .success > summary,
.md-typeset .question > .admonition-title,
.md-typeset .question > summary,
.md-typeset .warning > .admonition-title,
.md-typeset .warning > summary,
.md-typeset .failure > .admonition-title,
.md-typeset .failure > summary,
.md-typeset .danger > .admonition-title,
.md-typeset .danger > summary,
.md-typeset .bug > .admonition-title,
.md-typeset .bug > summary,
.md-typeset .example > .admonition-title,
.md-typeset .example > summary,
.md-typeset .quote > .admonition-title,
.md-typeset .quote > summary {
  background-color: transparent;
}
