/* ============================================================
   Lido Hoppers Help Center styles.
   Enqueued by inc/help-center.php as handle `lh-help`, ONLY on
   help-center routes, after `lh-tokens` + `lh-brand`. The brand
   webfonts (Poppins / Inter / JetBrains Mono / Caveat) are already
   loaded by assets/colors_and_type.css, so there is no @import here.
   Everything is scoped to body.lh-help-center; the rest of the
   site is untouched.
   ============================================================ */

/* ===========================================================================
   1. Tokens (scoped to the help center)
   ======================================================================== */

body.lh-help-center {
	--lh-ocean: #2F8FD6;
	--lh-navy: #1E3A5F;
	--lh-sky: #B4DFF5;
	--lh-frog: #4FA643;
	--lh-leaf: #2E7A2A;
	--lh-coral: #E9603B;
	--lh-gold: #F5C430;
	--lh-purple: #A858C5;
	--lh-lime: #C8E36B;

	--lh-white: #FDFDFB;
	--lh-sand-100: #F5F0E6;
	--lh-sand-300: #D9D0BE;
	--lh-ink: #3D3D3D;
	--lh-ink-900: #1A1A1A;

	--lh-fg1: var(--lh-navy);
	--lh-fg2: #3D3D3D;
	--lh-fg3: rgba(61, 61, 61, 0.66);
	--lh-border: var(--lh-sand-300);
	--lh-border-subtle: rgba(217, 208, 190, 0.6);

	--lh-font-head: 'Poppins', system-ui, sans-serif;
	--lh-font-body: 'Inter', system-ui, -apple-system, sans-serif;
	--lh-font-mono: 'JetBrains Mono', ui-monospace, monospace;
	--lh-font-script: 'Caveat', cursive;

	--lh-radius-md: 12px;
	--lh-radius-lg: 16px;
	--lh-radius-xl: 24px;
	--lh-radius-full: 9999px;

	--lh-shadow-sm: 0 1px 2px rgba(30, 58, 95, 0.08);
	--lh-shadow-md: 0 4px 12px rgba(30, 58, 95, 0.10);
	--lh-shadow-lg: 0 12px 32px rgba(30, 58, 95, 0.14);

	--lh-bliss-soft: linear-gradient(180deg, #EAF6FD 0%, #B4DFF5 100%);

	--lh-ease: cubic-bezier(0.16, 1, 0.3, 1);
}

/* ===========================================================================
   2. Base layout + typography
   ======================================================================== */

body.lh-help-center .lh-help-main {
	background: var(--lh-white);
	color: var(--lh-fg2);
	font-family: var(--lh-font-body);
}

body.lh-help-center .lh-help-container {
	max-width: 1120px;
	margin: 0 auto;
	padding-left: 24px;
	padding-right: 24px;
}

body.lh-help-center .lh-help-section {
	padding: 56px 0;
}

body.lh-help-center .lh-help-display {
	font-family: var(--lh-font-head);
	font-weight: 700;
	font-size: clamp(34px, 5vw, 56px);
	line-height: 1.05;
	letter-spacing: -0.02em;
	color: var(--lh-navy);
	margin: 0 0 16px;
}

body.lh-help-center .lh-help-h1 {
	font-family: var(--lh-font-head);
	font-weight: 700;
	font-size: clamp(28px, 4vw, 42px);
	line-height: 1.1;
	letter-spacing: -0.015em;
	color: var(--lh-navy);
	margin: 0 0 12px;
}

body.lh-help-center .lh-help-h2 {
	font-family: var(--lh-font-head);
	font-weight: 700;
	font-size: clamp(24px, 3vw, 32px);
	line-height: 1.15;
	letter-spacing: -0.01em;
	color: var(--lh-navy);
	margin: 0;
}

body.lh-help-center .lh-help-eyebrow {
	font-family: var(--lh-font-head);
	font-size: 13px;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.08em;
	color: var(--lh-ocean);
	margin: 0 0 6px;
}

body.lh-help-center .lh-help-script {
	font-family: var(--lh-font-script);
	font-size: 30px;
	line-height: 1;
	color: var(--lh-navy);
	opacity: 0.8;
	margin: 0 0 4px;
}

body.lh-help-center .lh-help-section-head {
	display: flex;
	align-items: baseline;
	justify-content: space-between;
	gap: 16px;
	margin-bottom: 28px;
}

body.lh-help-center .lh-help-sr-only {
	position: absolute;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	white-space: nowrap;
	border: 0;
}

/* ===========================================================================
   3. Hero
   ======================================================================== */

body.lh-help-center .lh-help-hero {
	background: var(--lh-bliss-soft);
	padding: 72px 0 84px;
}

body.lh-help-center .lh-help-hero__inner {
	max-width: 760px;
}

body.lh-help-center .lh-help-hero__subhead {
	font-size: 19px;
	line-height: 1.55;
	color: var(--lh-navy);
	opacity: 0.8;
	margin: 0 0 32px;
	max-width: 640px;
}

/* ===========================================================================
   4. Search
   ======================================================================== */

body.lh-help-center .lh-help-search-form {
	width: 100%;
}

body.lh-help-center .lh-help-search {
	display: flex;
	align-items: center;
	gap: 10px;
	background: var(--lh-white);
	border: 1.5px solid rgba(30, 58, 95, 0.10);
	border-radius: var(--lh-radius-full);
	padding: 8px 8px 8px 20px;
	box-shadow: var(--lh-shadow-md);
	max-width: 720px;
}

body.lh-help-center .lh-help-search__icon {
	display: inline-flex;
	color: var(--lh-ocean);
	flex-shrink: 0;
}

body.lh-help-center .lh-help-search__input {
	flex: 1;
	min-width: 0;
	border: 0;
	outline: none;
	background: transparent;
	font-family: var(--lh-font-body);
	font-size: 17px;
	color: var(--lh-navy);
	padding: 10px 0;
}

body.lh-help-center .lh-help-search__submit {
	flex-shrink: 0;
	border: 0;
	cursor: pointer;
	background: var(--lh-ocean);
	color: #fff;
	font-family: var(--lh-font-head);
	font-weight: 600;
	font-size: 15px;
	padding: 12px 22px;
	border-radius: var(--lh-radius-full);
	transition: background var(--lh-ease) 150ms;
}

body.lh-help-center .lh-help-search__submit:hover {
	background: var(--lh-navy);
}

body.lh-help-center .lh-help-search--sm {
	padding: 6px 6px 6px 16px;
}

body.lh-help-center .lh-help-search--sm .lh-help-search__input {
	font-size: 15px;
	padding: 8px 0;
}

body.lh-help-center .lh-help-search--sm .lh-help-search__submit {
	padding: 9px 16px;
	font-size: 14px;
}

body.lh-help-center .lh-help-search-suggestions {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 8px;
	margin-top: 18px;
}

body.lh-help-center .lh-help-search-suggestions__label {
	font-family: var(--lh-font-head);
	font-size: 13px;
	font-weight: 600;
	color: var(--lh-navy);
	opacity: 0.7;
	margin-right: 2px;
}

body.lh-help-center .lh-help-search-suggestions a {
	font-family: var(--lh-font-head);
	font-size: 13px;
	font-weight: 500;
	color: var(--lh-navy);
	text-decoration: none;
	background: rgba(253, 253, 251, 0.7);
	border: 1px solid rgba(30, 58, 95, 0.08);
	padding: 6px 12px;
	border-radius: var(--lh-radius-full);
	transition: background var(--lh-ease) 150ms;
}

body.lh-help-center .lh-help-search-suggestions a:hover {
	background: #fff;
}

/* ===========================================================================
   5. Troubleshooting shortcut
   ======================================================================== */

body.lh-help-center .lh-help-trouble-wrap {
	margin-top: -44px;
	position: relative;
	z-index: 2;
}

body.lh-help-center .lh-help-trouble {
	display: grid;
	grid-template-columns: 64px 1fr auto;
	align-items: center;
	gap: 22px;
	background: var(--lh-white);
	border: 1.5px solid rgba(233, 96, 59, 0.25);
	border-radius: var(--lh-radius-xl);
	padding: 24px 28px;
	box-shadow: var(--lh-shadow-lg);
	text-decoration: none;
	transition: box-shadow var(--lh-ease) 150ms, transform var(--lh-ease) 150ms;
}

body.lh-help-center .lh-help-trouble:hover {
	transform: translateY(-2px);
}

body.lh-help-center .lh-help-trouble__icon {
	width: 64px;
	height: 64px;
	border-radius: 14px;
	background: rgba(233, 96, 59, 0.12);
	display: flex;
	align-items: center;
	justify-content: center;
}

body.lh-help-center .lh-help-trouble__eyebrow {
	display: inline-block;
	font-family: var(--lh-font-head);
	font-size: 11px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.06em;
	color: var(--lh-coral);
	background: rgba(233, 96, 59, 0.12);
	padding: 3px 10px;
	border-radius: var(--lh-radius-full);
	margin-bottom: 6px;
}

body.lh-help-center .lh-help-trouble__title {
	display: block;
	font-family: var(--lh-font-head);
	font-weight: 700;
	font-size: 21px;
	color: var(--lh-navy);
	margin-bottom: 4px;
}

body.lh-help-center .lh-help-trouble__sub {
	display: block;
	font-size: 14px;
	line-height: 1.5;
	color: var(--lh-fg2);
}

body.lh-help-center .lh-help-trouble__cta {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	font-family: var(--lh-font-head);
	font-weight: 600;
	font-size: 15px;
	color: var(--lh-coral);
	border: 1.5px solid rgba(233, 96, 59, 0.4);
	padding: 12px 20px;
	border-radius: var(--lh-radius-full);
	white-space: nowrap;
}

/* ===========================================================================
   6. Category grid + cards
   ======================================================================== */

body.lh-help-center .lh-help-cat-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 18px;
}

