/**
 * The Wicked — Eyebrow Label (the bronze stroke + uppercase caption that opens each
 * section of the design). Brand defaults live here; the widget's Style controls override
 * these by targeting the same real CSS properties (editor-safe, no control-set --vars).
 */

.tw-eyebrow {
	display: flex;
	align-items: center;
	flex-wrap: nowrap;
	gap: 14px;                    /* Gap control overrides */
	justify-content: flex-start;  /* Alignment control overrides */
}

.tw-eyebrow__stroke {
	flex: 0 0 auto;
	width: 34px;                  /* Stroke Length control overrides */
	height: 1px;                  /* Stroke Thickness control overrides */
	background-color: var(--tw-tan); /* Stroke Color control overrides */
}

.tw-eyebrow__label {
	font-family: var(--tw-font-body);
	font-size: 12px;
	font-weight: 500;
	letter-spacing: .3em;
	text-transform: uppercase;
	line-height: 1;
	color: var(--tw-tan);         /* Label Color + Typography controls override */
}
