.GapBridge_wrapper__YglzF {
	--surface: var(--white);
	--surface-alt: var(--light-grey);
	--text: var(--black);
	--text-muted: var(--grey);
	--rule: #e0e0e0;
	--accent: var(--red);

	/* Band-specific tokens. The band is an accent plane in BOTH themes -- see
	   NOTES.md. "Light" is the brand red at full strength; "dark" is the same
	   hue driven down in luminance so it recedes against a #111 page instead of
	   glowing. Text on the band is white in both themes by design, so
	   --band-text is intentionally theme-invariant. */
	/* Flat rgba, not color-mix(): unsupported on older Safari/Chrome, where it
	   invalidates the whole declaration and the hatch/rule silently disappear. */
	--band: var(--red);
	--band-text: var(--white);
	--band-rule: rgba(255, 255, 255, 0.32);
	--hatch: rgba(0, 0, 0, 0.06);

	/* Band-colored veil over an optional photo — strong enough that the section
	   still reads as the accent plane, open enough that the image gives it
	   depth. Flat rgba per theme, no color-mix(). */
	--band-overlay: rgba(189, 8, 27, 0.88);

	position: relative;
	overflow: hidden;
	padding: 100px 20px;
	background-color: var(--band);
	color: var(--band-text);
}

.GapBridge_wrapper__YglzF[data-theme="dark"] {
	--surface: #111;
	--surface-alt: var(--dark-grey);
	--text: var(--white);
	--text-muted: #b0b0b0;
	--rule: #3a3a3a;
	--accent: #e5233a;

	--band: #8f0616;
	--hatch: rgba(255, 255, 255, 0.06);

	--band-overlay: rgba(101, 4, 15, 0.88);
}

/* Optional photo layer, under the hatch and content. */
.GapBridge_media__W6UsM {
	position: absolute;
	inset: 0;
	z-index: 0;
	pointer-events: none;
}

.GapBridge_overlay__0tMXu {
	position: absolute;
	inset: 0;
	background-color: var(--band-overlay);
}

/* Diagonal hatch, carried over from the source. Keeps a very large flat field
   of red from reading as dead space. Pseudo-element, so it never enters the
   accessibility tree. */
.GapBridge_wrapper__YglzF::before {
	content: "";
	position: absolute;
	inset: 0;
	z-index: 1;
	pointer-events: none;
	background: repeating-linear-gradient(
		-45deg,
		transparent,
		transparent 20px,
		var(--hatch) 20px,
		var(--hatch) 21px
	);
}

/* Above the photo layer (z 0) and the hatch (z 1). */
.GapBridge_container__Ok0bn {
	position: relative;
	z-index: 2;
	margin: 0 auto;
}

.GapBridge_srOnly__OJAgg {
	position: absolute;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	-webkit-clip-path: inset(50%);
	        clip-path: inset(50%);
	white-space: nowrap;
	border: 0;
}

/* -- TRACK -------------------------------------------------------------- */

.GapBridge_track__BrDo6 {
	display: grid;
	grid-template-columns: 1fr auto 1fr;
	align-items: stretch;
	grid-gap: 40px;
	gap: 40px;
	max-width: 1080px;
	margin: 0 auto;
}

/* -- NODE --------------------------------------------------------------- */

.GapBridge_node__5mbFe {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 12px;
	padding: 50px 40px;
	border-radius: var(--border-radius);
	background-color: var(--surface);
	color: var(--text);
	box-shadow: var(--shadow);
}

.GapBridge_wrapper__YglzF[data-theme="dark"] .GapBridge_node__5mbFe {
	box-shadow: none;
	border: 1px solid var(--rule);
}

.GapBridge_nodeLabel__22vsI {
	font-size: 14px;
	line-height: 1.4;
	font-weight: bold;
	letter-spacing: 1.5px;
	color: var(--text-muted);
}

.GapBridge_nodeRule__RoPaO {
	display: block;
	width: 48px;
	height: 3px;
	border-radius: 2px;
	background-color: var(--accent);
}

.GapBridge_node__5mbFe[data-position="right"] .GapBridge_nodeRule__RoPaO {
	background-color: var(--rule);
}

.GapBridge_nodeTitle__1RIhz {
	/* Off-scale on purpose: h3 is 40px, which overpowers a half-width card. */
	font-size: clamp(26px, 2.4vw, 34px);
	line-height: 1.15;
	color: var(--text);
}

.GapBridge_nodeSub__Squ57 {
	font-size: 16px;
	line-height: 1.7;
	color: var(--text-muted);
}

/* -- DIVIDER ------------------------------------------------------------ */

.GapBridge_divider__OZiN4 {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 20px;
	width: 150px;
}

.GapBridge_dividerLine__G9nqG {
	display: block;
	flex: 1 1 auto;
	width: 1px;
	min-height: 40px;
	background-color: var(--band-rule);
}

.GapBridge_dividerLabel__EbHRn {
	font-size: 15px;
	line-height: 1.4;
	font-weight: bold;
	letter-spacing: 1px;
	text-align: center;
	color: var(--band-text);
}

/* -- SUMMARY ------------------------------------------------------------ */

/* PrismicRichText emits its own <p>, so .summary is the wrapping element and the
   type rules reach the paragraph as a descendant. Global `p { line-height: 2 }`
   outranks inheritance, so the 1.8 has to be restated on the <p> itself. */
.GapBridge_summary__MUD3V {
	max-width: 760px;
	margin: 60px auto 0;
	padding-top: 40px;
	border-top: 1px solid var(--band-rule);
	text-align: center;
	color: var(--band-text);
}

.GapBridge_summary__MUD3V p {
	line-height: 1.8;
	color: var(--band-text);
}

.GapBridge_summary__MUD3V em {
	font-style: italic;
	font-weight: bold;
}

/* The "accent" label ships from Prismic as a global class, so it needs
   :global() to survive CSS-module hashing. Scoped under .summary so it stays
   theme-aware. On the band, --accent (a red tuned to sit on --surface) has
   nothing to contrast against -- the emphasis is carried by weight instead. */
.GapBridge_summary__MUD3V .accent {
	font-weight: bold;
	color: var(--band-text);
}

/* -- BREAKPOINTS -------------------------------------------------------- */

@media screen and (max-width: 1024px) {
	.GapBridge_wrapper__YglzF {
		padding: 80px 20px;
	}

	.GapBridge_track__BrDo6 {
		gap: 24px;
	}

	.GapBridge_node__5mbFe {
		padding: 40px 30px;
	}

	.GapBridge_divider__OZiN4 {
		width: 120px;
	}
}

@media screen and (max-width: 768px) {
	.GapBridge_wrapper__YglzF {
		padding: 60px 20px;
	}

	.GapBridge_track__BrDo6 {
		grid-template-columns: 1fr;
		gap: 24px;
	}

	/* Divider stays in the flow on mobile -- it carries the section's whole
	   argument, so hiding it (as the source did) is not an option. It just
	   rotates from a vertical rail to a horizontal one. */
	.GapBridge_divider__OZiN4 {
		flex-direction: row;
		width: 100%;
		gap: 16px;
	}

	.GapBridge_dividerLine__G9nqG {
		width: auto;
		height: 1px;
		min-height: 0;
	}

	.GapBridge_node__5mbFe {
		padding: 32px 24px;
	}

	.GapBridge_summary__MUD3V {
		margin-top: 40px;
		padding-top: 32px;
		text-align: left;
	}
}


/*# sourceMappingURL=4605465112b98707.css.map*/