body.lh-help-center .lh-help-cat-card {
	display: block;
	text-decoration: none;
	background: var(--lh-white);
	border: 1px solid var(--lh-sand-300);
	border-radius: var(--lh-radius-lg);
	padding: 24px 22px 20px;
	transition: box-shadow var(--lh-ease) 150ms, border-color var(--lh-ease) 150ms, transform var(--lh-ease) 150ms;
}

body.lh-help-center .lh-help-cat-card:hover {
	box-shadow: var(--lh-shadow-md);
	border-color: rgba(30, 58, 95, 0.18);
	transform: translateY(-2px);
}

body.lh-help-center .lh-help-cat-card__head {
	display: flex;
	align-items: center;
	gap: 12px;
	margin-bottom: 12px;
}

body.lh-help-center .lh-help-cat-card__icon {
	width: 44px;
	height: 44px;
	border-radius: var(--lh-radius-md);
	background: var(--lh-sand-100);
	color: var(--lh-navy);
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
}

body.lh-help-center .lh-help-cat-card__name {
	font-family: var(--lh-font-head);
	font-weight: 600;
	font-size: 17px;
	color: var(--lh-navy);
}

body.lh-help-center .lh-help-cat-card__summary {
	font-size: 13.5px;
	line-height: 1.5;
	color: var(--lh-fg2);
	margin: 0 0 16px;
}

