/* =============================================
   ClothesPlus Docs — Mintlify-style Dark Theme
   Pixel-perfect clone: sidebar, TOC, search,
   callouts, steps, tabs, cards, accordion, tree
   ============================================= */

/* ── Layout Shell ───────────────────────────── */
html { scroll-padding-top: calc(var(--nav-height, 60px) + 24px); }

body.docs-body {
  background: var(--bg0);
  background-image: none;
}

/* ── Docs Navbar (.dn) ──────────────────────── */
.dn {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  height: var(--nav-height, 60px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 20px;
  background: rgba(15, 17, 18, 0.80);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
}

.dn-l {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 240px;
}

.dn-burger {
  display: none;
  background: none; border: none; color: var(--text-muted);
  font-size: 18px; cursor: pointer; padding: 6px;
}

.dn-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--text);
  font-weight: 600;
  font-size: 15px;
  text-decoration: none;
}
.dn-logo svg { opacity: 0.8; }
.dn-tag {
  font-size: 11px;
  font-weight: 500;
  padding: 2px 7px;
  border-radius: 6px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  color: var(--text-muted);
}

.dn-c { flex: 1; display: flex; justify-content: center; max-width: 560px; margin: 0 auto; }

.dn-search {
  display: flex;
  align-items: center;
  gap: 8px;
  width: 100%;
  max-width: 480px;
  padding: 7px 12px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 8px;
  color: var(--text-muted);
  font-size: 13px;
  cursor: pointer;
  transition: border-color var(--transition-fast);
}
.dn-search:hover { border-color: var(--border-light); }
.dn-search i { font-size: 13px; opacity: 0.5; }
.dn-search span { flex: 1; text-align: left; }
.dn-search kbd {
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  padding: 2px 6px;
  border-radius: 4px;
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  color: var(--text-muted);
}

.dn-r {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 240px;
  justify-content: flex-end;
}
.dn-link {
  font-size: 13px;
  color: var(--text-muted);
  text-decoration: none;
  transition: color var(--transition-fast);
}
.dn-link:hover { color: var(--text); }

.dn-btn {
  font-size: 13px;
  font-weight: 500;
  padding: 7px 16px;
  border-radius: 8px;
  background: #fff;
  color: #0F1112;
  text-decoration: none;
  transition: opacity var(--transition-fast);
}
.dn-btn:hover { opacity: 0.9; color: #0F1112; }

/* ── Search Modal (.sm) ─────────────────────── */
.sm {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: none;
  align-items: flex-start;
  justify-content: center;
  padding-top: 15vh;
}
.sm.open { display: flex; }

.sm-bg {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(4px);
}

.sm-box {
  position: relative;
  width: 90%;
  max-width: 600px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  animation: sm-in 0.15s ease-out;
}
@keyframes sm-in { from { opacity: 0; transform: scale(0.97) translateY(-8px); } to { opacity: 1; transform: none; } }

.sm-input {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 16px;
  border-bottom: 1px solid var(--border);
}
.sm-input i { font-size: 15px; color: var(--text-muted); }
.sm-input input {
  flex: 1;
  background: none;
  border: none;
  outline: none;
  color: var(--text);
  font-size: 15px;
  font-family: inherit;
}
.sm-input input::placeholder { color: var(--text-muted); }
.sm-input kbd {
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  padding: 2px 6px;
  border-radius: 4px;
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  color: var(--text-muted);
}

.sm-results {
  max-height: 400px;
  overflow-y: auto;
  padding: 8px;
}
.sm-results:empty::after {
  content: 'Type to search...';
  display: block;
  padding: 24px;
  text-align: center;
  color: var(--text-muted);
  font-size: 13px;
}
.sm-results.has-query:empty::after {
  content: 'No results found.';
}

.sm-result {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 12px;
  border-radius: 8px;
  text-decoration: none;
  color: var(--text);
  transition: background var(--transition-fast);
}
.sm-result:hover, .sm-result.active { background: var(--bg-hover); }
.sm-result-icon {
  width: 32px; height: 32px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 6px;
  background: var(--bg-elevated);
  font-size: 13px;
  color: var(--text-muted);
  flex-shrink: 0;
}
.sm-result-text { flex: 1; min-width: 0; }
.sm-result-title { font-size: 14px; font-weight: 500; }
.sm-result-desc { font-size: 12px; color: var(--text-muted); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.sm-result-cat {
  font-size: 11px;
  color: var(--text-muted);
  padding: 2px 8px;
  background: var(--bg-card);
  border-radius: 4px;
  flex-shrink: 0;
}

/* Category headers in search results */
.sm-cat-header {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text-muted);
  padding: 10px 12px 4px;
}

/* ── Docs Layout (.dl) ──────────────────────── */
.dl {
  display: flex;
  margin-top: var(--nav-height, 60px);
  min-height: calc(100vh - var(--nav-height, 60px));
}

/* ── Sidebar (.ds) ──────────────────────────── */
.ds {
  position: fixed;
  top: var(--nav-height, 60px);
  left: 0;
  bottom: 0;
  width: 260px;
  overflow-y: auto;
  border-right: 1px solid var(--border);
  background: var(--bg0);
  z-index: 50;
}
.ds-nav { padding: 16px 12px 32px; }

.ds-tabs {
  display: flex;
  gap: 2px;
  padding: 4px;
  background: var(--bg-card);
  border-radius: 8px;
  margin-bottom: 16px;
}
.ds-tab {
  flex: 1;
  padding: 6px 10px;
  font-size: 12px;
  font-weight: 500;
  color: var(--text-muted);
  background: none;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: all var(--transition-fast);
  text-align: center;
}
.ds-tab:hover { color: var(--text-secondary); }
.ds-tab.active {
  background: var(--bg-elevated);
  color: var(--text);
  box-shadow: 0 1px 3px rgba(0,0,0,0.3);
}

.ds-tc { display: none; }
.ds-tc.active { display: block; }

.ds-group { margin-bottom: 20px; }
.ds-gt {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text-muted);
  padding: 6px 10px;
  display: flex;
  align-items: center;
  gap: 6px;
}
.ds-gt i { font-size: 11px; opacity: 0.6; }

