/* ============================================================
   Optivro ISPU — Language Comparison (`.tk-lang`)
   Two tinted columns (red "Problematic" / green "Preferred"), each an
   uppercase header (icon + label) + a bulleted list (items may lead with
   an <em> term). Collapses to 1 column @700 (source breakpoint). Static;
   reveals on the frontend only. Scoped under `.oiw-lang`. Values verbatim;
   sits in the 820px narrow column.
   ============================================================ */
.oiw-lang {
	padding: 0 40px; /* horizontal gutter matches source `.tk-section` */
}
.oiw-lang .oiw-inner {
	max-width: 820px; /* source `.tk-narrow` */
	margin: 0 auto;
	width: 100%;
}
.oiw-lang-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 0;
	border: 1px solid var(--border);
	border-radius: 14px;
	overflow: hidden;
	box-shadow: 0 2px 16px rgba(0, 29, 58, .05);
}
.oiw-lang-col {
	padding: 0;
	min-width: 0;
}
.oiw-lang-col.bad {
	background: #FBF3F0;
	border-right: 1px solid var(--border);
}
.oiw-lang-col.good {
	background: #F1F5F1;
}
.oiw-lang-h {
	display: flex;
	align-items: center;
	gap: 10px;
	padding: 20px 26px;
	font-family: Lato, sans-serif;
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 1.5px;
	text-transform: uppercase;
	border-bottom: 1px solid var(--border);
}
.oiw-lang-col.bad .oiw-lang-h {
	color: #B5654A;
}
.oiw-lang-col.good .oiw-lang-h {
	color: #5C7C5C;
}
.oiw-lang-h svg {
	width: 17px;
	height: 17px;
	fill: none;
	stroke-width: 2.2;
	stroke-linecap: round;
	stroke-linejoin: round;
	flex-shrink: 0;
}
.oiw-lang-col.bad .oiw-lang-h svg {
	stroke: #B5654A;
}
.oiw-lang-col.good .oiw-lang-h svg {
	stroke: #5C7C5C;
}
/* Scoped under .oiw-lang so it OUTRANKS core.css `.oiw-scope ul {padding:0}`
   (0,1,1) — otherwise the reset wins over a bare `.oiw-lang-list` (0,1,0) and
   the list loses its 26px left indent (bullets go flush-left). */
.oiw-lang .oiw-lang-list {
	list-style: none;
	padding: 14px 26px 24px;
	display: flex;
	flex-direction: column;
	gap: 12px;
}
.oiw-lang-list li {
	font-size: 15px;
	line-height: 23px;
	color: #001D3A;
	opacity: .85;
	/* Source is 16px; increased to 22px per client request (shares the list styling
	   with Two-Column Groups) for clearer bullet↔text separation. */
	padding-left: 22px;
	position: relative;
	overflow-wrap: anywhere;
}
.oiw-lang-list li::before {
	content: '';
	position: absolute;
	left: 0;
	top: 9px;
	width: 5px;
	height: 5px;
	border-radius: 50%;
}
.oiw-lang-col.bad li::before {
	background: #B5654A;
}
.oiw-lang-col.good li::before {
	background: #5C7C5C;
}
.oiw-lang-list li em {
	font-style: italic;
	color: var(--navy);
	font-weight: 600;
}
/* Caption (source `.tk-imgnote`). Scoped under .oiw-lang so its margin-top wins
   over core.css `.oiw-scope p {margin:0}` (0,1,1). */
.oiw-lang .oiw-lang-note {
	font-family: Lato, sans-serif;
	font-size: 11px;
	color: var(--gold);
	letter-spacing: 1px;
	text-transform: uppercase;
	font-weight: 700;
	text-align: center;
	margin-top: 14px;
	opacity: .85;
}
.oiw-lang-note a {
	color: inherit;
	text-decoration: underline;
}
/* Source breakpoint is 700 (verbatim), not Elementor's 767. */
@media (max-width: 700px) {
	.oiw-lang-grid {
		grid-template-columns: 1fr;
	}
	.oiw-lang-col.bad {
		border-right: none;
		border-bottom: 1px solid var(--border);
	}
}
@media (max-width: 900px) {
	.oiw-lang {
		padding: 0 24px;
	}
}