body.lh-help-center .lh-help-cat-card__foot {
	display: flex;
	align-items: center;
	justify-content: space-between;
	font-family: var(--lh-font-mono);
	font-size: 11px;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.04em;
	color: var(--lh-fg3);
}

/* ===========================================================================
   7. Article cards (featured / compact)
   ======================================================================== */

body.lh-help-center .lh-help-article-grid {
	display: grid;
	gap: 18px;
}

body.lh-help-center .lh-help-article-grid--3 {
	grid-template-columns: repeat(3, 1fr);
}

body.lh-help-center .lh-help-article-card {
	display: block;
	text-decoration: none;
	background: var(--lh-white);
	border: 1px solid var(--lh-sand-300);
	border-radius: var(--lh-radius-lg);
	overflow: hidden;
	transition: box-shadow var(--lh-ease) 150ms, transform var(--lh-ease) 150ms;
}

body.lh-help-center .lh-help-article-card:hover {
	box-shadow: var(--lh-shadow-md);
	transform: translateY(-2px);
}

body.lh-help-center .lh-help-article-card--accent {
	border-color: rgba(47, 143, 214, 0.4);
}

body.lh-help-center .lh-help-article-card__image {
	width: 100%;
	height: 150px;
	object-fit: cover;
	display: block;
}

body.lh-help-center .lh-help-article-card__image--placeholder {
	display: flex;
	align-items: center;
	justify-content: center;
	background: var(--lh-bliss-soft);
	color: var(--lh-navy);
	font-family: var(--lh-font-mono);
	font-size: 12px;
	text-transform: uppercase;
	letter-spacing: 0.08em;
}

body.lh-help-center .lh-help-article-card__body {
	padding: 18px 20px 20px;
}

body.lh-help-center .lh-help-article-card__cat {
	font-family: var(--lh-font-mono);
	font-size: 10px;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.08em;
	color: var(--lh-fg3);
	margin-bottom: 6px;
}

body.lh-help-center .lh-help-article-card__title {
	font-family: var(--lh-font-head);
	font-weight: 600;
	font-size: 17px;
	line-height: 1.3;
	color: var(--lh-navy);
	margin: 0 0 8px;
}

