@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&family=JetBrains+Mono:wght@400;500&display=swap');

/* ── Base ─────────────────────────────────────── */
.doc {
  max-width: 680px;
  margin: 0 auto;
  padding: 48px 24px 96px;
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  font-size: 16px;
  line-height: 1.7;
  color: #1a1a1a;
  -webkit-font-smoothing: antialiased;
}

.doc-title,
.doc h1 {
  font-size: 32px;
  font-weight: 700;
  letter-spacing: -0.4px;
  color: #111;
  margin: 0 0 20px;
  line-height: 1.25;
}

.doc-lead {
  font-size: 16px;
  color: #6b7280;
  margin: 0 0 40px;
  line-height: 1.65;
}

/* "New" badge beside a freshly-tagged article's title (auto-clears after 4 weeks). */
.doc-new-badge {
  display: inline-flex;
  align-items: center;
  vertical-align: middle;
  position: relative;
  top: -3px;
  margin-left: 14px;
  padding: 4px 11px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #fff;
  background: linear-gradient(135deg, #EA33B4, #6510F5);
  border-radius: 999px;
  line-height: 1;
}

/* Hide stray SVGs — design system components whitelist theirs */
.doc svg { display: none; }
.doc .doc-avail-icon svg,
.doc .doc-video-placeholder svg,
.doc a.doc-file svg,
.doc .doc-file svg,
.doc .doc-article-link-icon { display: inline-block; }


.doc-img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 8px;
  border: 1px solid #e5e7eb;
  margin: 0 0 40px;
}

.doc h2 {
  font-size: 22px;
  font-weight: 600;
  color: #111;
  margin: 40px 0 12px;
  letter-spacing: -0.3px;
  line-height: 1.3;
}

.doc h3 {
  font-size: 17px;
  font-weight: 600;
  color: #111;
  margin: 28px 0 10px;
}

.doc h4 {
  font-size: 15px;
  font-weight: 600;
  color: #111;
  margin: 24px 0 8px;
}

.doc p {
  margin: 0 0 14px;
  color: #374151;
}

.doc ol {
  margin: 0 0 16px;
  padding-left: 24px;
  list-style-type: decimal;
}

.doc ol li {
  margin-bottom: 8px;
  color: #374151;
  padding-left: 4px;
  display: list-item;
  list-style-type: decimal;
}

.doc ul {
  margin: 0 0 16px;
  padding-left: 22px;
  list-style-type: disc;
}

.doc ul li {
  margin-bottom: 8px;
  color: #374151;
  display: list-item;
  list-style-type: disc;
}

.doc ul ul, .doc ol ol {
  margin-top: 8px;
  margin-bottom: 0;
}

/* ── kbd ─────────────────────────────────────── */
.doc kbd {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 13px;
  font-weight: 500;
  background: #f3f4f6;
  color: #111;
  border: 1px solid #d1d5db;
  border-radius: 4px;
  padding: 1px 6px;
  white-space: nowrap;
}

.doc kbd a { color: inherit; text-decoration: none; }
.doc kbd a:hover { text-decoration: underline; }

/* ── Code ────────────────────────────────────── */
.doc code {
  font-family: 'JetBrains Mono', 'SF Mono', Menlo, Consolas, monospace;
  font-size: 13px;
  background: #f3f4f6;
  color: #111;
  border-radius: 3px;
  padding: 1px 5px;
}

.doc pre {
  background: #f8f9fa;
  border: 1px solid #e5e7eb;
  border-radius: 6px;
  padding: 16px 20px;
  overflow-x: auto;
  margin: 0 0 20px;
}

.doc pre code {
  background: none;
  border: none;
  padding: 0;
  font-size: 13.5px;
  line-height: 1.7;
  color: #1a1a1a;
}

/* ── Links ───────────────────────────────────── */
.doc a {
  color: #111;
  text-decoration: underline;
  text-decoration-color: #d1d5db;
  text-underline-offset: 2px;
  transition: text-decoration-color 0.1s;
}

