/* =============================================================================
 * LITSLINK BLOCKS — Hero · dark split (acf/ll-hero-dark-split)
 * Self-contained: block-scoped palette, literal font fallback.
 * 1:1 with the Healthcare hero cut @1440: near-black bg, H1 56/68 left,
 * 24px check circles, CTA row = lead-in line + white pill button, image right.
 * ========================================================================== */
.block-ll-hero-dark-split {
	--hds-bg: #010005;
	--hds-white: #ffffff;
	--hds-accent: #1690d3;
	--hds-grey1: #f9fafb;
	--hds-font: var(--ll-font, 'Montserrat', 'Montserrat-fallback', Arial, sans-serif);

	background: var(--hds-bg);
	position: relative;
	padding-top: 100px; /* clears the ~100px transparent-over-hero header */
	box-sizing: border-box;
}
.block-ll-hero-dark-split *,
.block-ll-hero-dark-split *::before,
.block-ll-hero-dark-split *::after { box-sizing: border-box; }

.block-ll-hero-dark-split__inner {
	max-width: 1380px;
	margin: 0 auto;
	padding: 0 40px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	min-height: 808px;
}
.block-ll-hero-dark-split__content {
	flex: 0 0 650px;
	max-width: 650px;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 32px;
}
.block-ll-hero-dark-split__badge {
	display: inline-flex;
	align-items: center;
	padding: 7px 10px;
	background: rgba(22, 144, 211, 0.2);
	border-radius: 999px;
	color: var(--hds-accent);
	font: 500 12px/16px var(--hds-font);
	letter-spacing: 0.96px;
	text-transform: uppercase;
}
.block-ll-hero-dark-split__text {
	display: flex;
	flex-direction: column;
	gap: 24px;
	width: 100%;
}
.block-ll-hero-dark-split__title {
	margin: 0;
	color: var(--hds-white);
	font: 500 56px/68px var(--hds-font);
	letter-spacing: -1px;
}
/* Wrap any part of the H1 in <span>…</span> to accent it in brand blue. */
.block-ll-hero-dark-split__title span { color: #12abff; }
.block-ll-hero-dark-split__desc {
	margin: 0;
	color: var(--hds-grey1);
	font: 400 18px/27px var(--hds-font);
}
.block-ll-hero-dark-split__list {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-direction: column;
	gap: 12px;
}
.block-ll-hero-dark-split__list-item {
	display: flex;
	align-items: flex-start;
	gap: 12px;
	color: var(--hds-white);
	font: 400 16px/1.3 var(--hds-font);
}
.block-ll-hero-dark-split__list-icon {
	flex: 0 0 20px;
	width: 20px;
	height: 20px;
	margin-top: 1px;
}
/* CTA row: lead-in line + white pill button (no capsule — plain row). */
.block-ll-hero-dark-split__cta-row {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 28px;
}
.block-ll-hero-dark-split__cta-lead {
	color: var(--hds-white);
	font: 600 18px/1.4 var(--hds-font);
}
.block-ll-hero-dark-split__cta {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	padding: 15px 32px;
	background: var(--hds-white);
	border-radius: 999px;
	color: var(--hds-accent);
	font: 600 16px/1.4 var(--hds-font);
	text-decoration: none;
	transition: box-shadow 0.2s ease, transform 0.2s ease;
}
.block-ll-hero-dark-split__cta:hover {
	box-shadow: 0 8px 24px rgba(22, 144, 211, 0.35);
	transform: translateY(-1px);
}
.block-ll-hero-dark-split__cta svg {
	flex: 0 0 16px;
}

/* ---- Duo CTA layout: two side-by-side buttons, no lead-in ---- */
.block-ll-hero-dark-split__cta-row--duo {
	gap: 16px;
}
.block-ll-hero-dark-split__cta--primary {
	background: var(--hds-accent);
	color: var(--hds-white);
}
.block-ll-hero-dark-split__cta--primary:hover {
	background: #127bb4;
}
.block-ll-hero-dark-split__cta--secondary {
	background: transparent;
	color: var(--hds-white);
	border: 1px solid rgba(255, 255, 255, 0.5);
}
.block-ll-hero-dark-split__cta--secondary:hover {
	border-color: var(--hds-white);
	box-shadow: none;
}
.block-ll-hero-dark-split__media {
	flex: 0 0 550px;
	height: 808px;
	display: flex;
	align-items: center;
	justify-content: center;
}
.block-ll-hero-dark-split__img {
	width: 550px;
	height: 808px;
	object-fit: contain;
	display: block;
}
/* Neutral placeholder when no image is set (keeps the media column sized). */
.block-ll-hero-dark-split__placeholder {
	width: 100%;
	max-width: 460px;
	aspect-ratio: 11 / 16;
	border-radius: 24px;
	background: rgba(255, 255, 255, 0.04);
	border: 1px dashed rgba(255, 255, 255, 0.15);
}

/* Tablet ≤1024: stack, keep text left-aligned, image centered below */
@media (max-width: 1024px) {
	.block-ll-hero-dark-split {
		padding-top: 80px;
	}
	.block-ll-hero-dark-split__inner {
		flex-direction: column;
		align-items: stretch;
		min-height: 0;
		padding: 40px 40px 0;
	}
	.block-ll-hero-dark-split__content {
		flex: none;
		max-width: none;
		width: 100%;
		gap: 24px;
	}
	.block-ll-hero-dark-split__title {
		font-size: 40px;
		line-height: 1.2;
		letter-spacing: -1px;
	}
	.block-ll-hero-dark-split__media {
		flex: none;
		width: 100%;
		height: auto;
		margin-top: 40px;
	}
	.block-ll-hero-dark-split__img {
		width: 100%;
		max-width: 520px;
		height: auto;
		margin: 0 auto;
	}
}

/* Mobile ≤767 */
@media (max-width: 767px) {
	.block-ll-hero-dark-split {
		padding-top: 70px;
	}
	.block-ll-hero-dark-split__inner {
		padding: 32px 20px 0;
	}
	.block-ll-hero-dark-split__title {
		font-size: 32px;
		letter-spacing: -0.5px;
	}
	.block-ll-hero-dark-split__desc {
		font-size: 16px;
		line-height: 24px;
	}
	.block-ll-hero-dark-split__media {
		margin-top: 32px;
	}
	.block-ll-hero-dark-split__img {
		max-width: 100%;
	}
	.block-ll-hero-dark-split__cta-row {
		gap: 16px;
	}
}
