/**
 * LinkX Help Center — CoralBold redesign
 * Scoped to .lx-dc-help (cream paper / coral / teal)
 * Class prefix: lx-hc-
 */

.lx-dc-help {
  --coral: #FF6B4A;
  --coral-deep: #E85535;
  --teal: #14806E;
  --bg: #FAF6F1;
  --paper: #fff;
  --ink: #2A211C;
  --muted: #756A60;
  --line: rgba(42, 33, 28, 0.08);
  --line-strong: rgba(42, 33, 28, 0.1);
  --display: "Bricolage Grotesque", system-ui, sans-serif;
  --body: "Plus Jakarta Sans", system-ui, sans-serif;
  --mono: "Space Mono", ui-monospace, monospace;

  background:
    radial-gradient(circle at 1px 1px, color-mix(in srgb, var(--ink) 5%, transparent) 1px, transparent 0) 0 0 / 24px 24px,
    var(--bg);
  color: var(--ink);
  font-family: var(--body);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  padding-bottom: 48px;
}

.lx-dc-help *,
.lx-dc-help *::before,
.lx-dc-help *::after {
  box-sizing: border-box;
}

.lx-dc-help ::selection {
  background: var(--coral);
  color: #fff;
}

.lx-dc-help a {
  color: var(--coral-deep);
  text-decoration: none;
}

.lx-dc-help a:hover {
  color: var(--coral);
}

.lx-dc-help .lx-hc-wrap {
  max-width: 1160px;
  margin: 0 auto;
  padding-left: 32px;
  padding-right: 32px;
}

.lx-dc-help .lx-hc-wrap--topic {
  max-width: 1120px;
}

.lx-dc-help .lx-hc-wrap--article {
  max-width: 1080px;
}

/* ------------------------------------------------------------------ */
/* Index hero + search                                                 */
/* ------------------------------------------------------------------ */

.lx-dc-help .lx-hc-hero {
  max-width: 820px;
  margin: 0 auto;
  padding: clamp(120px, 15vh, 152px) 32px 20px;
  text-align: center;
}

.lx-dc-help .lx-hc-eyebrow {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--teal);
  font-weight: 700;
  line-height: 1.3;
  margin: 0 0 16px;
}

.lx-dc-help .lx-hc-hero h1 {
  font-family: var(--display);
  font-weight: 800;
  font-size: clamp(42px, 5vw, 56px);
  line-height: 1.05;
  letter-spacing: -0.03em;
  margin: 0 0 18px;
  color: var(--ink);
  text-wrap: pretty;
}

.lx-dc-help .lx-hc-hero > p {
  font-size: 18px;
  line-height: 1.55;
  color: var(--muted);
  max-width: 520px;
  margin: 0 auto 28px;
  text-wrap: pretty;
}

.lx-dc-help .lx-hc-search {
  max-width: 600px;
  margin: 0 auto;
  background: var(--paper);
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  padding: 8px 8px 8px 20px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: 0 26px 54px -30px rgba(42, 33, 28, 0.5);
}

.lx-dc-help .lx-hc-search-icon {
  color: var(--teal);
  font-size: 17px;
  flex-shrink: 0;
  line-height: 1;
}

.lx-dc-help .lx-hc-search input {
  flex: 1;
  min-width: 0;
  border: none;
  outline: none;
  background: transparent;
  font-family: inherit;
  font-size: 16px;
  color: var(--ink);
  padding: 12px 0;
}

.lx-dc-help .lx-hc-search input::placeholder {
  color: #A99E93;
}

.lx-dc-help .lx-hc-search button {
  flex-shrink: 0;
  background: var(--coral);
  color: #fff;
  border: none;
  font-family: inherit;
  font-weight: 700;
  font-size: 15px;
  padding: 13px 22px;
  border-radius: 999px;
  cursor: pointer;
  transition: filter 0.15s ease;
}

.lx-dc-help .lx-hc-search button:hover {
  filter: brightness(1.05);
}

