/**
 * Landing page shared patterns (copied/adapted from main-site newStyle.css).
 * Do NOT edit newStyle.css for landing needs — landings own this file.
 *
 * Prefix: eh-lp-* (ExpertHiring Landing Page)
 * Used by: Pillar now; Sub-Hub / Sub-Role / GEO later.
 */

/* ── Hero (from .hero-*) ─────────────────────────── */
.eh-lp-hero {
	/* Match home .hero-wrap spacing */
	padding: 60px 24px 80px;
	text-align: center;
	background: #fff;
}

.eh-lp-hero-breadcrumb {
	font-size: 12px;
	color: #999;
	margin-bottom: 16px;
}

.eh-lp-hero-breadcrumb a {
	color: #999;
	text-decoration: none;
}

.eh-lp-hero-breadcrumb a:hover {
	color: #111;
}

/* Only the › separators — not aria-current page label (avoids double gap after ›). */
.eh-lp-hero-breadcrumb span[aria-hidden="true"] {
	margin: 0 6px;
}

.eh-lp-hero-gpill {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	max-width: 100%;
	box-sizing: border-box;
	background: transparent;
	border: none;
	border-radius: 999px;
	padding: 8px 18px;
	font-size: 14px;
	font-weight: 500;
	color: #2b2b2b;
	text-decoration: none;
	margin-bottom: 28px;
	transition: background 0.2s;
	white-space: nowrap;
}

.eh-lp-hero-gpill:hover,
.eh-lp-hero-gpill:focus {
	background: #efefef;
	color: #2b2b2b;
}

.eh-lp-hero-gpill:focus-visible {
	outline: 2px solid #7b48fe;
	outline-offset: 2px;
}

.eh-lp-hero-gpill svg {
	flex-shrink: 0;
	width: 18px;
	height: 18px;
}

.eh-lp-hero-gpill-stars {
	color: #fbbc04;
	line-height: 1;
}

.eh-lp-hero-gpill-text {
	min-width: 0;
	line-height: 1.2;
}

.eh-lp-hero-gpill-reviews {
	text-decoration: underline;
	text-underline-offset: 2px;
}

@media (max-width: 480px) {
	.eh-lp-hero-gpill {
		gap: 6px;
		padding: 8px 12px;
		font-size: 11px;
	}

	.eh-lp-hero-gpill svg {
		width: 15px;
		height: 15px;
	}

	.eh-lp-hero-gpill-stars {
		font-size: 11px;
		letter-spacing: 0.4px;
	}
}

/* Landing primary CTAs — padding + font only (content-sized; no fixed width/height). */
.eh-lp-cta {
	display: inline-flex;
	align-items: center;
	gap: 12px;
	font-weight: 400;
	border-radius: 54px;
	text-decoration: none;
}

.My-btn-gradient .BJB-btn.eh-lp-cta,
.My-btn-gradient .BJB-btn.eh-lp-cta--md {
	font-size: 15px;
	padding: 14px 28px;
}

.My-btn-gradient .BJB-btn.eh-lp-cta--lg {
	font-size: 16px;
	padding: 15px 32px;
}

/* ── Logo strip (from industries .logo-strip-section / .sc-logo-grid) ── */
.eh-lp-logo-strip {
	padding: 40px 24px;
	background: #fff;
	/* Single hairline each side (hero no longer draws a competing bottom border). */
	border-top: 1px solid #efefef;
	border-bottom: 1px solid #efefef;
}

.eh-lp-logo-strip-inner {
	max-width: 1200px;
	margin: 0 auto;
}

.eh-lp-logo-strip-label {
	font-size: 14px;
	font-weight: 400;
	color: #111;
	text-align: center;
	margin: 0 0 28px;
}

.eh-lp-logo-grid {
	display: flex;
	flex-wrap: nowrap;
	justify-content: space-between;
	align-items: center;
	gap: clamp(16px, 2vw, 32px);
	width: 100%;
}

.eh-lp-logo-cell {
	display: flex;
	align-items: center;
	justify-content: center;
	flex: 1 1 0;
	min-width: 0;
	height: 100px;
}