.doc a:hover { text-decoration-color: #6b7280; }

.doc strong {
  font-weight: 600;
  color: #111;
}

.doc hr {
  border: none;
  border-top: 1px solid #f0f0f0;
  margin: 48px 0;
}

/* ── Note callout (neutral) ──────────────────── */
.doc-note {
  color: #6b7280;
  font-size: 14.5px;
  padding-left: 14px;
  border-left: 2px solid #e5e7eb;
  margin: 20px 0;
  line-height: 1.6;
}

/* ── Tip callout (green) ─────────────────────── */
.doc-tip {
  font-size: 14.5px;
  padding: 12px 16px;
  border-radius: 6px;
  background: #f0fdf4;
  border: 1px solid #bbf7d0;
  color: #166534;
  margin: 24px 0;
  line-height: 1.6;
}

.doc-tip strong {
  color: #14532d;
}

.doc-tip kbd {
  background: rgba(255,255,255,0.6);
  border-color: #86efac;
  color: #166534;
}

/* ── Warning callout (yellow) ────────────────── */
.doc-warning {
  font-size: 14.5px;
  padding: 12px 16px;
  border-radius: 6px;
  background: #fffbeb;
  border: 1px solid #fde68a;
  color: #92400e;
  margin: 24px 0;
  line-height: 1.6;
}

.doc-warning strong {
  color: #78350f;
}

/* ── Error callout (red) ─────────────────────── */
.doc-error {
  font-size: 14.5px;
  padding: 12px 16px;
  border-radius: 6px;
  background: #fef2f2;
  border: 1px solid #fecaca;
  color: #991b1b;
  margin: 24px 0;
  line-height: 1.6;
}

.doc-error strong {
  color: #7f1d1d;
}

/* ── Info callout (blue) ─────────────────────── */
.doc-info {
  font-size: 14.5px;
  padding: 12px 16px;
  border-radius: 6px;
  background: #eff6ff;
  border: 1px solid #bfdbfe;
  color: #1e40af;
  margin: 24px 0;
  line-height: 1.6;
}

.doc-info strong {
  color: #1e3a8a;
}

/* Callouts wrap their text in a <p>, whose bottom margin would otherwise
   stack on top of the box padding and leave an uneven gap below the text. */
.doc-note > :last-child,
.doc-tip > :last-child,
.doc-info > :last-child,
.doc-warning > :last-child,
.doc-error > :last-child { margin-bottom: 0; }

/* ── Hero banner (top of article) ────────────── */
.doc-hero {
  margin: 0 0 36px;
  border-radius: 16px;
  overflow: hidden;
  background: #f3f4f6;
}
figure.doc-hero img {
  display: block;
  width: 100%;
  height: auto;
  margin: 0;
}
.dark .doc-hero { background: #1c1d22; }

/* ── Image with caption ──────────────────────── */
.doc-figure { margin: 0 0 32px; }

.doc-figure img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 8px;
  border: 1px solid #e5e7eb;
}

.doc-caption {
  font-size: 13px;
  color: #6b7280;
  text-align: left;
  margin-top: 16px;
  line-height: 1.5;
}

/* ── Live event spot (populated client-side by the support reader) ───── */
.doc-live-event { display: none; }
.doc-live-event.dle-live { display: block; margin: 30px 0; border: 1px solid #bfdbfe; background: #f5f9ff; border-radius: 12px; overflow: hidden; }
.dle-card { display: flex; align-items: center; gap: 14px; padding: 14px 16px; }
.dle-cal { flex: none; width: 48px; text-align: center; background: #0084ff; color: #fff; border-radius: 10px; padding: 7px 0; }
.dle-cal .m { display: block; font-size: 10px; font-weight: 700; letter-spacing: .06em; }
.dle-cal .d { display: block; font-size: 19px; font-weight: 700; line-height: 1.05; }
.dle-info { flex: 1; min-width: 0; }
.dle-eyebrow { font-size: 11px; font-weight: 700; letter-spacing: .05em; text-transform: uppercase; color: #0084ff; }
.dle-title { font-family: 'Outfit','Inter',sans-serif; font-weight: 700; font-size: 19px; letter-spacing: -0.01em; color: #111; margin: 1px 0 3px; }
.dle-meta { font-size: 13px; color: #6b7280; }
.dle-btn { flex: none; background: var(--g3, #0084ff); color: #fff !important; font-size: 14px; font-weight: 600; padding: 11px 22px; border-radius: 11px; display: inline-flex; align-items: center; gap: 8px; white-space: nowrap; }
.doc-live-event .dle-btn { text-decoration: none; }
.dle-btn:hover { filter: brightness(1.05); }
@media (max-width: 560px) { .dle-card { flex-wrap: wrap; } .dle-btn { width: 100%; text-align: center; } }
.dark .doc-live-event.dle-live { background: #0b1f33; border-color: #1e3a5f; }
.dark .dle-title { color: #f7f9fa; }
.dark .dle-meta { color: #9ca3af; }

/* ── Definition list ─────────────────────────── */
.doc dl { margin: 0 0 20px; }

.doc dt {
  font-weight: 600;
  font-size: 14px;
  color: #111;
  margin-top: 16px;
}

.doc dd {
  margin: 4px 0 0 0;
  color: #374151;
  font-size: 14.5px;
  padding-left: 16px;
  border-left: 2px solid #f0f0f0;
}

/* ── Table ───────────────────────────────────── */
.doc-table-wrap {
  overflow-x: auto;
  margin: 0 0 24px;
  border: 1px solid #e5e7eb;
  border-radius: 6px;
}

.doc table { width: 100%; border-collapse: collapse; font-size: 14.5px; }
.doc th { font-weight: 600; font-size: 12px; text-transform: uppercase; letter-spacing: 0.05em; color: #6b7280; text-align: left; padding: 10px 14px; background: #f9fafb; border-bottom: 1px solid #e5e7eb; }
.doc td { padding: 10px 14px; color: #374151; border-bottom: 1px solid #f3f4f6; vertical-align: top; }
.doc tr:last-child td { border-bottom: none; }

/* ── Badges ──────────────────────────────────── */
.badge { display: inline-block; font-size: 12px; font-weight: 500; padding: 2px 8px; border-radius: 99px; white-space: nowrap; }
.badge-blue { background: #eff6ff; color: #1d4ed8; border: 1px solid #bfdbfe; }
.badge-green { background: #f0fdf4; color: #15803d; border: 1px solid #bbf7d0; }
.badge-yellow { background: #fefce8; color: #a16207; border: 1px solid #fde68a; }
.badge-red { background: #fef2f2; color: #b91c1c; border: 1px solid #fecaca; }
.badge-gray { background: #f9fafb; color: #4b5563; border: 1px solid #e5e7eb; }

/* ── FAQ accordion (Linear-style disclosure) ──── */
.doc-faq { margin: 28px 0; border-top: 1px solid #ececef; }
.doc-faq-item { border-bottom: 1px solid #ececef; }

/* Question: the clickable summary row. Chevron on the right rotates on open. */
.doc-faq-q {
  list-style: none;
  cursor: pointer;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
  padding: 17px 2px;
  font-size: 15.5px;
  font-weight: 550;
  color: #15161a;
  line-height: 1.5;
  margin: 0;
  -webkit-tap-highlight-color: transparent;
  transition: color .12s ease;
}
.doc-faq-q::-webkit-details-marker { display: none; }
.doc-faq-q::marker { content: ""; }
.doc-faq-q::after {
  content: "";
  flex: none;
  width: 8px;
  height: 8px;
  margin-top: 5px;
  margin-right: 5px;
  border-right: 2px solid #b7b9c2;
  border-bottom: 2px solid #b7b9c2;
  transform: rotate(45deg);
  transition: transform .22s cubic-bezier(.4,0,.2,1), border-color .12s ease;
}
.doc-faq-q:hover { color: #000; }
.doc-faq-q:hover::after { border-color: #15161a; }
.doc-faq-item[open] > .doc-faq-q { color: #000; }
.doc-faq-item[open] > .doc-faq-q::after { transform: rotate(-135deg); margin-top: 8px; }

/* Answer: revealed body. Accepts paragraphs, lists, etc. */
.doc-faq-a {
  padding: 0 2px 18px;
  font-size: 14.5px;
  color: #585a66;
  line-height: 1.7;
  margin: 0;
  animation: docFaqReveal .2s ease;
}
.doc-faq-a > :first-child { margin-top: 0; }
.doc-faq-a > :last-child { margin-bottom: 0; }
@keyframes docFaqReveal { from { opacity: 0; transform: translateY(-3px); } to { opacity: 1; transform: none; } }

/* ── Availability ────────────────────────────── */
.doc-avail {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  background: #faf5ff;
  border: 1px solid #e9d5ff;
  border-radius: 6px;
  padding: 10px 14px;
  margin: 24px 0;
  font-size: 13px;
}

.doc-avail-icon { color: #7c3aed; margin-top: 1px; }
.doc-avail-label { font-weight: 500; color: #6b21a8; margin-bottom: 4px; }
.doc-avail-tags { display: flex; gap: 6px; flex-wrap: wrap; }
.avail-tag { display: inline-block; font-size: 11px; font-weight: 500; padding: 2px 8px; border-radius: 99px; }
.avail-tag-plan { background: #ede9fe; color: #5b21b6; }

/* ── Steps ───────────────────────────────────── */
.doc-steps { margin: 0 0 24px; }
.doc-step { display: flex; gap: 16px; }
.doc-step-left { display: flex; flex-direction: column; align-items: center; }
.doc-step-num { width: 28px; height: 28px; border-radius: 50%; background: #f3f4f6; color: #374151; font-size: 13px; font-weight: 600; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.doc-step-line { width: 2px; flex: 1; background: #e5e7eb; margin: 4px 0; min-height: 16px; }
.doc-step-body { padding-bottom: 24px; flex: 1; }
.doc-step:last-child .doc-step-body { padding-bottom: 0; }
.doc-step-title { font-weight: 600; font-size: 15px; color: #111; margin-bottom: 4px; }
.doc-step-body p { font-size: 14.5px; color: #4b5563; margin: 0; }

/* ── Tabs ────────────────────────────────────── */
.doc-tabs { margin: 0 0 24px; }
.doc-tab-bar { display: flex; gap: 0; border-bottom: 1px solid #e5e7eb; margin-bottom: 16px; }
.doc-tab-btn { padding: 8px 16px; font-size: 14px; font-weight: 500; color: #6b7280; background: none; border: none; border-bottom: 2px solid transparent; cursor: pointer; margin-bottom: -1px; }
.doc-tab-btn.active { color: #111; border-bottom-color: #111; }
.doc-tab-panel { display: none; }
.doc-tab-panel.active { display: block; }

/* ── Table of Contents ───────────────────────── */
.doc-toc {
  margin: 0 0 32px;
  padding: 20px 0;
  border-top: 1px solid #f0f0f0;
  border-bottom: 1px solid #f0f0f0;
}

.doc-toc-title {
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: #6b7280;
  margin: 0 0 10px;
}

.doc .doc-toc ol,
.doc.doc-toc ol,
.doc-toc ol {
  list-style: none !important;
  margin: 0 !important;
  padding: 0 !important;
  padding-left: 0 !important;
  counter-reset: toc;
  display: flex !important;
  flex-wrap: wrap;
  gap: 8px;
}

.doc .doc-toc li,
.doc.doc-toc li,
.doc-toc li {
  list-style: none !important;
  margin: 0 !important;
  padding: 0 !important;
  padding-left: 0 !important;
  display: inline-flex;
}

.doc-toc a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 14px 7px 10px;
  font-size: 13px;
  font-weight: 500;
  color: #374151;
  background: #f9fafb;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.15s;
  counter-increment: toc;
}

.doc-toc a:hover {
  background: #f3f4f6;
  border-color: #d1d5db;
  color: #111;
}

.doc-toc a::before {
  content: counter(toc);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  border-radius: 5px;
  background: #e5e7eb;
  color: #6b7280;
  font-size: 11px;
  font-weight: 600;
  flex-shrink: 0;
}

.doc-toc a:hover::before { background: #d1d5db; color: #374151; }

/* ── Two-column layout ───────────────────────── */
.doc-cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin: 0 0 24px;
}

/* Stack side-by-side columns on phones so they aren't cramped. */
@media (max-width: 640px) {
  .doc-cols { grid-template-columns: 1fr; gap: 16px; }
}

.doc-col-title {
  font-weight: 600;
  font-size: 14px;
  color: #111;
  margin-bottom: 8px;
}

/* ── Blockquote ──────────────────────────────── */
.doc blockquote {
  margin: 24px 0;
  padding: 16px 20px;
  background: #f9fafb;
  border-radius: 6px;
  border: 1px solid #e5e7eb;
}

.doc blockquote p {
  font-size: 15px;
  font-style: italic;
  color: #374151;
  margin: 0 0 8px;
}

.doc-quote-attr {
  font-size: 13px;
  color: #6b7280;
  font-style: normal;
}

/* ── Breadcrumb ──────────────────────────────── */
.doc-breadcrumb {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: #6b7280;
  margin: 0 0 16px;
}

.doc-breadcrumb a { color: #6b7280; text-decoration: none; }
.doc-breadcrumb a:hover { color: #111; text-decoration: underline; }
.doc-breadcrumb-sep { color: #d1d5db; }
.doc-breadcrumb-current { color: #374151; font-weight: 500; }

/* ── Settings path ───────────────────────────── */
.doc-path {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 13px;
  background: #f3f4f6;
  border-radius: 4px;
  padding: 3px 10px;
  margin: 4px 0;
}

.doc-path-item { color: #374151; font-weight: 500; }
.doc-path-sep { color: #d1d5db; }

/* ── Keyboard shortcut ───────────────────────── */
.shortcut { display: inline-flex; align-items: center; gap: 3px; }
.key {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 22px;
  height: 22px;
  padding: 0 6px;
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 11px;
  font-weight: 500;
  background: #f9fafb;
  border: 1px solid #d1d5db;
  border-radius: 4px;
  color: #374151;
  box-shadow: 0 1px 0 #d1d5db;
}

/* ── Video ───────────────────────────────────── */
.doc-video { margin: 0 0 32px; }
.doc-video-wrap { position: relative; padding-bottom: 56.25%; height: 0; overflow: hidden; border-radius: 8px; border: 1px solid #e5e7eb; background: #000; }
.doc-video-wrap iframe { position: absolute; top: 0; left: 0; width: 100%; height: 100%; border: none; }
.doc-video-placeholder { position: absolute; top: 0; left: 0; width: 100%; height: 100%; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 12px; background: #f9fafb; color: #6b7280; font-size: 14px; }
.doc-video-caption { font-size: 13px; color: #6b7280; margin-top: 8px; }

/* ── File attachment ─────────────────────────── */
.doc-file {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  background: #f9fafb;
  border: 1px solid #e5e7eb;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 500;
  color: #374151;
  text-decoration: none;
  margin: 8px 0;
  transition: background 0.1s;
}

.doc-file:hover { background: #f3f4f6; }
.doc-file-icon { color: #6b7280; flex-shrink: 0; }
.doc-file-meta { font-size: 12px; color: #6b7280; font-weight: 400; }

/* ── Article link callout ────────────────────── */
.doc-article-link {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 12px 16px;
  margin: 20px 0;
  background: #f9fafb;
  border-left: 3px solid #d1d5db;
  border-radius: 0 6px 6px 0;
  line-height: 1.5;
}

.doc-article-link-icon {
  width: 16px;
  height: 16px;
  color: #6b7280;
  flex-shrink: 0;
  margin-top: 2px;
}

.doc-article-link a {
  font-size: 14px;
  font-weight: 500;
  color: #374151 !important;
  text-decoration: none !important;
  border-bottom: 1px solid #d1d5db;
  transition: all 0.15s;
}

.doc-article-link a:hover {
  color: #111 !important;
  border-bottom-color: #6b7280;
}

/* ── Metadata footer ─────────────────────────── */
.doc-meta {
  display: flex;
  align-items: center;
  padding-top: 24px;
  border-top: 1px solid #f0f0f0;
  margin-top: 48px;
}

.doc-meta-updated {
  font-size: 13px;
  color: #6b7280;
}

/* ═══════════════════════════════════════════════
   DARK MODE
═══════════════════════════════════════════════ */
.dark .doc { color: #e4e7eb; }
.dark .doc-title, .dark .doc h1 { color: #f7f9fa; }
.dark .doc-lead { color: #9ca3af; }
.dark .doc-img, .dark .doc-figure img { border-color: #42464d; }
.dark .doc h2, .dark .doc h3, .dark .doc h4, .dark .doc strong { color: #f7f9fa; }
.dark .doc p, .dark .doc li, .dark .doc dd { color: #d1d5db; }
.dark .doc dt { color: #f7f9fa; }
.dark .doc dd { border-left-color: #42464d; }
.dark .doc kbd { background: #36393f; color: #e4e7eb; border-color: #545861; }
.dark .doc a { color: #e4e7eb; text-decoration-color: #545861; }
.dark .doc a:hover { text-decoration-color: #9ca3af; }
.dark .doc hr { border-top-color: #42464d; }
.dark .doc-caption { color: #6b7280; }
.dark .doc-note { color: #9ca3af; border-left-color: #42464d; }
.dark .doc-tip { background: #052e16; border-color: #14532d; color: #86efac; }
.dark .doc-tip strong { color: #4ade80; }
.dark .doc-tip kbd { background: rgba(0,0,0,0.2); border-color: #14532d; color: #86efac; }
.dark .doc-warning { background: #1c1400; border-color: #78350f; color: #fcd34d; }
.dark .doc-warning strong { color: #fbbf24; }
.dark .doc-info { background: #1e3a5f; border-color: #1d4ed8; color: #93c5fd; }
.dark .doc-info strong { color: #60a5fa; }
.dark .doc-error { background: #450a0a; border-color: #991b1b; color: #fca5a5; }
.dark .doc-error strong { color: #f87171; }
.dark .doc code { background: #36393f; color: #e4e7eb; }
.dark .doc pre { background: #24272c; border-color: #42464d; }
.dark .doc pre code { color: #d1d5db; }
.dark .doc-table-wrap { border-color: #42464d; }
.dark .doc th { background: #2b2e33; color: #9ca3af; border-bottom-color: #42464d; }
.dark .doc td { color: #d1d5db; border-bottom-color: #36393f; }
.dark .badge-blue { background: #1e3a5f; color: #93c5fd; border-color: #1d4ed8; }
.dark .badge-green { background: #052e16; color: #86efac; border-color: #166534; }
.dark .badge-yellow { background: #1c1400; color: #fcd34d; border-color: #a16207; }
.dark .badge-red { background: #450a0a; color: #fca5a5; border-color: #b91c1c; }
.dark .badge-gray { background: #2b2e33; color: #9ca3af; border-color: #42464d; }
.dark .doc-faq { border-top-color: #2c2f36; }
.dark .doc-faq-item { border-color: #2c2f36; }
.dark .doc-faq-q { color: #f0f1f3; }
.dark .doc-faq-q::after { border-color: #6b6e78; }
.dark .doc-faq-q:hover,
.dark .doc-faq-item[open] > .doc-faq-q { color: #fff; }
.dark .doc-faq-q:hover::after { border-color: #f0f1f3; }
.dark .doc-faq-a { color: #a0a3ad; }
.dark .doc-meta { border-top-color: #42464d; }
.dark .doc-meta-updated { color: #6b7280; }
.dark .doc blockquote { background: #2b2e33; border-color: #42464d; }
.dark .doc blockquote p { color: #d1d5db; }
.dark .doc-toc { background: #2b2e33; border-color: #42464d; }
.dark .doc-toc a { color: #d1d5db; }
.dark .doc-toc a::before { background: #42464d; color: #9ca3af; }
.dark .doc-toc a:hover { color: #f7f9fa; }
.dark .doc-step-num { background: #36393f; color: #d1d5db; }
.dark .doc-step-line { background: #42464d; }
.dark .doc-step-title { color: #f7f9fa; }
.dark .doc-step-body p { color: #9ca3af; }
.dark .doc-article-link { background: #2b2e33; border-left-color: #545861; }
.dark .doc-article-link-icon { color: #6b7280; }
.dark .doc-article-link a { color: #d1d5db !important; border-bottom-color: #545861; }
.dark .doc-article-link a:hover { color: #f7f9fa !important; border-bottom-color: #9ca3af; }