.lx-dc-help .lx-hc-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
  margin-top: 16px;
  align-items: center;
}

.lx-dc-help .lx-hc-tags-label {
  font-size: 13px;
  color: var(--muted);
}

.lx-dc-help .lx-hc-tags a {
  font-size: 13px;
  font-weight: 600;
  color: var(--teal);
}

.lx-dc-help .lx-hc-tags a:hover {
  color: var(--coral);
}

/* ------------------------------------------------------------------ */
/* Category cards (index)                                              */
/* ------------------------------------------------------------------ */

.lx-dc-help .lx-hc-cats {
  padding: 44px 32px 40px;
  max-width: 1160px;
  margin: 0 auto;
}

.lx-dc-help .lx-hc-cats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.lx-dc-help .lx-hc-cat {
  display: block;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 28px;
  box-shadow: 0 20px 44px -34px rgba(42, 33, 28, 0.4);
  color: inherit;
  transition: transform 0.18s ease, border-color 0.18s ease;
}

.lx-dc-help .lx-hc-cat:hover {
  transform: translateY(-4px);
  color: inherit;
  border-color: color-mix(in srgb, var(--coral) 35%, var(--line));
}

.lx-dc-help .lx-hc-cat-mark {
  width: 44px;
  height: 44px;
  border-radius: 13px;
  background: color-mix(in srgb, var(--teal) 12%, transparent);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  color: var(--teal);
  font-family: var(--mono);
  font-weight: 700;
  font-size: 16px;
}

.lx-dc-help .lx-hc-cat-mark i,
.lx-dc-help .lx-hc-cat-mark .lx-hc-emoji {
  font-size: 18px;
  font-family: inherit;
  font-weight: 400;
}

.lx-dc-help .lx-hc-cat h3 {
  font-family: var(--display);
  font-weight: 700;
  font-size: 20px;
  margin: 0 0 8px;
  color: var(--ink);
}

.lx-dc-help .lx-hc-cat p {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.55;
  margin: 0 0 14px;
}

.lx-dc-help .lx-hc-cat-count {
  font-weight: 700;
  font-size: 14px;
  color: var(--coral);
}

/* ------------------------------------------------------------------ */
/* Popular articles (index)                                            */
/* ------------------------------------------------------------------ */

.lx-dc-help .lx-hc-popular {
  max-width: 1160px;
  margin: 0 auto;
  padding: 8px 32px 56px;
}

.lx-dc-help .lx-hc-sec-head {
  max-width: 640px;
  margin-bottom: 30px;
}

.lx-dc-help .lx-hc-sec-eyebrow {
  font-family: var(--mono);
  color: var(--coral);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin: 0 0 12px;
}

.lx-dc-help .lx-hc-sec-head h2 {
  font-family: var(--display);
  font-weight: 800;
  font-size: 34px;
  letter-spacing: -0.025em;
  line-height: 1.03;
  margin: 0;
  color: var(--ink);
}

.lx-dc-help .lx-hc-pop-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.lx-dc-help .lx-hc-pop {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 20px 22px;
  color: inherit;
  transition: border-color 0.15s ease;
}

.lx-dc-help .lx-hc-pop:hover {
  border-color: var(--coral);
  color: inherit;
}

.lx-dc-help .lx-hc-pop-title {
  font-weight: 700;
  font-size: 16px;
  margin-bottom: 3px;
  color: var(--ink);
}

.lx-dc-help .lx-hc-pop-meta {
  color: var(--muted);
  font-size: 13px;
}

.lx-dc-help .lx-hc-pop-arrow {
  color: var(--coral);
  font-size: 18px;
  flex-shrink: 0;
}

/* ------------------------------------------------------------------ */
/* Dark CTA                                                            */
/* ------------------------------------------------------------------ */

.lx-dc-help .lx-hc-cta-wrap {
  max-width: 1160px;
  margin: 0 auto;
  padding: 8px 32px 64px;
}

.lx-dc-help .lx-hc-cta {
  background: var(--ink);
  border-radius: 28px;
  padding: 52px 48px;
  text-align: center;
}