.eh-lp-logo-grid img {
	display: block;
	height: 54px;
	width: auto;
	max-width: 110px;
	object-fit: contain;
}

@media (max-width: 991px) {
	.eh-lp-logo-grid {
		display: grid;
		grid-template-columns: repeat(4, 1fr);
		gap: 16px 12px;
		justify-items: center;
	}

	.eh-lp-logo-cell {
		height: 72px;
		flex: none;
		width: 100%;
	}

	.eh-lp-logo-grid img {
		height: 40px;
	}
}

@media (max-width: 767px) {
	.eh-lp-logo-strip {
		padding: 32px 16px;
	}

	.eh-lp-logo-grid {
		grid-template-columns: repeat(2, 1fr);
		gap: 20px 64px;
		padding-inline: 12px;
	}

	.eh-lp-logo-grid img {
		max-height: 80px;
		height: auto;
		max-width: 100%;
	}
}

.eh-lp-hero-h1 {
	font-size: clamp(26px, 3.2vw, 48px);
	font-weight: 800;
	line-height: 1.12;
	letter-spacing: -1.5px;
	color: #111;
	margin: 0 auto 24px;
	max-width: 1000px;
}

.eh-lp-hero-sub {
	font-size: 17px;
	line-height: 1.7;
	color: #555;
	max-width: 58ch;
	margin: 0 auto 40px;
}

.eh-lp-hero-ctas {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 12px;
	flex-wrap: wrap;
	margin-bottom: 36px;
}

.eh-lp-hero-ghost {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 14px 28px;
	border-radius: 999px;
	background: #fff;
	border: 1.5px solid #d5d5d5;
	color: #444;
	font-size: 15px;
	font-weight: 500;
	text-decoration: none;
	transition: border-color 0.2s, color 0.2s;
}

.eh-lp-hero-ghost:hover,
.eh-lp-hero-ghost:focus {
	border-color: #111;
	color: #111;
}

.eh-lp-hero-trust {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 24px;
	flex-wrap: wrap;
	list-style: none;
	margin: 0;
	padding: 0;
}

.eh-lp-hero-trust-item {
	display: flex;
	align-items: center;
	gap: 7px;
	font-size: 13px;
	color: #555;
}

.eh-lp-hero-trust-check {
	width: 22px;
	height: 22px;
	border-radius: 6px;
	background: #ecfdf3;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
}

.eh-lp-hero-trust-check svg {
	width: 12px;
	height: 12px;
	color: #22c55e;
}

@media (max-width: 991px) {
	.eh-lp-hero {
		padding: 64px 16px 56px;
	}
}

@media (max-width: 767px) {
	.eh-lp-hero-trust {
		flex-direction: column;
		align-items: stretch;
		justify-content: flex-start;
		gap: 12px;
		width: 100%;
		max-width: 22rem;
		margin-left: auto;
		margin-right: auto;
		text-align: left;
	}

	.eh-lp-hero-trust-item {
		width: 100%;
		justify-content: flex-start;
		align-items: flex-start;
		text-align: left;
	}

	.eh-lp-hero-trust-check {
		margin-top: 1px;
	}
}

/* ── Recruiter cards (from .rec2-*) ───────────────── */
.eh-lp-rec-section {
	background: #fff;
	padding: 80px 24px;
	border-top: 1px solid #ebebeb;
}

.eh-lp-rec-header {
	text-align: center;
	margin-bottom: 48px;
}

.eh-lp-rec-header h2 {
	font-size: clamp(26px, 3vw, 40px);
	font-weight: 800;
	letter-spacing: -1.5px;
	color: #111;
	line-height: 1.15;
	margin: 0 0 12px;
}

.eh-lp-rec-header p {
	font-size: 16px;
	color: #666;
	margin: 0;
}

.eh-lp-rec-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(min(100%, 300px), 1fr));
	gap: 20px;
	max-width: 1100px;
	margin: 0 auto;
	justify-content: center;
}

