/* ==========================================================================
   OIB CTA Banner — dark section with centered heading + subtitle + dual CTAs
   ========================================================================== */

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

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

.oib-cban__inner {
	margin: 0 auto;
	display: flex;
	flex-direction: column;
	align-items: center;
}

.oib-cban__inner--narrow { max-width: 760px;  }
.oib-cban__inner--wide   { max-width: 920px;  }
.oib-cban__inner--full   { max-width: calc(100% - 32px); }

/* ---- Heading ---- */
.oib-cban__heading {
	margin: 0 0 20px;
	color: #ffffff;
	font-size: clamp(28px, 4.6vw, 52px);
	font-weight: 800;
	line-height: 1.15;
	letter-spacing: -0.025em;
}

/* ---- Subtitle ---- */
.oib-cban__subtitle {
	margin: 0 0 40px;
	color: #94a3b8;
	font-size: clamp(15px, 1.2vw, 17px);
	line-height: 1.6;
	max-width: 640px;
}

/* ---- CTAs ---- */
.oib-cban__ctas {
	display: flex;
	flex-wrap: wrap;
	gap: 14px 28px;
	align-items: center;
	justify-content: center;
}

.oib-cban__btn {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	font-size: 15px;
	font-weight: 700;
	line-height: 1;
	text-decoration: none;
	transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease, gap 0.2s ease, box-shadow 0.2s ease;
	white-space: nowrap;
}

/* Primary — solid amber pill */
.oib-cban__btn-primary {
	padding: 18px 30px;
	border-radius: 12px;
	background: #7E5D74;
	color: #ffffff;
	box-shadow:
		inset 0 1px 0 rgba(255, 255, 255, 0.25),
		0 12px 28px -12px rgba(126, 93, 116, 0.55);
}

.oib-cban__btn-primary:hover,
.oib-cban__btn-primary:focus-visible {
	background: #6A4960;
	transform: translateY(-2px);
	box-shadow:
		inset 0 1px 0 rgba(255, 255, 255, 0.3),
		0 18px 36px -14px rgba(126, 93, 116, 0.7);
	outline: none;
}

/* Secondary — text + arrow link */
.oib-cban__btn-secondary {
	padding: 14px 8px;
	background: transparent;
	color: #94a3b8;
	font-weight: 600;
}

.oib-cban__btn-secondary:hover,
.oib-cban__btn-secondary:focus-visible {
	color: #ffffff;
	gap: 12px;
	outline: none;
}

.oib-cban__btn-arrow {
	width: 16px;
	height: 16px;
	flex-shrink: 0;
	transition: transform 0.2s ease;
}

.oib-cban__btn-secondary:hover .oib-cban__btn-arrow {
	transform: translateX(2px);
}

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

@media (max-width: 768px) {
	.oib-cban {
		padding: clamp(64px, 12vw, 80px) 20px clamp(64px, 12vw, 80px);
	}

	.oib-cban__heading {
		font-size: clamp(24px, 6.5vw, 36px);
		margin-bottom: 16px;
	}

	.oib-cban__subtitle {
		font-size: 15px;
		margin-bottom: 30px;
	}

	.oib-cban__ctas {
		gap: 10px 20px;
	}

	.oib-cban__btn-primary {
		padding: 16px 24px;
		font-size: 14.5px;
	}

	.oib-cban__btn-secondary {
		font-size: 14px;
	}
}

@media (max-width: 480px) {
	.oib-cban__ctas {
		flex-direction: column;
		gap: 6px;
		width: 100%;
	}

	.oib-cban__btn-primary {
		width: 100%;
		justify-content: center;
	}
}

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