.lx-dc-help .lx-hc-cta h2 {
  font-family: var(--display);
  font-weight: 800;
  font-size: 34px;
  letter-spacing: -0.02em;
  line-height: 1.06;
  margin: 0 0 12px;
  color: #fff;
}

.lx-dc-help .lx-hc-cta p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 17px;
  margin: 0 auto 26px;
  max-width: 480px;
  line-height: 1.55;
}

.lx-dc-help .lx-hc-cta-actions {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

.lx-dc-help .lx-hc-btn {
  display: inline-block;
  font-weight: 700;
  font-size: 16px;
  padding: 15px 30px;
  border-radius: 14px;
  transition: transform 0.15s ease, filter 0.15s ease;
}

.lx-dc-help .lx-hc-btn:hover {
  transform: translateY(-2px);
}

.lx-dc-help .lx-hc-btn-primary {
  background: var(--coral);
  color: #fff;
}

.lx-dc-help .lx-hc-btn-primary:hover {
  color: #fff;
  filter: brightness(1.05);
}

.lx-dc-help .lx-hc-btn-ghost {
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
}

.lx-dc-help .lx-hc-btn-ghost:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.18);
}

.lx-dc-help .lx-hc-cta-inline {
  background: var(--ink);
  border-radius: 20px;
  padding: 28px;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.lx-dc-help .lx-hc-cta-inline h3 {
  font-family: var(--display);
  font-weight: 700;
  font-size: 19px;
  margin: 0 0 4px;
  color: #fff;
}

.lx-dc-help .lx-hc-cta-inline p {
  color: rgba(255, 255, 255, 0.65);
  font-size: 14px;
  margin: 0;
}

.lx-dc-help .lx-hc-cta-inline .lx-hc-btn {
  flex-shrink: 0;
  font-size: 15px;
  padding: 13px 24px;
  border-radius: 13px;
}

/* ------------------------------------------------------------------ */
/* Topic page                                                          */
/* ------------------------------------------------------------------ */

.lx-dc-help .lx-hc-topic-hero {
  max-width: 1120px;
  margin: 0 auto;
  padding: clamp(112px, 14vh, 140px) 32px 8px;
}

.lx-dc-help .lx-hc-crumbs {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--muted);
  margin-bottom: 20px;
  flex-wrap: wrap;
}

.lx-dc-help .lx-hc-crumbs a {
  color: var(--muted);
  font-weight: 600;
}

.lx-dc-help .lx-hc-crumbs a:hover {
  color: var(--coral);
}

.lx-dc-help .lx-hc-crumbs-sep {
  opacity: 0.5;
}

.lx-dc-help .lx-hc-crumbs-current {
  color: var(--ink);
  font-weight: 600;
}

.lx-dc-help .lx-hc-topic-title {
  display: flex;
  align-items: flex-start;
  gap: 18px;
}

.lx-dc-help .lx-hc-topic-mark {
  width: 52px;
  height: 52px;
  flex-shrink: 0;
  border-radius: 15px;
  background: color-mix(in srgb, var(--teal) 12%, transparent);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--teal);
  font-family: var(--mono);
  font-weight: 700;
  font-size: 18px;
}

.lx-dc-help .lx-hc-topic-title h1 {
  font-family: var(--display);
  font-weight: 800;
  font-size: clamp(34px, 4vw, 46px);
  letter-spacing: -0.02em;
  line-height: 1.03;
  margin: 0 0 10px;
  color: var(--ink);
}

.lx-dc-help .lx-hc-topic-title p {
  font-size: 18px;
  color: var(--muted);
  line-height: 1.5;
  margin: 0;
  max-width: 560px;
  text-wrap: pretty;
}

.lx-dc-help .lx-hc-topic-body {
  max-width: 1120px;
  margin: 0 auto;
  padding: 36px 32px 24px;
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 48px;
  align-items: start;
}

