/*
 * ELNIQ GEO — Help Center page (/help-center/) section styles.
 * Loaded only on this page template. Values copied verbatim from
 * "Help Center.dc.html". Header/breadcrumb/footer/CTA-band shared.
 */

.eg-help-hero {
	padding: 72px 24px 40px;
}
.eg-help-hero__inner {
	max-width: 640px;
	margin: 0 auto;
	text-align: center;
}
.eg-help-hero__inner h1 {
	font-size: clamp(32px, 4.2vw, 48px);
	font-weight: 800;
	color: var(--eg-text-heading);
	margin: 0 0 14px;
	letter-spacing: -0.01em;
}
.eg-help-hero__inner p {
	font-size: 17.5px;
	color: var(--eg-text-secondary);
	margin: 0;
	line-height: 1.6;
}

.eg-help-grid-section {
	padding: 16px 24px 96px;
}
.eg-help-grid {
	max-width: 900px;
	margin: 0 auto;
	display: grid;
	grid-template-columns: 1fr;
	gap: 24px;
}
@media (min-width: 900px) {
	.eg-help-grid {
		grid-template-columns: repeat(2, 1fr);
	}
}
.eg-help-card {
	display: block;
	background: #fff;
	border: 1px solid var(--eg-border-light);
	border-radius: 20px;
	box-shadow: 0 12px 40px rgba(16, 35, 95, 0.08);
	padding: 40px 36px;
	text-decoration: none;
	transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.eg-help-card:hover,
.eg-help-card:focus-visible {
	transform: translateY(-4px);
	box-shadow: 0 18px 48px rgba(16, 35, 95, 0.14);
}
.eg-help-card__icon {
	width: 52px;
	height: 52px;
	border-radius: 14px;
	background: rgba(21, 93, 252, 0.1);
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 22px;
}
.eg-help-card h2 {
	font-size: 21px;
	font-weight: 800;
	color: var(--eg-text-heading);
	margin: 0 0 10px;
	letter-spacing: -0.01em;
}
.eg-help-card p {
	font-size: 14.5px;
	color: var(--eg-text-secondary);
	line-height: 1.6;
	margin: 0 0 20px;
}
.eg-help-card__link {
	font-size: 14.5px;
	font-weight: 700;
	color: var(--eg-blue);
}
