/* Outline (stroke-only) text.
   The fill is transparent and the stroke inherits `color`, so the block's own
   Text colour control drives the outline — no separate colour control needed.
   Width comes from --brandy-text-stroke-width, written inline by
   Caller::apply_stroke_width (frontend) and by the editor.BlockListBlock
   filter in script.js (editor canvas). */
.is-style-text-outline {
	-webkit-text-fill-color: transparent;
	-webkit-text-stroke-color: currentColor;
	-webkit-text-stroke-width: var(--brandy-text-stroke-width, 1.5px);
}