.lx-dc-help .lx-hc-side {
  position: sticky;
  top: 96px;
}

.lx-dc-help .lx-hc-side-label {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 700;
  margin-bottom: 14px;
}

.lx-dc-help .lx-hc-side-nav {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.lx-dc-help .lx-hc-side-nav a {
  font-size: 14px;
  font-weight: 500;
  color: var(--muted);
  padding: 9px 14px;
  border-radius: 10px;
}

.lx-dc-help .lx-hc-side-nav a:hover {
  color: var(--coral);
}

.lx-dc-help .lx-hc-side-nav a.is-active {
  font-weight: 700;
  color: var(--coral);
  background: color-mix(in srgb, var(--coral) 8%, transparent);
}

.lx-dc-help .lx-hc-articles {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 36px;
}

.lx-dc-help .lx-hc-article-row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 22px 24px;
  color: inherit;
  box-shadow: 0 20px 44px -40px rgba(42, 33, 28, 0.5);
  transition: border-color 0.15s ease;
}

.lx-dc-help .lx-hc-article-row:hover {
  border-color: var(--coral);
  color: inherit;
}

.lx-dc-help .lx-hc-article-row h3 {
  font-family: var(--display);
  font-weight: 700;
  font-size: 17px;
  margin: 0 0 5px;
  color: var(--ink);
}

.lx-dc-help .lx-hc-article-row p {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.5;
  margin: 0 0 8px;
}

.lx-dc-help .lx-hc-article-meta {
  font-family: var(--mono);
  font-size: 11px;
  color: var(--muted);
  letter-spacing: 0.04em;
}

.lx-dc-help .lx-hc-empty {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 40px 28px;
  text-align: center;
}

.lx-dc-help .lx-hc-empty h3 {
  font-family: var(--display);
  font-weight: 700;
  font-size: 20px;
  margin: 0 0 8px;
}

.lx-dc-help .lx-hc-empty p {
  color: var(--muted);
  margin: 0;
}

.lx-dc-help .lx-hc-pagination {
  margin: 8px 0 28px;
}

.lx-dc-help .lx-hc-pagination .pagination {
  justify-content: flex-start;
  flex-wrap: wrap;
  gap: 6px;
}

.lx-dc-help .lx-hc-pagination .page-link {
  border-radius: 10px;
  border-color: var(--line);
  color: var(--ink);
  background: var(--paper);
}

.lx-dc-help .lx-hc-pagination .page-item.active .page-link {
  background: var(--coral);
  border-color: var(--coral);
  color: #fff;
}

/* ------------------------------------------------------------------ */
/* Article page                                                        */
/* ------------------------------------------------------------------ */

.lx-dc-help .lx-hc-article-hero {
  max-width: 1080px;
  margin: 0 auto;
  padding: clamp(112px, 14vh, 140px) 32px 8px;
}

.lx-dc-help .lx-hc-article-hero h1 {
  font-family: var(--display);
  font-weight: 800;
  font-size: clamp(32px, 4vw, 44px);
  letter-spacing: -0.02em;
  line-height: 1.05;
  margin: 0 0 14px;
  max-width: 760px;
  text-wrap: pretty;
  color: var(--ink);
}

.lx-dc-help .lx-hc-article-meta-bar {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  font-family: var(--mono);
  font-size: 12px;
  color: var(--muted);
  letter-spacing: 0.03em;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--line-strong);
}

.lx-dc-help .lx-hc-article-meta-bar .sep {
  opacity: 0.4;
}

.lx-dc-help .lx-hc-article-body {
  max-width: 1080px;
  margin: 0 auto;
  padding: 32px 32px 24px;
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 52px;
  align-items: start;
}

.lx-dc-help .lx-hc-article-body.is-solo {
  grid-template-columns: 1fr;
  max-width: 760px;
}

.lx-dc-help .lx-hc-toc {
  position: sticky;
  top: 96px;
}

.lx-dc-help .lx-hc-toc nav {
  display: flex;
  flex-direction: column;
  gap: 2px;
  border-left: 2px solid var(--line-strong);
}

