/* BP Global Eyebrow Unify
 *
 * Project-wide visual unification of every NON-HERO section
 * eyebrow across the Barbary Plante theme. Mirrors the
 * reference styling of `.bp-history-strip__eyebrow`:
 *
 *   - display: inline-block
 *   - font-family: 'Manrope', system-ui, sans-serif
 *   - font-size: 13px
 *   - font-weight: 700
 *   - letter-spacing: 0.22em
 *   - text-transform: uppercase
 *   - color: #B8B25A   (the gold/olive token)
 *   - padding-block-end: 10px
 *   - margin: 0
 *
 * The `.bp-section-eyebrow` utility class is added to every
 * non-hero eyebrow element (in addition to its existing
 * widget-specific class). Hero eyebrows are intentionally
 * excluded by NOT receiving this class, so they keep their
 * dedicated hero styling untouched.
 *
 * `!important` is used on every property to guarantee this
 * rule wins over each widget's per-instance rule, regardless
 * of cascade load order. The per-instance rules are being
 * removed from the per-widget stylesheets as part of this
 * migration, so this rule becomes the single source of truth
 * for non-hero eyebrow typography.
 */

.bp-section-eyebrow {
	display: inline-block !important;
	font-family: 'Manrope', system-ui, sans-serif !important;
	font-size: 13px !important;
	font-weight: 700 !important;
	letter-spacing: 0.22em !important;
	text-transform: uppercase !important;
	color: #B8B25A !important;
	padding-block-end: 10px !important;
	margin: 0 !important;
}
