/* ============================================================
   Optivro ISPU — Scholar Definition Cards (`.tk-defs` / `.tk-def`)
   2-up grid (→1 col @900) of white cards: serif navy name (may link),
   gold uppercase role, definition/quote text. Hover-lift. Static;
   reveals on the frontend only. Scoped under `.oiw-scholars`. Values
   verbatim from the source kit; grid sits in the 820px narrow column.
   ============================================================ */
.oiw-scholars {
	padding: 0 40px; /* horizontal gutter matches source `.tk-section` */
}
.oiw-scholars .oiw-inner {
	max-width: 820px; /* source `.tk-narrow` */
	margin: 0 auto;
	width: 100%;
}
.oiw-scholars-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 20px;
	/* Vertical rhythm from the section container's flex_gap (see grid_margin_top
	   control to override per-instance). */
}
.oiw-scholar {
	background: #fff;
	border: 1px solid var(--border);
	border-radius: 12px;
	padding: 28px 30px;
	position: relative;
	transition: transform .25s, box-shadow .25s;
	box-shadow: 0 2px 12px rgba(0, 29, 58, .05);
}
.oiw-scholar:hover {
	transform: translateY(-4px);
	box-shadow: 0 14px 34px rgba(0, 29, 58, .1);
}
.oiw-scholar .oiw-scholar-name {
	font-family: "OrpheusPro Regular", 'orpheus pro', orpheus, Georgia, serif;
	font-size: 18px;
	font-weight: 600;
	color: var(--navy);
	margin-bottom: 4px;
}
.oiw-scholar .oiw-scholar-role {
	font-family: Lato, sans-serif;
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 1.5px;
	text-transform: uppercase;
	color: var(--gold);
	margin-bottom: 14px;
}
.oiw-scholar .oiw-scholar-text {
	font-size: 15px;
	line-height: 24px;
	color: #001D3A;
	opacity: .75;
}
/* Content links (light bg), verbatim. */
.oiw-scholar .oiw-scholar-name a {
	color: #003377;
	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-scholar .oiw-scholar-name a:hover {
	color: #001D3A;
	text-decoration-color: #001D3A;
}
@media (max-width: 900px) {
	.oiw-scholars {
		padding: 0 24px;
	}
	.oiw-scholars-grid {
		grid-template-columns: 1fr;
	}
}
