/*
 * Quote — auto-insert the ❝ (U+275D) ornament before every Quote (except the
 * "plain" style), so it works with no class and no manually typed character.
 * None of the theme fonts include this Dingbats glyph, so the mark alone is
 * pinned to a system symbol-font stack; the quote text stays on the active font.
 *
 * The "Quote with Portrait" layout (image alongside the quote) is a composition,
 * so it lives in patterns/quote-portrait.php — a block style can't carry an image.
 */
.wp-block-quote:not(.is-style-plain)::before {
	content: "\275D";
	display: block;
	font-family: "Segoe UI Symbol", "Noto Sans Symbols", "Apple Symbols", sans-serif;
	font-size: var(--wp--preset--font-size--xxx-large);
	line-height: 1;
	margin-bottom: var(--wp--preset--spacing--20);
}