.ds-link {
  display: block;
  padding: 6px 10px 6px 24px;
  font-size: 13px;
  color: var(--text-muted);
  text-decoration: none;
  border-radius: 6px;
  transition: all var(--transition-fast);
  line-height: 1.5;
}
.ds-link:hover {
  color: var(--text-secondary);
  background: var(--bg-hover);
}
.ds-link.active {
  color: var(--text);
  background: var(--bg-hover);
  font-weight: 500;
}

.ds-anchors {
  margin-top: 24px;
  padding-top: 16px;
  border-top: 1px solid var(--border);
}
.ds-anchor {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 7px 10px;
  font-size: 13px;
  color: var(--text-muted);
  text-decoration: none;
  border-radius: 6px;
  transition: all var(--transition-fast);
}
.ds-anchor:hover { color: var(--text-secondary); background: var(--bg-hover); }
.ds-anchor i { font-size: 13px; width: 18px; text-align: center; }

/* ── Main Content (.dm) ─────────────────────── */
.dm {
  flex: 1;
  margin-left: 260px;
  display: flex;
  min-width: 0;
}

/* ── Doc Content (.dc) ──────────────────────── */
.dc {
  flex: 1;
  max-width: 768px;
  padding: 40px 48px 80px;
  min-width: 0;
}

.dc > h1:first-child {
  font-size: 30px;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 6px;
  letter-spacing: -0.02em;
}

.dc-desc {
  font-size: 16px;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 32px;
}

/* ── Typography ─────────────────────────────── */
.dc h1 { font-size: 28px; font-weight: 700; margin: 48px 0 16px; letter-spacing: -0.02em; }
.dc h2 { font-size: 22px; font-weight: 600; margin: 40px 0 12px; padding-bottom: 8px; border-bottom: 1px solid var(--border); letter-spacing: -0.01em; }
.dc h3 { font-size: 18px; font-weight: 600; margin: 32px 0 10px; }
.dc h4 { font-size: 15px; font-weight: 600; margin: 24px 0 8px; }
.dc h5, .dc h6 { font-size: 14px; font-weight: 600; margin: 20px 0 8px; }

.dc h1:first-child { margin-top: 0; }
.dc h2:first-of-type { margin-top: 32px; }

.dc p { font-size: 15px; line-height: 1.75; color: var(--text-secondary); margin-bottom: 16px; }
.dc p:last-child { margin-bottom: 0; }

.dc strong { color: var(--text); font-weight: 600; }
.dc em { font-style: italic; }
.dc del { opacity: 0.5; }

.dc a {
  color: var(--text);
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-color: var(--border-light);
  transition: text-decoration-color var(--transition-fast);
}
.dc a:hover { text-decoration-color: var(--text-secondary); }

