/**
 * Renders a per-item bullet icon for any core/list-item flagged with
 * `has-snp-bullet` (see list-item-icon.js). Block-agnostic: works in any block.
 * Reads --snp-bullet (image) and optional --snp-bullet-size (default 1em).
 */
li.has-snp-bullet {
	list-style: none;
	display: flex;
	align-items: center;
	gap: 0.5em;
	padding-left: 0;
}
li.has-snp-bullet::before {
	content: '';
	flex: 0 0 auto;
	width: var(--snp-bullet-size, 1em);
	height: var(--snp-bullet-size, 1em);
	background: var(--snp-bullet) center / contain no-repeat;
}
