/* ---------------------------------------------------------------
   ChannelDock Help Center — page styles
   --------------------------------------------------------------- */

:root {
  --cd-help-text: #1f2937;
  --cd-help-muted: #6b7280;
  --cd-help-border: #e5e7eb;
  --cd-help-bg-soft: #f8fafc;
  --cd-help-accent: #0d6efd;
  --cd-help-radius: 10px;
}

/* ===== Search bar ================================================*/
.cd-help-search-bar {
  background: #fff;
  padding: 1.25rem 0;
  border-bottom: 1px solid var(--cd-help-border);
}
.cd-help-search-bar__inner {
  max-width: 560px;
  margin: 0 auto;
}
.cd-help-search-bar--hero {
  background: transparent;
  border: 0;
  padding: 0;
  margin-top: 1.5rem;
}

/* ===== Hero (landing / collection / section) =====================*/
.cd-help-hero {
  background: linear-gradient(180deg, #f8fafc 0%, #fff 100%);
  padding: 3rem 0 2.5rem;
  border-bottom: 1px solid var(--cd-help-border);
}
.cd-help-hero--landing {
  text-align: center;
  padding: 4rem 0 3rem;
  background:
    radial-gradient(80% 60% at 50% 0%, rgba(13, 110, 253, 0.06), transparent 70%),
    linear-gradient(180deg, #f8fafc 0%, #fff 100%);
}
.cd-help-hero__title {
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--cd-help-text);
  margin: 0 0 0.5rem;
  line-height: 1.1;
}
.cd-help-hero--landing .cd-help-hero__title {
  font-size: clamp(2.25rem, 5vw, 3.25rem);
}
.cd-help-hero__lede {
  font-size: 1.0625rem;
  color: var(--cd-help-muted);
  margin: 0;
}
.cd-help-hero--landing .cd-help-hero__lede {
  font-size: 1.125rem;
  max-width: 560px;
  margin: 0 auto;
}
.cd-help-hero .breadcrumb { margin-bottom: 1rem; }

/* ===== Card grid (landing + collection) ==========================*/
.cd-help-section-grid {
  padding: 3rem 0 4rem;
  background: #fff;
}
.cd-help-card {
  position: relative;
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: 1.5rem 1.5rem 1.75rem;
  background: #fff;
  border: 1px solid var(--cd-help-border);
  border-radius: var(--cd-help-radius);
  color: var(--cd-help-text);
  text-decoration: none;
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
  overflow: hidden;
}
.cd-help-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 3px;
  background: linear-gradient(90deg, var(--cd-help-accent), #6610f2);
  opacity: 0;
  transition: opacity 0.18s ease;
}
.cd-help-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 36px rgba(15, 23, 42, 0.08);
  border-color: #c7d2fe;
  color: var(--cd-help-text);
}
.cd-help-card:hover::before { opacity: 1; }
.cd-help-card__header {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 0.75rem;
}
.cd-help-card__title {
  font-size: 1.125rem;
  font-weight: 600;
  margin: 0;
  color: var(--cd-help-text);
  letter-spacing: -0.005em;
}
.cd-help-card__count {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--cd-help-muted);
  background: var(--cd-help-bg-soft);
  padding: 0.2rem 0.55rem;
  border-radius: 999px;
  white-space: nowrap;
  flex-shrink: 0;
}
.cd-help-card__list {
  list-style: none;
  padding: 0;
  margin: 0 0 0.5rem;
  font-size: 0.875rem;
  color: var(--cd-help-muted);
  line-height: 1.6;
  flex-grow: 1;
}
.cd-help-card__list li {
  padding: 0.125rem 0;
  position: relative;
  padding-left: 1rem;
}
.cd-help-card__list li::before {
  content: "›";
  position: absolute;
  left: 0;
  color: #cbd5e1;
}
.cd-help-card__more {
  color: var(--cd-help-accent) !important;
  font-weight: 500;
}
.cd-help-card__more::before { content: "" !important; }
.cd-help-card__arrow {
  align-self: flex-end;
  font-size: 1.25rem;
  color: var(--cd-help-accent);
  opacity: 0.6;
  transition: transform 0.18s ease, opacity 0.18s ease;
  margin-top: 0.5rem;
}
.cd-help-card:hover .cd-help-card__arrow {
  transform: translateX(4px);
  opacity: 1;
}