.lx-dc-help .lx-hc-toc a {
  font-size: 14px;
  color: var(--muted);
  padding: 7px 0 7px 16px;
  margin-left: -2px;
  border-left: 2px solid transparent;
  line-height: 1.35;
}

.lx-dc-help .lx-hc-toc a:hover,
.lx-dc-help .lx-hc-toc a.is-active {
  color: var(--coral);
  border-left-color: var(--coral);
}

.lx-dc-help .lx-hc-prose {
  font-size: 17px;
  line-height: 1.72;
  color: #3A322C;
  min-width: 0;
}

.lx-dc-help .lx-hc-prose > *:first-child {
  margin-top: 0;
}

.lx-dc-help .lx-hc-prose h2,
.lx-dc-help .lx-hc-prose h3 {
  font-family: var(--display);
  font-weight: 800;
  letter-spacing: -0.01em;
  line-height: 1.2;
  color: var(--ink);
  scroll-margin-top: 88px;
}

.lx-dc-help .lx-hc-prose h2 {
  font-size: 24px;
  margin: 34px 0 12px;
}

.lx-dc-help .lx-hc-prose h3 {
  font-size: 22px;
  margin: 28px 0 10px;
}

.lx-dc-help .lx-hc-prose h4 {
  font-family: var(--display);
  font-weight: 700;
  font-size: 18px;
  margin: 20px 0 8px;
  color: var(--ink);
}

.lx-dc-help .lx-hc-prose p {
  margin: 0 0 16px;
}

.lx-dc-help .lx-hc-prose ul,
.lx-dc-help .lx-hc-prose ol {
  margin: 0 0 22px;
  padding-left: 20px;
}

.lx-dc-help .lx-hc-prose li {
  margin-bottom: 9px;
}

.lx-dc-help .lx-hc-prose a {
  font-weight: 600;
}

.lx-dc-help .lx-hc-prose img {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
}

.lx-dc-help .lx-hc-prose table {
  width: 100%;
  border-collapse: collapse;
  margin: 0 0 22px;
  font-size: 14px;
}

.lx-dc-help .lx-hc-prose pre,
.lx-dc-help .lx-hc-prose code {
  font-family: var(--mono);
  font-size: 0.9em;
}

.lx-dc-help .lx-hc-prose pre {
  background: color-mix(in srgb, var(--ink) 4%, var(--paper));
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 16px;
  overflow-x: auto;
}

