/* Brentwood "Number Badge" for Kadence Sections (kadence/column).

   A square Oswald badge stuck to the top-left corner of a section, using the
   exact brand look of the Brentwood Images badge (.bw-cg-card__num): Oswald 700,
   white on zinc-700/80, hard text-shadow.

   Injected on the front end by inc/bw-sectionnum.php (render_block) as the first
   child of the OUTER column wrapper (.wp-block-kadence-column), which carries the
   bw-has-section-num class as the positioning context. We position against the
   outer wrapper — not the padded, flex .kt-inside-inner-col — so top:0/left:0
   always lands on the section's true visible corner, never inset by the section
   padding. */

.wp-block-kadence-column.bw-has-section-num {
	position: relative;
}

.bw-section-num {
	position: absolute;
	top: 0;
	left: 0;
	z-index: 3;
	margin: 0.25rem;
	min-width: 2rem;
	padding: 0.25rem 0.5rem;
	display: grid;
	place-items: center;
	background: rgba(63, 63, 70, 0.8);
	color: #fff;
	font-family: "Oswald", "Open Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
	font-size: 1.25rem;
	font-weight: 700;
	line-height: 1.4;
	text-align: center;
	text-shadow: 1px 1px 0 #222;
	pointer-events: none;
}