/* ===== Landing-page icon cards ===================================*/
.cd-help-card--icon {
  padding: 2rem 1.75rem 1.75rem;
}
.cd-help-card__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: 14px;
  margin-bottom: 1.25rem;
  font-size: 1.4rem;
  color: var(--cd-help-accent);
  background: linear-gradient(135deg, rgba(13, 110, 253, 0.10), rgba(102, 16, 242, 0.10));
  transition: transform 0.18s ease, background 0.18s ease;
}
.cd-help-card:hover .cd-help-card__icon {
  transform: scale(1.05) rotate(-2deg);
  background: linear-gradient(135deg, rgba(13, 110, 253, 0.18), rgba(102, 16, 242, 0.18));
}
.cd-help-card--icon .cd-help-card__title {
  font-size: 1.2rem;
  margin: 0 0 0.25rem;
}
.cd-help-card__meta {
  font-size: 0.8125rem;
  color: var(--cd-help-muted);
  margin: 0 0 1rem;
  font-weight: 500;
}
.cd-help-card--icon .cd-help-card__list {
  margin-bottom: 1.25rem;
}
.cd-help-card__cta {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--cd-help-accent);
  margin-top: auto;
  opacity: 0.85;
  transition: gap 0.18s ease, opacity 0.18s ease;
}
.cd-help-card__cta i { font-size: 0.75rem; transition: transform 0.18s ease; }
.cd-help-card:hover .cd-help-card__cta {
  opacity: 1;
  gap: 0.6rem;
}
.cd-help-card:hover .cd-help-card__cta i { transform: translateX(2px); }

