/* ==========================================================================
   OIB Page Hero — eyebrow + centered heading + subtitle + trust badge
   ========================================================================== */

.oib-phero {
	--oib-phero-pt: 120px;
	--oib-phero-pb: 120px;
	--oib-phero-bg-from: #f3f6fc;
	--oib-phero-bg-to:   #e8eefb;

	position: relative;
	padding: var(--oib-phero-pt) 24px var(--oib-phero-pb);
	background:
		linear-gradient(135deg, var(--oib-phero-bg-from) 0%, var(--oib-phero-bg-to) 100%);
	font-family: var(--oib-font, "Inter", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif);
	-webkit-font-smoothing: antialiased;
	text-align: center;
}

/* ---- Container widths ---- */
.oib-phero__inner {
	margin: 0 auto;
	display: flex;
	flex-direction: column;
	align-items: center;
}

.oib-phero__inner--narrow { max-width: 880px;  }
.oib-phero__inner--wide   { max-width: 1024px; }
.oib-phero__inner--full   { max-width: calc(100% - 32px); }

/* ==========================================================================
   Eyebrow pill
   ========================================================================== */

.oib-phero__eyebrow {
	display: inline-block;
	padding: 8px 18px;
	margin: 0 0 28px;
	border-radius: 999px;
	background: #bae6fd;
	color: #0369a1;
	font-size: 12.5px;
	font-weight: 700;
	letter-spacing: 0.16em;
	text-transform: uppercase;
	line-height: 1.4;
}

/* ==========================================================================
   Heading
   ========================================================================== */

.oib-phero__heading {
	margin: 0 0 24px;
	color: #0f172a;
	font-size: clamp(34px, 5.6vw, 64px);
	font-weight: 800;
	line-height: 1.1;
	letter-spacing: -0.025em;
	max-width: 12ch;
}

/* When heading is long-ish (multi-line), let it stretch wider */
.oib-phero__heading + .oib-phero__subtitle,
.oib-phero__heading + .oib-phero__trust {
	max-width: 640px;
}

/* ==========================================================================
   Subtitle
   ========================================================================== */

.oib-phero__subtitle {
	margin: 0 0 40px;
	color: #475569;
	font-size: clamp(15px, 1.2vw, 18px);
	line-height: 1.6;
	max-width: 640px;
}

/* ==========================================================================
   Trust badge
   ========================================================================== */

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

/* ---- Avatar stack ---- */
.oib-phero__avatars {
	list-style: none;
	margin: 0;
	padding: 0;
	display: inline-flex;
	align-items: center;
}

.oib-phero__avatar {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 36px;
	height: 36px;
	border-radius: 999px;
	overflow: hidden;
	background: #fed7aa; /* peachy fallback for missing images */
	border: 3px solid #ffffff;
	box-shadow: 0 1px 3px rgba(15, 23, 42, 0.08);
	box-sizing: content-box;
}

.oib-phero__avatar + .oib-phero__avatar {
	margin-left: -12px; /* overlap */
}

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

/* ---- Trust text ---- */
.oib-phero__trust-text {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 2px;
	text-align: left;
}

.oib-phero__trust-title {
	margin: 0;
	color: #0f172a;
	font-size: 14.5px;
	font-weight: 700;
	line-height: 1.3;
	letter-spacing: -0.01em;
}

.oib-phero__trust-subtitle {
	margin: 0;
	color: #64748b;
	font-size: 13px;
	line-height: 1.4;
}

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

@media (max-width: 768px) {
	.oib-phero {
		padding: clamp(72px, 14vw, 100px) 20px clamp(72px, 14vw, 100px);
	}

	.oib-phero__eyebrow {
		font-size: 11.5px;
		padding: 7px 14px;
		margin-bottom: 22px;
	}

	.oib-phero__heading {
		font-size: clamp(28px, 7vw, 40px);
		margin-bottom: 18px;
	}

	.oib-phero__subtitle {
		font-size: 15px;
		margin-bottom: 32px;
	}

	.oib-phero__avatar {
		width: 32px;
		height: 32px;
		border-width: 2.5px;
	}

	.oib-phero__avatar + .oib-phero__avatar {
		margin-left: -10px;
	}

	.oib-phero__trust-title {
		font-size: 13.5px;
	}

	.oib-phero__trust-subtitle {
		font-size: 12px;
	}
}

@media (max-width: 480px) {
	.oib-phero__trust {
		flex-direction: column;
		gap: 10px;
	}

	.oib-phero__trust-text {
		text-align: center;
		align-items: center;
	}
}
