/* ============================================================
   Optivro ISPU — Icon-Card Grid + Note (`.tk-who`)
   Centered head (trait) + a 3-col grid of hover icon cards + a
   navy note strip. Scoped under `.oiw-who`. Icons render via
   Elementor's icon control (Font Awesome or uploaded SVG).
   ============================================================ */
.oiw-who {
	padding: 20px 40px 96px;
}
.oiw-who .oiw-inner {
	max-width: 1100px;
	margin: 0 auto;
	width: 100%;
}
.oiw-who .oiw-head {
	margin-bottom: 56px;
}
.oiw-who .oiw-h {
	font-size: 38px;
	line-height: 48px;
	margin-bottom: 14px;
}
.oiw-who-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 20px;
	margin-bottom: 20px;
}
.oiw-who-card {
	background: #fff;
	border: 1px solid var(--border);
	border-radius: 12px;
	padding: 30px 28px;
	display: flex;
	flex-direction: column;
	transition: transform 0.25s, box-shadow 0.25s;
	box-shadow: 0 2px 12px rgba(0, 29, 58, 0.05);
}
.oiw-who-card:hover {
	transform: translateY(-4px);
	box-shadow: 0 14px 36px rgba(0, 29, 58, 0.1);
}
.oiw-who-icon {
	width: 50px;
	height: 50px;
	border-radius: 12px;
	background: #F0EDE8;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 20px;
	transition: background 0.25s;
}
/* Scoped under .oiw-scope (0,4,0) so it beats the seeded icon_bg control's
   Elementor CSS `{{WRAPPER}} .oiw-who-icon` (0,3,0) — a tie there let Elementor's
   later-loaded default win and the tile never turned navy on hover. */
.oiw-scope .oiw-who-card:hover .oiw-who-icon {
	background: var(--navy);
}
.oiw-who-icon svg,
.oiw-who-icon i {
	width: 22px;
	height: 22px;
	font-size: 22px;
	color: var(--navy);
	fill: currentColor;
	stroke: var(--navy);
	transition: color 0.25s, stroke 0.25s;
}
.oiw-scope .oiw-who-card:hover .oiw-who-icon svg,
.oiw-scope .oiw-who-card:hover .oiw-who-icon i {
	color: #fff;
	stroke: #fff;
}
.oiw-who-card h4 {
	font-family: "OrpheusPro Regular", 'orpheus pro', orpheus, Georgia, serif;
	font-size: 19px;
	line-height: 26px;
	font-weight: 600;
	color: var(--ink);
	margin-bottom: 8px;
}
.oiw-who-card p {
	font-size: 14.5px;
	line-height: 23px;
	color: #001D3A;
	opacity: 0.68;
}
.oiw-who-note {
	background: var(--navy);
	border-radius: 14px;
	padding: 40px 44px;
	display: flex;
	align-items: center;
	gap: 28px;
	position: relative;
	overflow: hidden;
}
.oiw-who-note::before {
	content: '';
	position: absolute;
	top: -40px;
	right: -30px;
	width: 160px;
	height: 160px;
	border-radius: 50%;
	border: 1px solid rgba(255, 255, 255, 0.06);
}
.oiw-who-note-icon {
	flex-shrink: 0;
	width: 56px;
	height: 56px;
	border-radius: 50%;
	background: rgba(255, 112, 67, 0.15);
	display: flex;
	align-items: center;
	justify-content: center;
}
.oiw-who-note-icon svg,
.oiw-who-note-icon i {
	width: 26px;
	height: 26px;
	font-size: 26px;
	color: var(--gold);
	fill: currentColor;
	stroke: var(--gold);
}
.oiw-who-note-text {
	position: relative;
	z-index: 1;
}
.oiw-who-note-text h4 {
	font-family: "OrpheusPro Regular", 'orpheus pro', orpheus, Georgia, serif;
	font-size: 21px;
	font-weight: 600;
	color: #fff;
	margin-bottom: 6px;
}
.oiw-who-note-text p {
	font-size: 15px;
	line-height: 24px;
	color: rgba(255, 255, 255, 0.7);
}
@media (max-width: 900px) {
	.oiw-who {
		padding: 20px 24px 56px;
	}
	.oiw-who-grid {
		grid-template-columns: 1fr 1fr;
	}
	.oiw-who-note {
		flex-direction: column;
		text-align: center;
		gap: 20px;
	}
}
@media (max-width: 560px) {
	.oiw-who .oiw-h {
		font-size: 28px;
		line-height: 37px;
	}
	.oiw-who-grid {
		grid-template-columns: 1fr;
	}
}