body.lh-help-center .lh-help-article-card__excerpt {
	font-size: 14px;
	line-height: 1.55;
	color: var(--lh-fg2);
	margin: 0 0 14px;
}

body.lh-help-center .lh-help-article-card__foot {
	display: flex;
	align-items: center;
	gap: 6px;
	font-size: 12px;
	color: var(--lh-fg3);
}

body.lh-help-center .lh-help-article-card__foot-cta {
	margin-left: auto;
	display: inline-flex;
	align-items: center;
	gap: 4px;
	font-family: var(--lh-font-head);
	font-weight: 600;
	color: var(--lh-ocean);
}

body.lh-help-center .lh-help-article-card--compact {
	padding: 18px 20px;
}

/* ===========================================================================
   8. Two-column: Popular + What's New
   ======================================================================== */

body.lh-help-center .lh-help-twocol {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 48px;
}

body.lh-help-center .lh-help-popular {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-direction: column;
	gap: 4px;
}

body.lh-help-center .lh-help-popular__item {
	display: flex;
	align-items: center;
	gap: 16px;
	padding: 14px 16px;
	border-radius: var(--lh-radius-md);
	transition: background var(--lh-ease) 150ms;
}

body.lh-help-center .lh-help-popular__item:hover {
	background: var(--lh-sand-100);
}

body.lh-help-center .lh-help-popular__num {
	font-family: var(--lh-font-mono);
	font-size: 15px;
	font-weight: 700;
	color: var(--lh-ocean);
	flex-shrink: 0;
}

body.lh-help-center .lh-help-popular__main {
	flex: 1;
	min-width: 0;
}

body.lh-help-center .lh-help-popular__title {
	display: block;
	font-family: var(--lh-font-head);
	font-weight: 600;
	font-size: 15.5px;
	color: var(--lh-navy);
	text-decoration: none;
	line-height: 1.35;
}

body.lh-help-center .lh-help-popular__title:hover {
	color: var(--lh-ocean);
}

body.lh-help-center .lh-help-popular__meta {
	font-size: 12.5px;
	color: var(--lh-fg3);
	margin-top: 2px;
}

body.lh-help-center .lh-help-popular__item > svg {
	color: var(--lh-fg3);
	flex-shrink: 0;
}

/* Changelog / What's New */

body.lh-help-center .lh-help-changelog {
	display: flex;
	flex-direction: column;
	gap: 10px;
}

body.lh-help-center .lh-help-changelog__row {
	display: grid;
	grid-template-columns: 64px 1fr;
	gap: 18px;
	align-items: center;
	padding: 18px 20px;
	background: var(--lh-white);
	border: 1px solid var(--lh-sand-300);
	border-radius: var(--lh-radius-md);
	text-decoration: none;
	transition: box-shadow var(--lh-ease) 150ms;
}

body.lh-help-center .lh-help-changelog__row:hover {
	box-shadow: var(--lh-shadow-md);
}

body.lh-help-center .lh-help-changelog__date {
	font-family: var(--lh-font-mono);
	font-size: 13px;
	font-weight: 700;
	color: var(--lh-navy);
}

body.lh-help-center .lh-help-changelog__kind {
	display: inline-block;
	font-family: var(--lh-font-head);
	font-size: 11px;
	font-weight: 600;
	padding: 2px 9px;
	border-radius: var(--lh-radius-full);
	margin-bottom: 5px;
}

body.lh-help-center .lh-help-changelog__kind--new {
	background: rgba(79, 166, 67, 0.14);
	color: var(--lh-leaf);
}

body.lh-help-center .lh-help-changelog__kind--update {
	background: rgba(47, 143, 214, 0.12);
	color: var(--lh-ocean);
}

body.lh-help-center .lh-help-changelog__title {
	font-family: var(--lh-font-head);
	font-weight: 600;
	font-size: 14.5px;
	color: var(--lh-navy);
	line-height: 1.4;
}

/* Support callout */

body.lh-help-center .lh-help-support-callout {
	margin-top: 18px;
	background: var(--lh-bliss-soft);
	border: 1px solid rgba(47, 143, 214, 0.18);
	border-radius: var(--lh-radius-lg);
	padding: 24px;
}

body.lh-help-center .lh-help-support-callout__eyebrow {
	font-family: var(--lh-font-head);
	font-weight: 700;
	font-size: 16px;
	color: var(--lh-navy);
	margin-bottom: 6px;
}

body.lh-help-center .lh-help-support-callout__body {
	font-size: 14px;
	line-height: 1.55;
	color: var(--lh-fg2);
	margin: 0 0 16px;
}