.dc hr {
  border: none;
  border-top: 1px solid var(--border);
  margin: 32px 0;
}

/* ── Inline Code ────────────────────────────── */
.dc code {
  font-family: 'JetBrains Mono', 'SF Mono', 'Fira Code', monospace;
  font-size: 13px;
  padding: 2px 6px;
  background: var(--code-bg);
  border: 1px solid var(--code-border);
  border-radius: 4px;
  color: var(--text);
}

/* ── Code Blocks ────────────────────────────── */
.code-block {
  margin: 16px 0;
  border-radius: 10px;
  border: 1px solid var(--border);
  overflow: hidden;
  background: var(--bg-card);
}
.code-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 14px;
  background: rgba(255,255,255,0.02);
  border-bottom: 1px solid var(--border);
  font-size: 12px;
  color: var(--text-muted);
}
.code-copy {
  background: none;
  border: none;
  color: var(--text-muted);
  font-size: 12px;
  cursor: pointer;
  padding: 4px 8px;
  border-radius: 4px;
  font-family: inherit;
  transition: all var(--transition-fast);
  display: flex;
  align-items: center;
  gap: 4px;
}
.code-copy:hover { color: var(--text); background: var(--bg-hover); }
.code-copy.copied { color: var(--success); }

.code-block pre {
  margin: 0;
  padding: 16px;
  overflow-x: auto;
  font-size: 13px;
  line-height: 1.6;
}
.code-block pre code {
  background: none;
  border: none;
  padding: 0;
  font-size: 13px;
  color: var(--text-secondary);
}

/* ── Lists ──────────────────────────────────── */
.dc ul, .dc ol { padding-left: 24px; margin-bottom: 16px; }
.dc li {
  font-size: 15px;
  line-height: 1.75;
  color: var(--text-secondary);
  margin-bottom: 4px;
}
.dc li code { font-size: 12.5px; }
.dc ul { list-style-type: disc; }
.dc ol { list-style-type: decimal; }

/* ── Tables ─────────────────────────────────── */
.dc table {
  width: 100%;
  border-collapse: collapse;
  margin: 16px 0;
  font-size: 14px;
}
.dc table thead th {
  text-align: left;
  padding: 10px 14px;
  font-weight: 600;
  font-size: 13px;
  color: var(--text-muted);
  background: var(--bg-card);
  border-bottom: 1px solid var(--border);
}
.dc table tbody td {
  padding: 10px 14px;
  border-bottom: 1px solid var(--border);
  color: var(--text-secondary);
}
.dc table tbody tr:last-child td { border-bottom: none; }
.dc table tbody tr:hover { background: rgba(255,255,255,0.015); }

/* ── Callouts ───────────────────────────────── */
.callout {
  display: flex;
  gap: 12px;
  padding: 14px 16px;
  border-radius: 10px;
  margin: 16px 0;
  border: 1px solid;
  font-size: 14px;
  line-height: 1.65;
}
.callout p { margin: 0; font-size: 14px; }
.callout p + p { margin-top: 8px; }
.callout-icon {
  flex-shrink: 0;
  margin-top: 2px;
  font-size: 15px;
}