.lx-dc-help .lx-hc-feedback {
  margin-top: 36px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 24px 26px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.lx-dc-help .lx-hc-feedback-label {
  font-family: var(--display);
  font-weight: 700;
  font-size: 17px;
  color: var(--ink);
}

.lx-dc-help .lx-hc-feedback-btns {
  display: flex;
  gap: 10px;
}

.lx-dc-help .lx-hc-vote {
  font-family: inherit;
  font-weight: 700;
  font-size: 14px;
  padding: 10px 20px;
  border-radius: 999px;
  cursor: pointer;
  border: 1px solid rgba(42, 33, 28, 0.16);
  background: var(--paper);
  color: var(--ink);
  transition: background 0.15s ease, border-color 0.15s ease, color 0.15s ease;
}

.lx-dc-help .lx-hc-vote.is-yes.active {
  background: color-mix(in srgb, var(--teal) 12%, transparent);
  color: var(--teal);
  border-color: var(--teal);
}

.lx-dc-help .lx-hc-vote.is-no.active {
  background: color-mix(in srgb, var(--coral) 12%, transparent);
  color: var(--coral);
  border-color: var(--coral);
}

.lx-dc-help .lx-hc-thanks {
  margin-top: 12px;
  color: var(--teal);
  font-size: 14px;
  font-weight: 600;
  display: none;
}

.lx-dc-help .lx-hc-thanks.is-on {
  display: block;
}

.lx-dc-help .lx-hc-related {
  max-width: 1080px;
  margin: 0 auto;
  padding: 24px 32px 56px;
}

.lx-dc-help .lx-hc-related-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.lx-dc-help .lx-hc-related-card {
  display: block;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 22px;
  color: inherit;
  box-shadow: 0 20px 44px -40px rgba(42, 33, 28, 0.5);
  transition: border-color 0.15s ease;
}

.lx-dc-help .lx-hc-related-card:hover {
  border-color: var(--coral);
  color: inherit;
}

.lx-dc-help .lx-hc-related-card h3 {
  font-family: var(--display);
  font-weight: 700;
  font-size: 16px;
  margin: 0 0 6px;
  color: var(--ink);
}

.lx-dc-help .lx-hc-related-card span {
  color: var(--muted);
  font-size: 13px;
}

/* ------------------------------------------------------------------ */
/* Search results                                                      */
/* ------------------------------------------------------------------ */

.lx-dc-help .lx-hc-search-hero {
  max-width: 820px;
  margin: 0 auto;
  padding: clamp(112px, 14vh, 140px) 32px 12px;
  text-align: center;
}

.lx-dc-help .lx-hc-search-hero h1 {
  font-family: var(--display);
  font-weight: 800;
  font-size: clamp(34px, 4vw, 44px);
  letter-spacing: -0.02em;
  margin: 0 0 10px;
}

.lx-dc-help .lx-hc-search-hero p {
  color: var(--muted);
  margin: 0 0 24px;
  font-size: 16px;
}

.lx-dc-help .lx-hc-search-results {
  max-width: 820px;
  margin: 0 auto;
  padding: 24px 32px 48px;
}

.lx-dc-help .lx-hc-search-results .lx-hc-articles {
  margin-bottom: 24px;
}

.lx-dc-help .lx-hc-badge {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  color: var(--teal);
  background: color-mix(in srgb, var(--teal) 10%, transparent);
  padding: 4px 10px;
  border-radius: 999px;
  margin-bottom: 8px;
}

/* ------------------------------------------------------------------ */
/* Responsive                                                          */
/* ------------------------------------------------------------------ */

@media (max-width: 991.98px) {
  .lx-dc-help .lx-hc-cats-grid {
    grid-template-columns: 1fr;
  }

  .lx-dc-help .lx-hc-pop-grid {
    grid-template-columns: 1fr;
  }

  .lx-dc-help .lx-hc-hero h1 {
    font-size: 42px;
  }

  .lx-dc-help .lx-hc-topic-body,
  .lx-dc-help .lx-hc-article-body {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .lx-dc-help .lx-hc-side,
  .lx-dc-help .lx-hc-toc {
    position: static;
  }

  .lx-dc-help .lx-hc-related-grid {
    grid-template-columns: 1fr;
  }

  .lx-dc-help .lx-hc-cta {
    padding: 40px 28px;
  }

  .lx-dc-help .lx-hc-cta h2,
  .lx-dc-help .lx-hc-sec-head h2 {
    font-size: 28px;
  }

  .lx-dc-help .lx-hc-search {
    flex-wrap: wrap;
    border-radius: 20px;
    padding: 12px;
  }

  .lx-dc-help .lx-hc-search button {
    width: 100%;
  }
}

@media (max-width: 600px) {
  .lx-dc-help .lx-hc-wrap,
  .lx-dc-help .lx-hc-cats,
  .lx-dc-help .lx-hc-popular,
  .lx-dc-help .lx-hc-cta-wrap,
  .lx-dc-help .lx-hc-topic-hero,
  .lx-dc-help .lx-hc-topic-body,
  .lx-dc-help .lx-hc-article-hero,
  .lx-dc-help .lx-hc-article-body,
  .lx-dc-help .lx-hc-related,
  .lx-dc-help .lx-hc-search-hero,
  .lx-dc-help .lx-hc-search-results {
    padding-left: 20px;
    padding-right: 20px;
  }

  .lx-dc-help .lx-hc-hero {
    padding-left: 20px;
    padding-right: 20px;
  }
}