body.lh-help-center .lh-help-support-callout__btn {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	font-family: var(--lh-font-head);
	font-weight: 600;
	font-size: 14px;
	text-decoration: none;
	padding: 11px 18px;
	border-radius: var(--lh-radius-full);
}

body.lh-help-center .lh-help-support-callout__btn--primary {
	background: var(--lh-ocean);
	color: #fff;
}

body.lh-help-center .lh-help-support-callout__btn--primary:hover {
	background: var(--lh-navy);
}

body.lh-help-center .lh-help-empty__body--boxed {
	padding: 24px;
	background: var(--lh-sand-100);
	border: 1px solid var(--lh-border-subtle);
	border-radius: var(--lh-radius-md);
}

/* ===========================================================================
   9. Breadcrumb
   ======================================================================== */

body.lh-help-center .lh-help-breadcrumb-strip {
	background: var(--lh-sand-100);
	border-bottom: 1px solid var(--lh-sand-300);
	padding: 14px 0;
}

body.lh-help-center .lh-help-breadcrumb {
	list-style: none;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 8px;
	margin: 0;
	padding: 0;
	font-size: 13.5px;
	font-family: var(--lh-font-head);
}

body.lh-help-center .lh-help-breadcrumb a {
	color: var(--lh-ocean);
	text-decoration: none;
}

body.lh-help-center .lh-help-breadcrumb a:hover {
	text-decoration: underline;
}

body.lh-help-center .lh-help-breadcrumb [aria-current="page"] {
	color: var(--lh-fg3);
}

body.lh-help-center .lh-help-breadcrumb-sep {
	color: var(--lh-sand-300);
}

/* ===========================================================================
   10. Category header
   ======================================================================== */

body.lh-help-center .lh-help-cat-header {
	background: var(--lh-sand-100);
	border-bottom: 1px solid var(--lh-sand-300);
	padding: 40px 0 44px;
}

body.lh-help-center .lh-help-cat-header__row {
	display: flex;
	align-items: center;
	gap: 22px;
	margin-bottom: 22px;
}

body.lh-help-center .lh-help-cat-header__icon {
	width: 72px;
	height: 72px;
	border-radius: var(--lh-radius-lg);
	background: var(--lh-white);
	border: 1px solid var(--lh-sand-300);
	color: var(--lh-ocean);
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
}

body.lh-help-center .lh-help-cat-header__text {
	flex: 1;
	min-width: 0;
}

body.lh-help-center .lh-help-cat-header__subhead {
	font-size: 17px;
	line-height: 1.55;
	color: var(--lh-fg2);
	margin: 4px 0 0;
	max-width: 640px;
}

body.lh-help-center .lh-help-cat-header__search-wrap {
	max-width: 480px;
}

/* ===========================================================================
   11. Category body: list + sidebar
   ======================================================================== */

body.lh-help-center .lh-help-cat-body {
	display: grid;
	grid-template-columns: minmax(0, 1fr) 260px;
	gap: 48px;
	padding: 48px 0 72px;
	align-items: start;
}

/* Pinned "Start here" card */

body.lh-help-center .lh-help-pinned {
	display: block;
	text-decoration: none;
	background: var(--lh-white);
	border: 1px solid var(--lh-sand-300);
	border-left: 4px solid var(--lh-coral);
	border-radius: var(--lh-radius-lg);
	padding: 24px 26px;
	margin-bottom: 24px;
	transition: box-shadow var(--lh-ease) 150ms;
}

body.lh-help-center .lh-help-pinned:hover {
	box-shadow: var(--lh-shadow-md);
}

body.lh-help-center .lh-help-pinned__pill {
	display: inline-flex;
	align-items: center;
	gap: 5px;
	font-family: var(--lh-font-head);
	font-size: 11px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.06em;
	color: var(--lh-coral);
	margin-bottom: 8px;
}

body.lh-help-center .lh-help-pinned__title {
	font-family: var(--lh-font-head);
	font-weight: 700;
	font-size: 22px;
	color: var(--lh-navy);
	margin: 0 0 8px;
}

body.lh-help-center .lh-help-pinned__excerpt {
	font-size: 15px;
	line-height: 1.55;
	color: var(--lh-fg2);
	margin: 0 0 14px;
}

body.lh-help-center .lh-help-pinned__foot {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 10px;
	font-size: 13px;
	color: var(--lh-fg3);
}

body.lh-help-center .lh-help-pinned__foot-item {
	display: inline-flex;
	align-items: center;
	gap: 5px;
}