/* Per-collection icon accent (subtle hue per category). */
.cd-help-card[data-coll="getting-started"] .cd-help-card__icon { color: #16a34a; background: linear-gradient(135deg, rgba(22,163,74,.12), rgba(22,163,74,.05)); }
.cd-help-card[data-coll="sales-channels"] .cd-help-card__icon { color: #2563eb; background: linear-gradient(135deg, rgba(37,99,235,.12), rgba(37,99,235,.05)); }
.cd-help-card[data-coll="products-inventory"] .cd-help-card__icon { color: #f59e0b; background: linear-gradient(135deg, rgba(245,158,11,.14), rgba(245,158,11,.06)); }
.cd-help-card[data-coll="orders"] .cd-help-card__icon { color: #db2777; background: linear-gradient(135deg, rgba(219,39,119,.12), rgba(219,39,119,.05)); }
.cd-help-card[data-coll="picking-packing"] .cd-help-card__icon { color: #9333ea; background: linear-gradient(135deg, rgba(147,51,234,.12), rgba(147,51,234,.05)); }
.cd-help-card[data-coll="shipping"] .cd-help-card__icon { color: #0891b2; background: linear-gradient(135deg, rgba(8,145,178,.12), rgba(8,145,178,.05)); }
.cd-help-card[data-coll="fulfillment-network"] .cd-help-card__icon { color: #0d9488; background: linear-gradient(135deg, rgba(13,148,136,.12), rgba(13,148,136,.05)); }
.cd-help-card[data-coll="for-fulfillment-centers"] .cd-help-card__icon { color: #4f46e5; background: linear-gradient(135deg, rgba(79,70,229,.12), rgba(79,70,229,.05)); }
.cd-help-card[data-coll="integrations-api"] .cd-help-card__icon { color: #475569; background: linear-gradient(135deg, rgba(71,85,105,.12), rgba(71,85,105,.05)); }
.cd-help-card[data-coll="account-billing"] .cd-help-card__icon { color: #ea580c; background: linear-gradient(135deg, rgba(234,88,12,.12), rgba(234,88,12,.05)); }
.cd-help-card[data-coll="support"] .cd-help-card__icon { color: #be185d; background: linear-gradient(135deg, rgba(190,24,93,.12), rgba(190,24,93,.05)); }
.cd-help-card[data-coll="point-of-sale"] .cd-help-card__icon { color: #65a30d; background: linear-gradient(135deg, rgba(101,163,13,.12), rgba(101,163,13,.05)); }

/* ===== Collection page hero icon =================================*/
.cd-help-hero__head {
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
}
.cd-help-hero__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  border-radius: 16px;
  font-size: 1.75rem;
  flex-shrink: 0;
  color: var(--cd-help-accent);
  background: linear-gradient(135deg, rgba(13, 110, 253, 0.12), rgba(102, 16, 242, 0.10));
  box-shadow: 0 4px 14px rgba(15, 23, 42, 0.06);
}
/* Reuse the per-collection palette for the hero icon too. */
.cd-help-hero[data-coll="getting-started"] .cd-help-hero__icon { color: #16a34a; background: linear-gradient(135deg, rgba(22,163,74,.14), rgba(22,163,74,.06)); }
.cd-help-hero[data-coll="sales-channels"] .cd-help-hero__icon { color: #2563eb; background: linear-gradient(135deg, rgba(37,99,235,.14), rgba(37,99,235,.06)); }
.cd-help-hero[data-coll="products-inventory"] .cd-help-hero__icon { color: #f59e0b; background: linear-gradient(135deg, rgba(245,158,11,.16), rgba(245,158,11,.06)); }
.cd-help-hero[data-coll="orders"] .cd-help-hero__icon { color: #db2777; background: linear-gradient(135deg, rgba(219,39,119,.14), rgba(219,39,119,.06)); }
.cd-help-hero[data-coll="picking-packing"] .cd-help-hero__icon { color: #9333ea; background: linear-gradient(135deg, rgba(147,51,234,.14), rgba(147,51,234,.06)); }
.cd-help-hero[data-coll="shipping"] .cd-help-hero__icon { color: #0891b2; background: linear-gradient(135deg, rgba(8,145,178,.14), rgba(8,145,178,.06)); }
.cd-help-hero[data-coll="fulfillment-network"] .cd-help-hero__icon { color: #0d9488; background: linear-gradient(135deg, rgba(13,148,136,.14), rgba(13,148,136,.06)); }
.cd-help-hero[data-coll="for-fulfillment-centers"] .cd-help-hero__icon { color: #4f46e5; background: linear-gradient(135deg, rgba(79,70,229,.14), rgba(79,70,229,.06)); }
.cd-help-hero[data-coll="integrations-api"] .cd-help-hero__icon { color: #475569; background: linear-gradient(135deg, rgba(71,85,105,.14), rgba(71,85,105,.06)); }
.cd-help-hero[data-coll="account-billing"] .cd-help-hero__icon { color: #ea580c; background: linear-gradient(135deg, rgba(234,88,12,.14), rgba(234,88,12,.06)); }
.cd-help-hero[data-coll="support"] .cd-help-hero__icon { color: #be185d; background: linear-gradient(135deg, rgba(190,24,93,.14), rgba(190,24,93,.06)); }
.cd-help-hero[data-coll="point-of-sale"] .cd-help-hero__icon { color: #65a30d; background: linear-gradient(135deg, rgba(101,163,13,.14), rgba(101,163,13,.06)); }

/* ===== Section card (collection page) ============================*/
.cd-help-card--section {
  flex-direction: row;
  align-items: flex-start;
  gap: 1.1rem;
  padding: 1.5rem 1.5rem 1.25rem;
}
.cd-help-card--section .cd-help-card__icon {
  width: 44px;
  height: 44px;
  border-radius: 11px;
  font-size: 1.15rem;
  margin: 0;
  flex-shrink: 0;
}
.cd-help-card--section .cd-help-card__body {
  flex: 1;
  min-width: 0;
}
.cd-help-card--section .cd-help-card__header {
  margin-bottom: 0.5rem;
}
.cd-help-card--section .cd-help-card__title {
  font-size: 1.0625rem;
}
.cd-help-card--section .cd-help-card__list {
  font-size: 0.85rem;
  margin-bottom: 0;
}
.cd-help-card--section .cd-help-card__cta {
  position: absolute;
  right: 1.5rem;
  bottom: 1.25rem;
}
.cd-help-card--section { padding-bottom: 3rem; }

@media (max-width: 575.98px) {
  .cd-help-card--section .cd-help-card__cta { position: static; margin-top: 0.75rem; }
  .cd-help-card--section { padding-bottom: 1.25rem; }
}

/* ===== Article list (section page) ===============================*/
.cd-help-article-list-wrap {
  padding: 2.5rem 0 4rem;
  background: #fff;
}
.cd-help-article-list {
  list-style: none;
  padding: 0;
  margin: 0;
  max-width: 820px;
  border: 1px solid var(--cd-help-border);
  border-radius: var(--cd-help-radius);
  overflow: hidden;
  background: #fff;
}
.cd-help-article-list > li + li {
  border-top: 1px solid var(--cd-help-border);
}
.cd-help-article-list__item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 1.25rem;
  text-decoration: none;
  color: var(--cd-help-text);
  transition: background 0.12s ease;
}
.cd-help-article-list__item:hover {
  background: var(--cd-help-bg-soft);
  color: var(--cd-help-text);
}
.cd-help-article-list__title {
  display: block;
  font-weight: 600;
  font-size: 0.9375rem;
  margin-bottom: 0.15rem;
}
.cd-help-article-list__desc {
  display: block;
  font-size: 0.8125rem;
  color: var(--cd-help-muted);
  line-height: 1.5;
}
.cd-help-article-list__arrow {
  color: var(--cd-help-accent);
  opacity: 0.5;
  transition: transform 0.18s ease, opacity 0.18s ease;
  flex-shrink: 0;
}
.cd-help-article-list__item:hover .cd-help-article-list__arrow {
  transform: translateX(4px);
  opacity: 1;
}

/* ===== Sidebar ===================================================*/
.cd-help-sidebar {
  position: sticky;
  top: 96px;
  max-height: calc(100vh - 112px);
  overflow-y: auto;
  padding-right: 0.5rem;
  font-size: 0.9375rem;
}
.cd-help-sidebar::-webkit-scrollbar { width: 6px; }
.cd-help-sidebar::-webkit-scrollbar-thumb {
  background: #e5e7eb; border-radius: 3px;
}

.cd-help-sidebar__coll {
  border-bottom: 1px solid var(--cd-help-border);
  padding: 0.5rem 0;
}
.cd-help-sidebar__coll > summary {
  list-style: none;
  cursor: pointer;
  font-weight: 600;
  color: var(--cd-help-text);
  padding: 0.4rem 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.cd-help-sidebar__coll > summary::-webkit-details-marker { display: none; }
.cd-help-sidebar__coll > summary::after {
  content: "+";
  color: var(--cd-help-muted);
  font-weight: 400;
  margin-left: 0.5rem;
}
.cd-help-sidebar__coll[open] > summary::after { content: "−"; }

.cd-help-sidebar__sections {
  list-style: none;
  padding: 0 0 0 0.25rem;
  margin: 0.25rem 0 0.5rem;
}
.cd-help-sidebar__sections > li { margin: 0.15rem 0; }

.cd-help-sidebar__sect { padding: 0.1rem 0; }
.cd-help-sidebar__section {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.3rem 0;
  color: var(--cd-help-muted);
  text-decoration: none;
  border-radius: 4px;
  cursor: pointer;
  list-style: none;
  user-select: none;
}
.cd-help-sidebar__section::-webkit-details-marker { display: none; }
.cd-help-sidebar__section::after {
  content: "+";
  color: #cbd5e1;
  font-weight: 400;
  margin-left: 0.5rem;
}
.cd-help-sidebar__sect[open] > .cd-help-sidebar__section::after { content: "−"; }
.cd-help-sidebar__section:hover { color: var(--cd-help-accent); }
.cd-help-sidebar__section.is-active {
  color: var(--cd-help-text);
  font-weight: 600;
}

.cd-help-sidebar__articles {
  list-style: none;
  padding: 0.25rem 0 0.25rem 0.75rem;
  margin: 0 0 0.5rem;
  border-left: 2px solid var(--cd-help-border);
}
.cd-help-sidebar__articles > li { margin: 0.1rem 0; }
.cd-help-sidebar__article {
  display: block;
  padding: 0.2rem 0.5rem;
  color: var(--cd-help-muted);
  font-size: 0.875rem;
  text-decoration: none;
  border-radius: 4px;
  line-height: 1.35;
}
.cd-help-sidebar__article:hover {
  color: var(--cd-help-accent);
  background: var(--cd-help-bg-soft);
}
.cd-help-sidebar__article.is-current {
  color: var(--cd-help-text);
  background: var(--cd-help-bg-soft);
  font-weight: 600;
}

/* ===== Article body ==============================================*/
.cd-help-detail-lp article {
  max-width: 760px;
}
.cd-help-detail-lp h1 {
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--cd-help-text);
  line-height: 1.2;
}

/* Reset Intercom-imported inline styles. Articles arrive as HTML
   converted to Markdown; some HTML survives with font-family/font-size/
   color/width attributes. We force a unified look, but exclude <pre>
   and inline <code> because they own their own background + color. */
.cd-help-body, .cd-help-body :not(pre):not(code):not(pre *):not(code *) {
  font-family: inherit !important;
}
.cd-help-body :not(pre):not(code):not(pre *):not(code *) {
  background-color: transparent !important;
}
.cd-help-body p, .cd-help-body li, .cd-help-body span:not(pre *):not(code *),
.cd-help-body div:not(pre *), .cd-help-body td, .cd-help-body th {
  font-size: 1rem !important;
  color: var(--cd-help-text) !important;
  line-height: 1.7 !important;
}
.cd-help-body h1, .cd-help-body h2, .cd-help-body h3,
.cd-help-body h4, .cd-help-body h5, .cd-help-body h6 {
  color: var(--cd-help-text) !important;
}
/* Inline <code> (outside a <pre>) — pink-on-soft-bg. */
.cd-help-body :not(pre) > code {
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace !important;
  font-size: 0.875em !important;
  color: #be185d !important;
  background: var(--cd-help-bg-soft) !important;
  border: 1px solid var(--cd-help-border) !important;
  padding: 0.1rem 0.4rem !important;
  border-radius: 4px !important;
}
/* <pre> block — light text on dark background. */
.cd-help-body pre {
  background: #0f172a !important;
  color: #e2e8f0 !important;
  padding: 1rem 1.25rem !important;
  border-radius: var(--cd-help-radius) !important;
  overflow-x: auto !important;
  font-size: 0.875rem !important;
  line-height: 1.55 !important;
}
.cd-help-body pre code, .cd-help-body pre code * {
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace !important;
  color: #e2e8f0 !important;
  background: transparent !important;
  border: 0 !important;
  padding: 0 !important;
  font-size: 1em !important;
}
.cd-help-body a, .cd-help-body a * {
  color: var(--cd-help-accent) !important;
}

.cd-help-body {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--cd-help-text);
}
.cd-help-body > * + * { margin-top: 1rem; }
.cd-help-body h2 {
  margin-top: 2.5rem;
  margin-bottom: 0.5rem;
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: -0.01em;
}
.cd-help-body h3 {
  margin-top: 2rem;
  margin-bottom: 0.5rem;
  font-size: 1.2rem;
  font-weight: 600;
}
.cd-help-body p { margin: 0 0 1rem; }
.cd-help-body ul, .cd-help-body ol { padding-left: 1.25rem; margin: 0.5rem 0 1rem; }
.cd-help-body li { margin: 0.25rem 0; }

.cd-help-body a {
  color: var(--cd-help-accent);
  text-decoration: underline;
  text-underline-offset: 2px;
}
.cd-help-body a:hover { text-decoration-thickness: 2px; }

.cd-help-body img {
  display: block;
  max-width: 100%;
  width: auto;
  height: auto;
  max-height: 480px;
  margin: 1.5rem auto;
  border: 1px solid var(--cd-help-border);
  border-radius: var(--cd-help-radius);
  box-shadow: 0 4px 14px rgba(15, 23, 42, 0.05);
}

.cd-help-body blockquote {
  margin: 1.5rem 0;
  padding: 0.75rem 1rem;
  border-left: 4px solid var(--cd-help-accent);
  background: var(--cd-help-bg-soft);
  color: var(--cd-help-text);
  border-radius: 0 var(--cd-help-radius) var(--cd-help-radius) 0;
}

.cd-help-body pre {
  background: #0f172a;
  color: #e2e8f0;
  padding: 1rem 1.25rem;
  border-radius: var(--cd-help-radius);
  overflow-x: auto;
  font-size: 0.875rem;
  line-height: 1.55;
}
.cd-help-body code {
  background: var(--cd-help-bg-soft);
  border: 1px solid var(--cd-help-border);
  padding: 0.1rem 0.4rem;
  border-radius: 4px;
  font-size: 0.875em;
  color: #be185d;
}
.cd-help-body pre code {
  background: transparent;
  border: 0;
  padding: 0;
  color: inherit;
}

.cd-help-body table {
  width: 100%;
  border-collapse: collapse;
  margin: 1.25rem 0;
  font-size: 0.9375rem;
}
.cd-help-body th, .cd-help-body td {
  border: 1px solid var(--cd-help-border);
  padding: 0.5rem 0.75rem;
  text-align: left;
  vertical-align: top;
}
.cd-help-body th { background: var(--cd-help-bg-soft); font-weight: 600; }

.cd-help-body hr {
  border: 0;
  border-top: 1px solid var(--cd-help-border);
  margin: 2rem 0;
}

.cd-help-body iframe,
.cd-help-body video {
  display: block;
  max-width: 100%;
  margin: 1.5rem auto;
  border: 1px solid var(--cd-help-border);
  border-radius: var(--cd-help-radius);
  aspect-ratio: 16 / 9;
  width: 100%;
  height: auto;
}

/* ===== Breadcrumbs ===============================================*/
.breadcrumb { font-size: 0.875rem; }
.breadcrumb-item + .breadcrumb-item::before { content: "›"; color: var(--cd-help-muted); }
.breadcrumb a { color: var(--cd-help-muted); text-decoration: none; }
.breadcrumb a:hover { color: var(--cd-help-accent); }

/* ===== Feedback widget ===========================================*/
.cd-help-feedback {
  margin: 3rem 0 1.5rem;
  padding: 1.25rem;
  border: 1px solid var(--cd-help-border);
  border-radius: var(--cd-help-radius);
  background: var(--cd-help-bg-soft);
  text-align: center;
}
.cd-help-feedback p { margin-bottom: 0.75rem; }
.cd-help-feedback .btn { min-width: 80px; }

/* ===== Pagefind UI tweaks ========================================*/
:root {
  --pagefind-ui-scale: 0.9;
  --pagefind-ui-primary: var(--cd-help-accent);
  --pagefind-ui-text: var(--cd-help-text);
  --pagefind-ui-background: #fff;
  --pagefind-ui-border: var(--cd-help-border);
  --pagefind-ui-border-radius: 8px;
  --pagefind-ui-border-width: 1px;
  --pagefind-ui-font: inherit;
}
.pagefind-ui__search-input {
  background: #fff;
}
.pagefind-ui__result {
  border-top: 1px solid var(--cd-help-border);
  padding: 1rem 0;
}
.pagefind-ui__result-thumb { display: none; }

/* ===== Responsive ================================================*/
@media (max-width: 991.98px) {
  .cd-help-sidebar { position: static; max-height: none; }
  .cd-help-detail-lp article { max-width: none; }
}

/* ===== Mobile sidebar toggle ====================================*/
.cd-help-sidebar-mobile {
  border: 1px solid var(--cd-help-border);
  border-radius: var(--cd-help-radius);
  background: #fff;
  padding: 0;
  overflow: hidden;
}
.cd-help-sidebar-mobile > summary {
  list-style: none;
  cursor: pointer;
  padding: 0.85rem 1rem;
  font-weight: 600;
  color: var(--cd-help-text);
  display: flex;
  align-items: center;
  justify-content: space-between;
  user-select: none;
}
.cd-help-sidebar-mobile > summary::-webkit-details-marker { display: none; }
.cd-help-sidebar-mobile > summary::after {
  content: "+";
  color: var(--cd-help-muted);
  font-weight: 400;
  font-size: 1.25rem;
  line-height: 1;
}
.cd-help-sidebar-mobile[open] > summary::after { content: "−"; }
.cd-help-sidebar-mobile[open] > summary {
  border-bottom: 1px solid var(--cd-help-border);
}
.cd-help-sidebar-mobile .cd-help-sidebar {
  padding: 0.75rem 1rem 1rem;
  max-height: 60vh;
}
