/* ==========================================================================
   OIB Global Reach — dark split section: media card + checklist
   ========================================================================== */

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

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

.oib-greach__inner {
	margin: 0 auto;
	display: grid;
	grid-template-columns: 1fr 1fr;
	align-items: center;
	gap: 64px;
	max-width: 1280px;
}

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

/* Media-right swap */
.oib-greach--media-right .oib-greach__media { order: 2; }
.oib-greach--media-right .oib-greach__copy  { order: 1; }

/* ==========================================================================
   Media card (left by default)
   ========================================================================== */

.oib-greach__media {
	--oib-greach-card-from: #0f1a2e;
	--oib-greach-card-to:   #162236;

	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	min-height: 360px;
	border-radius: 18px;
	background:
		linear-gradient(160deg, var(--oib-greach-card-from) 0%, var(--oib-greach-card-to) 100%);
	box-shadow:
		inset 0 1px 0 rgba(255, 255, 255, 0.04),
		0 30px 60px -32px rgba(0, 0, 0, 0.45);
	overflow: hidden;
}

/* Subtle radial light inside the card so the icon glows */
.oib-greach__media::after {
	content: "";
	position: absolute;
	inset: 0;
	background:
		radial-gradient(60% 50% at 50% 45%, rgba(255, 255, 255, 0.04) 0%, rgba(255, 255, 255, 0) 70%);
	pointer-events: none;
}

.oib-greach__icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 96px;
	height: 96px;
	font-size: 96px;
	color: #7E5D74;
	line-height: 1;
	flex-shrink: 0;
	position: relative;
	z-index: 1;
}

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

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

/* Image variant — picture fills the card edge-to-edge */
.oib-greach__media--image {
	padding: 0;
	background:
		linear-gradient(160deg, var(--oib-greach-card-from) 0%, var(--oib-greach-card-to) 100%);
}

.oib-greach__media--image::after {
	/* Hide the radial highlight when an image is in play */
	display: none;
}

.oib-greach__image {
	position: absolute;
	inset: 0;
	z-index: 0;
	display: block;
}

.oib-greach__image img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
}

/* Sit the badge above the image */
.oib-greach__media--image .oib-greach__badge { z-index: 2; }

/* Badge pill at the bottom of the card */
.oib-greach__badge {
	position: absolute;
	left: 50%;
	bottom: 24px;
	transform: translateX(-50%);
	padding: 8px 18px;
	border-radius: 999px;
	background: #e2e8f0;
	color: #0f172a;
	font-size: 13px;
	font-weight: 600;
	white-space: nowrap;
	box-shadow: 0 4px 12px -4px rgba(0, 0, 0, 0.35);
	z-index: 1;
}

/* ==========================================================================
   Copy column (right by default)
   ========================================================================== */

.oib-greach__copy {
	min-width: 0;
}

.oib-greach__heading {
	margin: 0 0 20px;
	color: #ffffff;
	font-size: clamp(28px, 3.6vw, 44px);
	font-weight: 800;
	line-height: 1.15;
	letter-spacing: -0.02em;
}

.oib-greach__desc {
	margin: 0 0 32px;
	color: #94a3b8;
	font-size: clamp(15px, 1.1vw, 17px);
	line-height: 1.65;
	max-width: 580px;
}

/* ---- Bullet list ---- */
.oib-greach__bullets {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-direction: column;
	gap: 18px;
}

.oib-greach__bullet {
	display: flex;
	align-items: center;
	gap: 14px;
}

.oib-greach__bullet-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	width: 24px;
	height: 24px;
	color: #7E5D74;
}

.oib-greach__bullet-icon svg {
	width: 100%;
	height: 100%;
	display: block;
}

.oib-greach__bullet-text {
	color: #ffffff;
	font-size: 15px;
	font-weight: 600;
	line-height: 1.45;
}

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

@media (max-width: 1024px) {
	.oib-greach__inner {
		gap: 40px;
	}

	.oib-greach__media {
		min-height: 320px;
	}

	.oib-greach__icon {
		font-size: 80px;
		width: 80px;
		height: 80px;
	}
}

@media (max-width: 880px) {
	.oib-greach__inner,
	.oib-greach--media-right .oib-greach__inner {
		grid-template-columns: 1fr;
		gap: 32px;
	}

	.oib-greach--media-right .oib-greach__media { order: 1; }
	.oib-greach--media-right .oib-greach__copy  { order: 2; }

	.oib-greach__media {
		min-height: 260px;
	}

	.oib-greach__icon {
		font-size: 72px;
		width: 72px;
		height: 72px;
	}

	.oib-greach__desc {
		max-width: none;
	}
}

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

	.oib-greach__media {
		min-height: 220px;
		border-radius: 14px;
	}

	.oib-greach__icon {
		font-size: 64px;
		width: 64px;
		height: 64px;
	}

	.oib-greach__badge {
		bottom: 18px;
		font-size: 12px;
		padding: 7px 14px;
	}

	.oib-greach__bullets {
		gap: 14px;
	}

	.oib-greach__bullet-text {
		font-size: 14.5px;
	}
}