body.lh-help-center .lh-help-pinned__foot-cta {
	margin-left: auto;
	display: inline-flex;
	align-items: center;
	gap: 4px;
	font-family: var(--lh-font-head);
	font-weight: 600;
	color: var(--lh-ocean);
}

/* Article list */

body.lh-help-center .lh-help-list {
	list-style: none;
	margin: 0;
	padding: 0;
	border: 1px solid var(--lh-sand-300);
	border-radius: var(--lh-radius-lg);
	overflow: hidden;
	background: var(--lh-white);
}

body.lh-help-center .lh-help-list__item + .lh-help-list__item {
	border-top: 1px solid var(--lh-border-subtle);
}

body.lh-help-center .lh-help-list__link {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
	padding: 18px 22px;
	text-decoration: none;
	transition: background var(--lh-ease) 150ms;
}

body.lh-help-center .lh-help-list__link:hover {
	background: var(--lh-sand-100);
}

body.lh-help-center .lh-help-list__title {
	font-family: var(--lh-font-head);
	font-weight: 600;
	font-size: 16px;
	color: var(--lh-navy);
}

body.lh-help-center .lh-help-list__excerpt {
	font-size: 13.5px;
	line-height: 1.5;
	color: var(--lh-fg3);
	margin: 4px 0 0;
}

body.lh-help-center .lh-help-list__meta {
	display: flex;
	flex-direction: column;
	gap: 4px;
	flex-shrink: 0;
	text-align: right;
}

body.lh-help-center .lh-help-list__meta-item {
	display: inline-flex;
	align-items: center;
	gap: 5px;
	justify-content: flex-end;
	font-size: 12px;
	color: var(--lh-fg3);
}

/* Empty state */

body.lh-help-center .lh-help-empty {
	display: flex;
	gap: 16px;
	align-items: flex-start;
	padding: 28px;
	background: var(--lh-sand-100);
	border: 1px solid var(--lh-border-subtle);
	border-radius: var(--lh-radius-lg);
}

body.lh-help-center .lh-help-empty__icon {
	color: var(--lh-ocean);
	flex-shrink: 0;
}

body.lh-help-center .lh-help-empty__title {
	font-family: var(--lh-font-head);
	font-weight: 600;
	font-size: 16px;
	color: var(--lh-navy);
	margin-bottom: 4px;
}

body.lh-help-center .lh-help-empty__body {
	font-size: 14px;
	color: var(--lh-fg2);
	line-height: 1.5;
}

/* Sidebar nav */

body.lh-help-center .lh-help-cat-sidebar {
	position: sticky;
	top: 32px;
}

body.lh-help-center .lh-help-cat-nav__head {
	font-family: var(--lh-font-head);
	font-size: 12px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.08em;
	color: var(--lh-fg3);
	margin-bottom: 12px;
}

body.lh-help-center .lh-help-cat-nav__list {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-direction: column;
	gap: 2px;
}

body.lh-help-center .lh-help-cat-nav__link {
	display: flex;
	align-items: center;
	gap: 8px;
	padding: 9px 12px;
	border-radius: var(--lh-radius-md);
	text-decoration: none;
	font-size: 14px;
	color: var(--lh-fg2);
	transition: background var(--lh-ease) 150ms;
}

body.lh-help-center .lh-help-cat-nav__link:hover {
	background: var(--lh-sand-100);
}

body.lh-help-center .lh-help-cat-nav__link.is-active {
	background: rgba(47, 143, 214, 0.10);
	color: var(--lh-navy);
	font-weight: 600;
}

body.lh-help-center .lh-help-cat-nav__name {
	flex: 1;
}

body.lh-help-center .lh-help-cat-nav__count {
	font-family: var(--lh-font-mono);
	font-size: 12px;
	color: var(--lh-fg3);
}

/* Pagination */

body.lh-help-center .lh-help-pagination {
	margin-top: 28px;
	display: flex;
	gap: 8px;
	justify-content: center;
}

body.lh-help-center .lh-help-pagination .page-numbers {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 38px;
	height: 38px;
	padding: 0 12px;
	border-radius: var(--lh-radius-md);
	border: 1px solid var(--lh-sand-300);
	font-family: var(--lh-font-head);
	font-weight: 600;
	font-size: 14px;
	color: var(--lh-navy);
	text-decoration: none;
}

body.lh-help-center .lh-help-pagination .page-numbers.current {
	background: var(--lh-ocean);
	color: #fff;
	border-color: var(--lh-ocean);
}