.callout-warning {
  background: rgba(245, 158, 11, 0.06);
  border-color: rgba(245, 158, 11, 0.2);
  color: var(--text-secondary);
}
.callout-warning .callout-icon { color: #f59e0b; }

.callout-tip {
  background: rgba(34, 197, 94, 0.06);
  border-color: rgba(34, 197, 94, 0.2);
  color: var(--text-secondary);
}
.callout-tip .callout-icon { color: #22c55e; }

.callout-info {
  background: rgba(59, 130, 246, 0.06);
  border-color: rgba(59, 130, 246, 0.2);
  color: var(--text-secondary);
}
.callout-info .callout-icon { color: #3b82f6; }

.callout-note {
  background: rgba(139, 92, 246, 0.06);
  border-color: rgba(139, 92, 246, 0.2);
  color: var(--text-secondary);
}
.callout-note .callout-icon { color: #8b5cf6; }

.callout-check {
  background: rgba(16, 185, 129, 0.06);
  border-color: rgba(16, 185, 129, 0.2);
  color: var(--text-secondary);
}
.callout-check .callout-icon { color: #10b981; }

/* ── Steps ──────────────────────────────────── */
.steps {
  margin: 16px 0;
  padding-left: 0;
}
.step {
  display: flex;
  gap: 16px;
  position: relative;
  padding-bottom: 24px;
}
.step:last-child { padding-bottom: 0; }
.step::before {
  content: '';
  position: absolute;
  left: 15px;
  top: 36px;
  bottom: 0;
  width: 1px;
  background: var(--border);
}
.step:last-child::before { display: none; }

.step-num {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: var(--bg-card);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 600;
  color: var(--text);
  flex-shrink: 0;
  position: relative;
  z-index: 1;
}
.step-body { flex: 1; min-width: 0; padding-top: 3px; }
.step-title {
  font-size: 15px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 8px;
}
.step-content {
  color: var(--text-secondary);
  font-size: 14px;
  line-height: 1.65;
}
.step-content p { font-size: 14px; margin-bottom: 8px; }
.step-content p:last-child { margin-bottom: 0; }

/* ── Tabs ───────────────────────────────────── */
.tabs {
  margin: 16px 0;
  border: 1px solid var(--border);
  border-radius: 10px;
  overflow: hidden;
}
.tabs-header {
  display: flex;
  background: rgba(255,255,255,0.02);
  border-bottom: 1px solid var(--border);
  overflow-x: auto;
}
.tab-btn {
  padding: 10px 18px;
  font-size: 13px;
  font-weight: 500;
  color: var(--text-muted);
  background: none;
  border: none;
  border-bottom: 2px solid transparent;
  cursor: pointer;
  transition: all var(--transition-fast);
  white-space: nowrap;
  font-family: inherit;
}
.tab-btn:hover { color: var(--text-secondary); }
.tab-btn.active {
  color: var(--text);
  border-bottom-color: var(--text);
}
.tab-panel {
  display: none;
  padding: 16px;
}
.tab-panel.active { display: block; }
.tab-panel p { font-size: 14px; }

/* ── Accordion ──────────────────────────────── */
.accordion-group {
  margin: 16px 0;
  border: 1px solid var(--border);
  border-radius: 10px;
  overflow: hidden;
}
.accordion + .accordion { border-top: 1px solid var(--border); }

.accordion-trigger {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 14px 16px;
  font-size: 14px;
  font-weight: 500;
  color: var(--text);
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: inherit;
  transition: background var(--transition-fast);
}
.accordion-trigger:hover { background: rgba(255,255,255,0.02); }
.accordion-trigger i {
  font-size: 12px;
  color: var(--text-muted);
  transition: transform 0.2s ease;
}
.accordion.open .accordion-trigger i { transform: rotate(180deg); }

.accordion-body {
  display: none;
  padding: 0 16px 16px;
  color: var(--text-secondary);
  font-size: 14px;
  line-height: 1.65;
}
.accordion.open .accordion-body { display: block; }
.accordion-body ul { padding-left: 20px; }
.accordion-body li { margin-bottom: 4px; }

/* ── Cards ──────────────────────────────────── */
.card-grid {
  display: grid;
  gap: 12px;
  margin: 16px 0;
}
.card-grid.cols-2 { grid-template-columns: repeat(2, 1fr); }
.card-grid.cols-3 { grid-template-columns: repeat(3, 1fr); }
.card-grid.cols-4 { grid-template-columns: repeat(4, 1fr); }

.doc-card {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 16px;
  border-radius: 10px;
  border: 1px solid var(--border);
  background: var(--bg-card);
  text-decoration: none;
  color: var(--text);
  transition: all var(--transition-fast);
}
.doc-card:hover {
  border-color: var(--border-light);
  background: var(--bg-card-hover);
}
.doc-card-icon {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  background: var(--bg-elevated);
  font-size: 14px;
  color: var(--text-muted);
}
.doc-card-title {
  font-size: 14px;
  font-weight: 600;
}
.doc-card-desc {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.5;
}

/* Horizontal card */
.doc-card.horizontal {
  flex-direction: row;
  align-items: center;
  gap: 14px;
}
.doc-card.horizontal .doc-card-icon {
  width: 40px;
  height: 40px;
  font-size: 16px;
}

/* ── File Tree ──────────────────────────────── */
.file-tree {
  margin: 16px 0;
  padding: 16px;
  border: 1px solid var(--border);
  border-radius: 10px;
  background: var(--bg-card);
  font-size: 13px;
  font-family: 'JetBrains Mono', 'SF Mono', monospace;
}
.file-tree ul {
  list-style: none;
  padding-left: 0;
  margin: 0;
}
.file-tree ul ul {
  padding-left: 20px;
  border-left: 1px solid var(--border);
  margin-left: 8px;
}
.file-tree li {
  padding: 3px 0;
  color: var(--text-secondary);
  display: flex;
  align-items: flex-start;
  flex-wrap: wrap;
  font-size: 13px;
  line-height: 1.6;
}
.file-tree li.tree-folder > span {
  font-weight: 500;
  color: var(--text);
}
.file-tree li.tree-folder > span::before {
  content: '\f07b';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  font-size: 12px;
  margin-right: 6px;
  color: var(--text-muted);
}
.file-tree li.tree-file::before {
  content: '\f15b';
  font-family: 'Font Awesome 6 Free';
  font-weight: 400;
  font-size: 12px;
  margin-right: 6px;
  color: var(--text-muted);
}
.file-tree li > ul {
  width: 100%;
}

/* ── Prev/Next (.pn) ────────────────────────── */
.pn {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 48px;
  padding-top: 32px;
  border-top: 1px solid var(--border);
}
.pn-link {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 16px;
  border-radius: 10px;
  border: 1px solid var(--border);
  text-decoration: none;
  color: var(--text);
  transition: all var(--transition-fast);
}
.pn-link:hover {
  border-color: var(--border-light);
  background: var(--bg-card);
}
.pn-link.next { text-align: right; align-items: flex-end; }
.pn-label {
  font-size: 12px;
  color: var(--text-muted);
}
.pn-title {
  font-size: 14px;
  font-weight: 600;
}

/* ── Table of Contents (.dt) ────────────────── */
.dt {
  position: sticky;
  top: var(--nav-height, 60px);
  align-self: flex-start;
  width: 220px;
  flex-shrink: 0;
  padding: 40px 24px 40px 0;
  max-height: calc(100vh - var(--nav-height, 60px));
  overflow-y: auto;
}
.dt-title {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text-muted);
  margin-bottom: 12px;
}
.dt nav { display: flex; flex-direction: column; gap: 2px; }

.dt a {
  display: block;
  padding: 4px 0 4px 12px;
  font-size: 13px;
  color: var(--text-muted);
  text-decoration: none;
  border-left: 2px solid transparent;
  transition: all var(--transition-fast);
  line-height: 1.5;
}
.dt a:hover { color: var(--text-secondary); }
.dt a.active {
  color: var(--text);
  border-left-color: var(--text);
}
.dt a[data-level="3"] { padding-left: 24px; font-size: 12px; }
.dt a[data-level="4"] { padding-left: 36px; font-size: 12px; }

/* ── Footer (.df) ───────────────────────────── */
.df {
  margin-left: 260px;
  border-top: 1px solid var(--border);
  padding: 24px 48px;
}
.df-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 768px;
  font-size: 13px;
  color: var(--text-muted);
}
.df-links { display: flex; gap: 12px; }
.df-links a { color: var(--text-muted); font-size: 16px; transition: color var(--transition-fast); }
.df-links a:hover { color: var(--text); }

/* ── Mobile Responsive ──────────────────────── */
@media (max-width: 1200px) {
  .dt { display: none; }
}

@media (max-width: 900px) {
  .dn-c { display: none; }
  .dn-link { display: none; }
  .dn-burger { display: block; }

  .ds {
    transform: translateX(-100%);
    transition: transform 0.2s ease;
    z-index: 90;
    background: var(--bg0);
  }
  .ds.open { transform: translateX(0); }

  /* Sidebar overlay */
  .ds-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.5);
    z-index: 89;
  }
  .ds-overlay.open { display: block; }

  .dm { margin-left: 0; }
  .df { margin-left: 0; }
  .dc { padding: 24px 20px 60px; }
}

@media (max-width: 640px) {
  .card-grid.cols-2,
  .card-grid.cols-3,
  .card-grid.cols-4 { grid-template-columns: 1fr; }

  .pn { grid-template-columns: 1fr; }

  .doc-card.horizontal { flex-direction: column; }

  .dn-r .dn-btn { font-size: 12px; padding: 6px 12px; }
}

/* ── Highlight.js overrides ─────────────────── */
.hljs {
  background: transparent !important;
  padding: 0 !important;
}

/* ── Image handling ─────────────────────────── */
.dc img {
  max-width: 100%;
  border-radius: 8px;
  border: 1px solid var(--border);
  margin: 16px 0;
}

/* ── Heading anchor links ───────────────────── */
.dc h2:hover::after,
.dc h3:hover::after,
.dc h4:hover::after {
  content: ' #';
  color: var(--text-muted);
  font-weight: 400;
  cursor: pointer;
}

