/*
 * WP/Bricks-only overrides — hand-authored, so they live here rather than
 * in src/styles.css, which the Tailwind build compiles wholesale into
 * assets/css/lichens.css.
 *
 * Bricks wraps the Header template in an outer #brx-header element. The
 * sticky nav declared on `.nav` in src/styles.css sticks within that
 * wrapper — i.e. within its own height — and therefore never engages on
 * WP. Promote the sticky to the wrapper itself. (See HANDOFF.md → WP-port
 * hard rules.)
 */
#brx-header {
	position: sticky;
	top: 0;
	z-index: 120;
}

/* The inner .nav already paints the translucent cream bar + blur; the
 * wrapper must be transparent and add no extra box, or the bar paints
 * twice. */
#brx-header {
	background: transparent;
}