/* ===========================================================================
   12. Single article essentials (meta row, quick answer, FAQ)
   ======================================================================== */

body.lh-help-center .lh-help-meta-row {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 10px;
	font-size: 12.5px;
	color: var(--lh-fg3);
}

body.lh-help-center .lh-help-meta-row__pill {
	font-family: var(--lh-font-head);
	font-size: 12px;
	font-weight: 600;
	color: var(--lh-ocean);
	background: rgba(47, 143, 214, 0.10);
	padding: 4px 10px;
	border-radius: var(--lh-radius-full);
	text-decoration: none;
}

body.lh-help-center .lh-help-meta-row__item {
	display: inline-flex;
	align-items: center;
	gap: 5px;
}

body.lh-help-center .lh-help-direct-answer {
	background: rgba(47, 143, 214, 0.07);
	border: 1px solid rgba(47, 143, 214, 0.25);
	border-left: 3px solid var(--lh-ocean);
	border-radius: var(--lh-radius-md);
	padding: 18px 20px;
	margin: 24px 0;
}

body.lh-help-center .lh-help-direct-answer__label {
	font-family: var(--lh-font-head);
	font-size: 12px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.06em;
	color: var(--lh-ocean);
	margin-bottom: 6px;
}

body.lh-help-center .lh-help-direct-answer__body {
	font-size: 16px;
	line-height: 1.6;
	color: var(--lh-fg1);
}

body.lh-help-center .lh-help-faq__item {
	border: 1px solid var(--lh-sand-300);
	border-radius: var(--lh-radius-md);
	margin-bottom: 10px;
	overflow: hidden;
}

body.lh-help-center .lh-help-faq__q {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	padding: 16px 18px;
	cursor: pointer;
	font-family: var(--lh-font-head);
	font-weight: 600;
	font-size: 15.5px;
	color: var(--lh-navy);
	list-style: none;
}

body.lh-help-center .lh-help-faq__q::-webkit-details-marker {
	display: none;
}

body.lh-help-center .lh-help-faq__a {
	padding: 0 18px 16px;
	font-size: 15px;
	line-height: 1.6;
	color: var(--lh-fg2);
}

body.lh-help-center .lh-help-faq__item[open] .lh-help-faq__chev {
	transform: rotate(180deg);
}

body.lh-help-center .lh-help-faq__chev {
	transition: transform var(--lh-ease) 150ms;
	color: var(--lh-fg3);
}

/* Single article layout */

body.lh-help-center .lh-help-article__header {
	background: var(--lh-sand-100);
	border-bottom: 1px solid var(--lh-sand-300);
	padding: 36px 0 40px;
}

body.lh-help-center .lh-help-article__header .lh-help-h1 {
	margin: 14px 0 0;
	max-width: 820px;
}

body.lh-help-center .lh-help-article__lede {
	font-size: 18px;
	line-height: 1.55;
	color: var(--lh-fg2);
	max-width: 720px;
	margin: 14px 0 0;
}

body.lh-help-center .lh-help-article__grid {
	display: grid;
	grid-template-columns: 240px minmax(0, 1fr) 280px;
	gap: 48px;
	padding: 48px 0 72px;
	align-items: start;
}

body.lh-help-center .lh-help-toc {
	position: sticky;
	top: 32px;
}

body.lh-help-center .lh-help-toc__head {
	font-family: var(--lh-font-head);
	font-size: 12px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.08em;
	color: var(--lh-fg3);
	margin-bottom: 12px;
}

body.lh-help-center .lh-help-toc__nav {
	display: flex;
	flex-direction: column;
	gap: 2px;
}

body.lh-help-center .lh-help-toc__nav a {
	font-size: 14px;
	line-height: 1.4;
	color: var(--lh-fg2);
	text-decoration: none;
	padding: 8px 12px;
	border-left: 2px solid transparent;
}

body.lh-help-center .lh-help-toc__nav a:hover {
	color: var(--lh-navy);
	border-left-color: var(--lh-ocean);
}

body.lh-help-center .lh-help-prose {
	font-size: 17px;
	line-height: 1.7;
	color: var(--lh-fg2);
}

body.lh-help-center .lh-help-prose h2 {
	font-family: var(--lh-font-head);
	font-weight: 700;
	font-size: 26px;
	color: var(--lh-navy);
	letter-spacing: -0.005em;
	margin: 40px 0 14px;
	scroll-margin-top: 32px;
}

body.lh-help-center .lh-help-prose h3 {
	font-family: var(--lh-font-head);
	font-weight: 600;
	font-size: 20px;
	color: var(--lh-navy);
	margin: 28px 0 10px;
}