.eh-lp-rec-card {
	background: #fff;
	border-radius: 28px;
	border: 1px solid #e8e8e8;
	padding: 22px 22px 26px;
	display: flex;
	flex-direction: column;
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.04);
	transition: box-shadow 0.2s, transform 0.2s;
	height: 100%;
	width: 100%;
	max-width: 360px;
	justify-self: center;
}

.eh-lp-rec-name {
	margin: 0 0 4px;
	font-size: 19px;
	font-weight: 700;
	color: #111;
	line-height: 1.3;
}

@media (prefers-reduced-motion: no-preference) {
	.eh-lp-rec-card:hover {
		box-shadow: 0 10px 32px rgba(0, 0, 0, 0.1);
		transform: translateY(-3px);
	}
}

.eh-lp-rec-top {
	display: flex;
	align-items: flex-start;
	justify-content: flex-start;
}

.eh-lp-rec-photo-wrap {
	width: 200px;
	height: 190px;
	/* Rounded rectangle headshots — never circular (design lock). */
	border-radius: 14px;
	overflow: hidden;
	flex-shrink: 0;
	background: #f0f0f0;
	position: relative;
}

.eh-lp-rec-photo-wrap--initials {
	background: #ede9fe;
}

.eh-lp-rec-card--compact .eh-lp-rec-photo-wrap {
	width: 88px;
	height: 88px;
}

.eh-lp-rec-photo {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center top;
	display: block;
}

/* Decorative LinkedIn mark (not a link until profile URLs ship). */
.eh-lp-rec-li-overlay {
	position: absolute;
	top: 8px;
	right: 8px;
	width: 26px;
	height: 26px;
	background: #0077b5;
	border-radius: 6px;
	display: flex;
	align-items: center;
	justify-content: center;
	z-index: 2;
	pointer-events: none;
}

.eh-lp-rec-li-overlay svg {
	width: 14px;
	height: 14px;
	display: block;
}

.eh-lp-rec-initials {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	height: 100%;
	font-size: 28px;
	font-weight: 800;
	color: #7b48fe;
}

.eh-lp-rec-spacer {
	min-height: 32px;
}

.eh-lp-rec-body {
	font-size: 14px;
	color: #555;
	line-height: 1.65;
	margin: 0 0 18px;
}

.eh-lp-rec-divider {
	border: none;
	border-top: 1.5px solid #e0e0e0;
	margin: 0 0 16px;
}

.eh-lp-rec-spec {
	font-size: 14px;
	color: #888;
}

@media (max-width: 768px) {
	.eh-lp-rec-grid {
		grid-template-columns: 1fr;
	}
}

/* ── FAQ (from .eh-faq-*) ────────────────────────── */
.eh-lp-faq {
	background: #fff;
	padding: 88px 24px;
	border-top: 1px solid #ebebeb;
}

.eh-lp-faq-layout {
	display: grid;
	grid-template-columns: 1fr 1.6fr;
	gap: 80px;
	align-items: start;
	max-width: 1200px;
	margin: 0 auto;
}

.eh-lp-faq-h2 {
	font-size: clamp(26px, 3vw, 40px);
	font-weight: 800;
	letter-spacing: -1.5px;
	color: #111;
	line-height: 1.2;
	margin: 0 0 14px;
}

.eh-lp-faq-desc {
	font-size: 15px;
	color: #666;
	line-height: 1.75;
	margin: 0;
	max-width: 34ch;
}

.eh-lp-faq-accordion {
	--bs-accordion-bg: transparent;
	--bs-accordion-border-width: 0;
	--bs-accordion-btn-bg: transparent;
	--bs-accordion-active-bg: transparent;
	--bs-accordion-btn-focus-box-shadow: none;
	--bs-accordion-btn-padding-x: 0;
	--bs-accordion-btn-padding-y: 0;
	--bs-accordion-body-padding-x: 0;
	--bs-accordion-body-padding-y: 0;
}

.eh-lp-faq-item {
	background: transparent;
	border: 0;
	border-bottom: 1px dashed #d0d0d0;
	border-radius: 0 !important;
}

.eh-lp-faq-item:first-child {
	border-top: 1px dashed #d0d0d0;
}

