/* =============================================================
   Ideenhunger Blocks – frontend.css
   Nur globale Styles die keinem einzelnen Block zugeordnet
   werden können (Format-Typen, CSS-Variablen-Fallback).
   ============================================================= */

/* CSS-Variablen Fallback (normalerweise via theme.json) */
:root {
	--wp--preset--color--brand-softgreen: #c9ffb3;
	--wp--preset--color--brand-darkgreen: #39564f;
	--wp--preset--color--brand-dark:      #151b1e;
}

/* IDH Highlight Format-Typ (inline, nicht block-gebunden) */
mark.idh-highlight {
	background-color: var( --wp--preset--color--brand-softgreen, #c9ffb3 );
	color: var( --wp--preset--color--brand-dark, #151b1e );
	padding: 0.05em 0.15em;
}

/* IDH Grün-Text (inline Utility) */
span.idh-text-green {
	color: var( --wp--preset--color--brand-softgreen, #c9ffb3 );
}