body.lh-help-center .lh-help-prose p {
	margin: 0 0 16px;
}

body.lh-help-center .lh-help-prose ul,
body.lh-help-center .lh-help-prose ol {
	margin: 0 0 16px;
	padding-left: 24px;
}

body.lh-help-center .lh-help-prose li {
	margin-bottom: 8px;
}

body.lh-help-center .lh-help-prose a {
	color: var(--lh-ocean);
	text-decoration: underline;
}

body.lh-help-center .lh-help-prose table {
	width: 100%;
	border-collapse: collapse;
	margin: 0 0 16px;
	font-size: 15px;
}

body.lh-help-center .lh-help-prose th,
body.lh-help-center .lh-help-prose td {
	border: 1px solid var(--lh-sand-300);
	padding: 10px 14px;
	text-align: left;
}

body.lh-help-center .lh-help-prose th {
	background: var(--lh-sand-100);
	font-family: var(--lh-font-head);
	color: var(--lh-navy);
}

/* Callout group blocks pasted from the article markup keep their inline styles;
   this just gives a sensible default if the inline tint is stripped. */
body.lh-help-center .lh-help-prose .wp-block-group {
	border-radius: var(--lh-radius-md);
	margin: 0 0 18px;
}

body.lh-help-center .lh-help-feedback {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 24px;
	border: 1px solid var(--lh-sand-300);
	border-radius: var(--lh-radius-lg);
	padding: 22px 24px;
	margin: 40px 0 0;
}

body.lh-help-center .lh-help-feedback__title {
	font-family: var(--lh-font-head);
	font-weight: 600;
	font-size: 17px;
	color: var(--lh-navy);
	margin-bottom: 4px;
}

body.lh-help-center .lh-help-feedback__sub {
	font-size: 13.5px;
	color: var(--lh-fg3);
}

body.lh-help-center .lh-help-feedback__actions {
	display: flex;
	gap: 10px;
	flex-shrink: 0;
}

body.lh-help-center .lh-help-feedback__btn {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	cursor: pointer;
	background: var(--lh-white);
	border: 1px solid var(--lh-sand-300);
	border-radius: var(--lh-radius-full);
	font-family: var(--lh-font-head);
	font-weight: 600;
	font-size: 14px;
	color: var(--lh-navy);
	padding: 10px 18px;
	transition: border-color var(--lh-ease) 150ms, background var(--lh-ease) 150ms;
}

body.lh-help-center .lh-help-feedback__btn:hover {
	border-color: var(--lh-ocean);
	background: var(--lh-sand-100);
}

body.lh-help-center .lh-help-related {
	position: sticky;
	top: 32px;
	display: flex;
	flex-direction: column;
	gap: 12px;
}

body.lh-help-center .lh-help-related__head {
	font-family: var(--lh-font-head);
	font-size: 12px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.08em;
	color: var(--lh-fg3);
}

/* ===========================================================================
   13. Responsive
   ======================================================================== */

@media (max-width: 980px) {
	body.lh-help-center .lh-help-cat-grid {
		grid-template-columns: repeat(2, 1fr);
	}
	body.lh-help-center .lh-help-twocol {
		grid-template-columns: 1fr;
		gap: 48px;
	}
	body.lh-help-center .lh-help-cat-body {
		grid-template-columns: 1fr;
	}
	body.lh-help-center .lh-help-cat-sidebar {
		position: static;
		order: -1;
	}
	body.lh-help-center .lh-help-article__grid {
		grid-template-columns: 1fr;
		gap: 32px;
	}
	body.lh-help-center .lh-help-toc,
	body.lh-help-center .lh-help-related {
		position: static;
	}
}

@media (max-width: 680px) {
	body.lh-help-center .lh-help-article-grid--3 {
		grid-template-columns: 1fr;
	}
	body.lh-help-center .lh-help-cat-grid {
		grid-template-columns: 1fr;
	}
	body.lh-help-center .lh-help-trouble {
		grid-template-columns: 1fr;
		text-align: left;
		gap: 14px;
	}
	body.lh-help-center .lh-help-trouble__cta {
		justify-content: center;
	}
	body.lh-help-center .lh-help-search {
		flex-wrap: wrap;
		border-radius: var(--lh-radius-lg);
	}
	body.lh-help-center .lh-help-search__submit {
		width: 100%;
	}
	body.lh-help-center .lh-help-cat-header__row {
		flex-direction: column;
		align-items: flex-start;
		gap: 14px;
	}
}
