/* Bearbones · Warning callout block style.
 *
 * Loaded everywhere the block editor and front-end might render a
 * `is-style-bb-warning` paragraph or group — guide pages, build pages, WC
 * PDPs, blog posts, anywhere an editor applies the style.
 *
 * Tokens come from the theme; the !important on padding-left is so the
 * shape survives core/paragraph's default block-editor padding overrides.
 */

.is-style-bb-warning {
	position: relative;
	padding: 14px 16px 14px 48px !important;
	background: #FBEEDB;
	color: #6B4500;
	border-left: 3px solid #C97A0F;
	border-radius: 2px;
	font-size: 14px;
	line-height: 1.5;
}

.is-style-bb-warning::before {
	content: "⚠";
	position: absolute;
	left: 16px;
	top: 14px;
	font-size: 20px;
	line-height: 1;
	color: #C97A0F;
}
