/* ============================================================
   Optivro ISPU — Fact banner (`.tk-fact`)
   Navy band: gold uppercase "Fact" badge beside a body paragraph
   (supports <strong> + inline links); faint decorative ring.
   Static — reveals on the frontend only. Scoped under `.oiw-fact`.
   Values verbatim from the source kit (`.tk-section.tight` wrapper,
   `.tk-inner` width, `.tk-fact*` band, and the dark-bg link styling).
   ============================================================ */
.oiw-fact {
	/* Source: `.tk-section.tight` — 54px 40px, → 52px 24px @900. */
	padding: 54px 40px;
}
.oiw-fact .oiw-inner {
	/* Source: `.tk-inner`. */
	max-width: 1080px;
	margin: 0 auto;
	width: 100%;
}
.oiw-fact-band {
	background: var(--navy);
	border-radius: 14px;
	padding: 34px 38px;
	display: flex;
	gap: 24px;
	align-items: flex-start;
	position: relative;
	overflow: hidden;
}
.oiw-fact-band::before {
	content: '';
	position: absolute;
	top: -40px;
	right: -30px;
	width: 150px;
	height: 150px;
	border-radius: 50%;
	border: 1px solid rgba(255, 255, 255, 0.06);
}
.oiw-fact-badge {
	flex-shrink: 0;
	font-family: Lato, sans-serif;
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 2px;
	text-transform: uppercase;
	color: var(--navy);
	background: var(--gold);
	padding: 8px 14px;
	border-radius: 6px;
	margin-top: 2px;
}
/* `.oiw-fact-text` scoped under root (0,2,0) so it beats core's p reset. */
.oiw-fact .oiw-fact-text {
	position: relative;
	z-index: 1;
	font-size: 16.5px;
	line-height: 27px;
	color: rgba(255, 255, 255, 0.85);
}
.oiw-fact .oiw-fact-text strong {
	color: #fff;
	font-weight: 700;
}
/* Content links on the dark navy band: general link rule (underline geometry,
   weight, transition) combined with the source's dark-bg colour override. */
.oiw-fact .oiw-fact-text a {
	color: #7FA8D9;
	text-decoration: underline;
	text-decoration-color: rgba(0, 51, 119, 0.4);
	text-underline-offset: 3px;
	text-decoration-thickness: 1.5px;
	font-weight: 600;
	transition: color 0.2s, text-decoration-color 0.2s;
}
.oiw-fact .oiw-fact-text a:hover {
	color: #fff;
	text-decoration-color: #fff;
}
@media (max-width: 900px) {
	.oiw-fact {
		padding: 52px 24px;
	}
	.oiw-fact-band {
		flex-direction: column;
		gap: 16px;
	}
}
