/**
 * Editor-only: paint the custom Brentwood blocks' icons brand-red in the block
 * inserter, so the site's own blocks (bw/* and brentwood/*) stand out from core
 * and Kadence blocks at a glance.
 *
 * The JS filter (assets/bw-block-icons.js) sets the icon foreground everywhere it
 * renders; this is a scoped guarantee for the inserter list/grid items, covering
 * both Dashicon-font icons (color) and any SVG icons (fill). Inserter item class
 * is `editor-block-list-item-{name-with-slash-as-dash}` — e.g. bw/team-modal ->
 * editor-block-list-item-bw-team-modal.
 */
[class*="editor-block-list-item-bw-"] .block-editor-block-icon,
[class*="editor-block-list-item-bw-"] .block-editor-block-types-list__item-icon,
[class*="editor-block-list-item-brentwood-"] .block-editor-block-icon,
[class*="editor-block-list-item-brentwood-"] .block-editor-block-types-list__item-icon {
	color: #c8272c;
}

[class*="editor-block-list-item-bw-"] .block-editor-block-icon svg,
[class*="editor-block-list-item-bw-"] .block-editor-block-icon svg *,
[class*="editor-block-list-item-brentwood-"] .block-editor-block-icon svg,
[class*="editor-block-list-item-brentwood-"] .block-editor-block-icon svg * {
	fill: #c8272c;
}
