/* ==========================================================================
   OIB Mission & Values — light section + centered header + 3-col card grid
   ========================================================================== */

.oib-mv {
	--oib-mv-pt: 96px;
	--oib-mv-pb: 96px;

	position: relative;
	padding: var(--oib-mv-pt) 24px var(--oib-mv-pb);
	background: #f5f8fc;
	font-family: var(--oib-font, "Inter", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif);
	-webkit-font-smoothing: antialiased;
}

.oib-mv__inner {
	margin: 0 auto;
}

.oib-mv__inner--narrow { max-width: 1080px; }
.oib-mv__inner--wide   { max-width: 1280px; }
.oib-mv__inner--full   { max-width: calc(100% - 32px); }

/* ==========================================================================
   Header
   ========================================================================== */

.oib-mv__header {
	margin: 0 auto 56px;
	max-width: 760px;
	text-align: center;
}

.oib-mv__header--left {
	margin-left: 0;
	margin-right: auto;
	text-align: left;
}

.oib-mv__heading {
	margin: 0 0 12px;
	color: #0f172a;
	font-size: clamp(28px, 3.4vw, 40px);
	font-weight: 800;
	line-height: 1.15;
	letter-spacing: -0.02em;
}

.oib-mv__subtitle {
	margin: 0;
	color: #64748b;
	font-size: clamp(15px, 1.1vw, 17px);
	line-height: 1.6;
}

/* ==========================================================================
   Card grid
   ========================================================================== */

.oib-mv__grid {
	list-style: none;
	margin: 0;
	padding: 0;
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 28px;
}

.oib-mv__cell {
	margin: 0;
	padding: 0;
	display: flex;
}

/* ---- Card ---- */
.oib-mv__card {
	display: flex;
	flex-direction: column;
	width: 100%;
	background: #ffffff;
	border: 1px solid rgba(15, 23, 42, 0.06);
	border-radius: 16px;
	padding: 32px;
	box-shadow:
		0 1px 2px rgba(15, 23, 42, 0.04),
		0 12px 28px -18px rgba(15, 23, 42, 0.10);
	transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.oib-mv__card:hover {
	transform: translateY(-3px);
	border-color: rgba(15, 23, 42, 0.12);
	box-shadow:
		0 1px 2px rgba(15, 23, 42, 0.05),
		0 18px 36px -18px rgba(15, 23, 42, 0.16);
}

/* ---- Icon box ---- */
.oib-mv__icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 48px;
	height: 48px;
	border-radius: 10px;
	background: #dbeafe;
	color: #1d4ed8;
	font-size: 22px;
	line-height: 1;
	flex-shrink: 0;
	margin-bottom: 28px;
	transition: transform 0.25s ease;
}

.oib-mv__card:hover .oib-mv__icon {
	transform: scale(1.06) rotate(-2deg);
}

.oib-mv__icon svg {
	width: 1em;
	height: 1em;
	display: block;
	fill: currentColor;
}

.oib-mv__icon i {
	font-size: inherit;
	line-height: 1;
}

/* ---- Card text ---- */
.oib-mv__title {
	margin: 0 0 14px;
	color: #0f172a;
	font-size: 22px;
	font-weight: 700;
	line-height: 1.25;
	letter-spacing: -0.015em;
}

.oib-mv__desc {
	margin: 0;
	color: #475569;
	font-size: 14.5px;
	line-height: 1.65;
}

/* ==========================================================================
   Responsive
   ========================================================================== */

@media (max-width: 1024px) {
	.oib-mv__grid {
		grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
		gap: 22px;
	}

	.oib-mv__card {
		padding: 28px;
	}

	.oib-mv__title {
		font-size: 20px;
	}
}

@media (max-width: 600px) {
	.oib-mv {
		padding: clamp(56px, 12vw, 80px) 18px clamp(56px, 12vw, 80px);
	}

	.oib-mv__header {
		margin-bottom: 36px;
	}

	.oib-mv__grid {
		grid-template-columns: 1fr !important;
		gap: 18px;
	}

	.oib-mv__card {
		padding: 24px;
	}

	.oib-mv__icon {
		width: 44px;
		height: 44px;
		font-size: 20px;
		margin-bottom: 22px;
	}

	.oib-mv__title {
		font-size: 19px;
		margin-bottom: 10px;
	}

	.oib-mv__desc {
		font-size: 14.5px;
	}
}

/* ==========================================================================
   A11y / motion
   ========================================================================== */
@media (prefers-reduced-motion: reduce) {
	.oib-mv__card,
	.oib-mv__icon { transition: none !important; }
	.oib-mv__card:hover { transform: none; }
	.oib-mv__card:hover .oib-mv__icon { transform: none; }
}