.eh-lp-faq-btn {
	width: 100%;
	display: flex;
	align-items: center;
	gap: 14px;
	padding: 20px 0 !important;
	background: none !important;
	border: none !important;
	box-shadow: none !important;
	color: #222;
	font-size: 15px;
	font-weight: 500;
	line-height: 1.4;
	text-align: left;
}

.eh-lp-faq-btn:not(.collapsed) {
	background: none !important;
	box-shadow: none !important;
	color: #222;
}

.eh-lp-faq-btn:focus-visible {
	outline: 2px solid #7b48fe;
	outline-offset: 2px;
}

.eh-lp-faq-btn::after {
	display: none !important;
}

.eh-lp-faq-icon {
	font-size: 0;
	flex-shrink: 0;
	width: 20px;
	text-align: center;
	line-height: 1;
	user-select: none;
	color: #111;
}

.eh-lp-faq-icon::before {
	content: "+";
	font-size: 20px;
}

.eh-lp-faq-btn:not(.collapsed) .eh-lp-faq-icon {
	color: #1a1535;
}

.eh-lp-faq-btn:not(.collapsed) .eh-lp-faq-icon::before {
	content: "\2212";
}

.eh-lp-faq-q {
	flex: 1;
}

.eh-lp-faq-answer {
	padding: 0 0 22px 34px !important;
	font-size: 14px;
	color: #666;
	line-height: 1.8;
}

.eh-lp-faq-answer p {
	margin: 0 0 0.9em;
}

.eh-lp-faq-answer p:last-child {
	margin-bottom: 0;
}

.eh-lp-faq-answer a {
	color: #111;
	text-decoration: underline;
}

.eh-lp-faq-answer a:hover,
.eh-lp-faq-answer a:focus-visible {
	color: #000;
}

/* Notion / bare URL inline links in landing body copy */
.eh-pillar .eh-lp-hero-sub a,
.eh-pillar .sh-section-sub a,
.eh-pillar .sh-step-body a,
.eh-pillar .sh-role-body a,
.eh-pillar .sh-bottom-cta-text a,
.eh-pillar .note a,
.eh-subhub .eh-lp-hero-sub a,
.eh-subhub .sh-section-sub a,
.eh-subhub .sh-step-body a,
.eh-subhub .sh-role-body a,
.eh-subhub .re-body a,
.eh-subhub .sh-bottom-cta-text a,
.eh-subhub .note a,
.eh-subrole .eh-lp-hero-sub a,
.eh-subrole .sh-how-step-body a,
.eh-subrole .sh-bottom-cta-text a,
.eh-subrole .note a,
.eh-placeholder .eh-lp-hero-sub a,
.eh-placeholder .sh-how-step-body a,
.eh-placeholder .sh-bottom-cta-text a,
.eh-placeholder .note a,
.eh-placeholder .sh-more-recs-text a,
.eh-geo .eh-lp-hero-sub a,
.eh-geo .sh-how-step-body a,
.eh-geo .sh-role-body a,
.eh-geo .re-body a,
.eh-geo .sh-bottom-cta-text a,
.eh-geo .note a {
	color: #111;
	text-decoration: underline;
}

/* Dark alert surface — match body text color; underline shows it's a link */
.eh-placeholder .sh-alert-sub a,
.eh-subrole .sh-alert-sub a,
.eh-subhub .sh-alert-sub a,
.eh-subhub .sh-alert-body a {
	color: inherit;
	text-decoration: underline;
}

.eh-placeholder .sh-alert-sub a:hover,
.eh-placeholder .sh-alert-sub a:focus-visible,
.eh-subrole .sh-alert-sub a:hover,
.eh-subrole .sh-alert-sub a:focus-visible,
.eh-subhub .sh-alert-sub a:hover,
.eh-subhub .sh-alert-sub a:focus-visible,
.eh-subhub .sh-alert-body a:hover,
.eh-subhub .sh-alert-body a:focus-visible {
	color: #fff;
}

@media (max-width: 768px) {
	.eh-lp-faq-layout {
		grid-template-columns: 1fr;
		gap: 40px;
	}

	.eh-lp-faq {
		padding: 64px 16px;
	}
}
