/* ── Docs Layout ─────────────────────────────────────────────────────────── */
.docs-layout {
  --wytham-cream: #F5F1E7;
  --wytham-field: #C8C1AE;
  --wytham-moss: #87976B;
  --wytham-moss-light: #AAB68A;
  --wytham-gold: #C6A24B;
  --wytham-gold-strong: #B7923F;
  --wytham-bronze: #8E6D49;
  --wytham-understory: #454C3D;
  --brand: var(--wytham-gold);
  --brand-dim: rgba(198,162,75,0.14);
  --brand-soft: rgba(135,151,107,0.14);
  --brand-strong: rgba(198,162,75,0.24);
  --brand-cream: rgba(245,241,231,0.1);
  width: 100%;
  display: flex;
  align-items: flex-start;
  min-height: 100vh;
  padding: 60px var(--site-gutter) 0; /* nav height + shared page gutter */
  max-width: var(--site-max);
  margin: 0 auto;
  position: relative;
}

/* ── Sidebar ──────────────────────────────────────────────────────────────── */
.docs-sidebar #docsSidebar{
  width: 248px;
  flex-shrink: 0;
  position: sticky;
  top: 68px;
  align-self: flex-start;
  max-height: calc(100vh - 68px);
  overflow: hidden;
  border-right: 1px solid var(--border);
  background: var(--bg);
}

.docs-sidebar-inner { padding: 28px 20px 40px; }

.docs-sidebar-header {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 24px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border);
}
.docs-sidebar-title {
  font-family: var(--mono-font);
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-2);
}

.docs-version-chip {
  display: inline-flex;
  align-items: center;
  padding: 2px 7px;
  border-radius: var(--radius-pill);
  background: rgba(198,162,75,0.14);
  border: 1px solid rgba(198,162,75,0.24);
  color: var(--brand);
  font-size: 10px;
  font-weight: 600;
  font-family: var(--mono-font);
  letter-spacing: 0.02em;
}

/* TOC */
.docs-toc { display: flex; flex-direction: column; gap: 2px; }

.docs-toc-group {
  margin-top: 18px;
  display: flex;
  flex-direction: column;
  gap: 1px;
}
.docs-toc-label {
  font-family: var(--mono-font);
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  color: var(--text-3);
  padding: 0 8px;
  margin-bottom: 4px;
}
.docs-toc-link {
  display: block;
  padding: 5px 8px;
  font-size: 13px;
  color: var(--text-2);
  text-decoration: none;
  border-radius: var(--radius-sm);
  transition: color 0.15s, background 0.15s;
  line-height: 1.4;
}
.docs-toc-indent { padding-left: 18px; font-size: 12.5px; }
.docs-toc-link:hover { color: var(--brand); background: rgba(198,162,75,0.14); }
.docs-toc-link.docs-toc-active {
  color: var(--brand);
  background: rgba(135,151,107,0.12);
  font-weight: 500;
}
.docs-toc-top {
  font-weight: 600;
  font-size: 13px;
  color: var(--text);
}

/* ── Main content ─────────────────────────────────────────────────────────── */
.docs-main {
  flex: 1;
  min-width: 0;
  padding: 48px 56px 96px;
}

/* ── Docs hero ─────────────────────────────────────────────────────────────── */
.docs-hero {
  margin-bottom: 60px;
  padding-bottom: 48px;
  border-bottom: 1px solid var(--border);
  position: relative;
}
.docs-hero::before {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 1px;
  background: linear-gradient(90deg, rgba(198,162,75,0.55), rgba(135,151,107,0.32), transparent 80%);
  pointer-events: none;
}
.updates-page .docs-hero {
  margin-bottom: 28px;
  padding-bottom: 24px;
}
.docs-hero-badge {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
}
.docs-hero-title {
  font-size: clamp(28px, 3vw, 42px);
  font-weight: 270;
  color: var(--text);
  letter-spacing: -0.025em;
  line-height: 1.15;
  margin-bottom: 14px;
}
.docs-hero-sub {
  font-size: 16px;
  color: var(--text-2);
  max-width: 580px;
  line-height: 1.6;
  margin-bottom: 24px;
}
.docs-hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  font-size: 13px;
  color: var(--text-2);
}
.docs-hero-meta span {
  display: flex;
  align-items: center;
  gap: 5px;
  font-family: var(--mono-font);
}

/* ── Section ──────────────────────────────────────────────────────────────── */
.docs-section {
  margin-bottom: 64px;
  scroll-margin-top: 80px;
}
.docs-subsection {
  margin-top: 40px;
  scroll-margin-top: 80px;
}
.docs-h2 {
  font-size: 22px;
  font-weight: 270;
  color: var(--text);
  letter-spacing: -0.015em;
  margin-bottom: 16px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--border);
  scroll-margin-top: 80px;
}
.docs-h3 {
  font-size: 16px;
  font-weight: 270;
  color: var(--text);
  margin: 32px 0 12px;
  scroll-margin-top: 80px;
}
.docs-section p {
  font-size: 15px;
  color: var(--text-2);
  line-height: 1.75;
  margin-bottom: 14px;
}
.docs-section p strong { color: var(--text); }

/* ── Inline code ─────────────────────────────────────────────────────────── */
.docs-code {
  font-family: var(--mono-font);
  font-size: 12.5px;
  padding: 2px 6px;
  border-radius: 5px;
  background: rgba(69,76,61,0.16);
  border: 1px solid rgba(142,109,73,0.28);
  color: var(--brand);
}

/* ── Info grid (property table) ──────────────────────────────────────────── */
.docs-info-grid {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  margin-top: 24px;
}
.docs-info-row {
  display: flex;
  align-items: start;
  padding: 11px 16px;
  border-bottom: 1px solid var(--border);
  gap: 20px;
  font-size: 13.5px;
}
.docs-info-row:last-child { border-bottom: none; }
.docs-info-key {
  min-width: 130px;
  font-weight: 600;
  color: var(--text-2);
  flex-shrink: 0;
  font-family: var(--mono-font);
}
.docs-info-val { color: var(--text); }
.docs-info-val--green { color: var(--wytham-moss-light); }
.docs-inline-icon {
  font-size: 13px;
  margin-right: 3px;
  vertical-align: middle;
}

/* ── Tables ──────────────────────────────────────────────────────────────── */
.docs-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 13.5px;
  margin: 20px 0;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}
.docs-table th {
  background: var(--bg-2);
  color: var(--text-2);
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  padding: 10px 14px;
  text-align: left;
  border-bottom: 1px solid var(--border);
}
.docs-table td {
  padding: 10px 14px;
  border-bottom: 1px solid var(--border);
  color: var(--text-2);
  vertical-align: top;
}
.docs-table td strong { color: var(--text); }
.docs-table tr:last-child td { border-bottom: none; }
.docs-table tr:hover td { background: rgba(255,255,255,0.02); }

/* Comparison table */
.docs-table-compare .docs-th-bundle { color: var(--wytham-gold); }
.docs-table-compare .docs-th-lite { color: var(--wytham-moss); }
.docs-td-yes { color: var(--wytham-moss-light) !important; }
.docs-td-no { color: rgba(208,126,90,0.92) !important; }
.docs-td-neutral { color: var(--text-2) !important; }

/* ── Edition cards ───────────────────────────────────────────────────────── */
.docs-edition-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin: 24px 0;
}
.docs-edition-card {
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  background: var(--bg-2);
  padding: 24px;
  transition: border-color 0.2s;
  scroll-margin-top: 80px;
}
.docs-edition-bundle {
  border-color: rgba(198,162,75,0.3);
  background: linear-gradient(145deg, rgba(198,162,75,0.06) 0%, var(--bg-2) 60%);
}
.docs-edition-bundle:hover { border-color: rgba(198,162,75,0.5); }
.docs-edition-lite {
  border-color: transparent;
  background: linear-gradient(145deg, rgba(135,151,107,0.05) 0%, var(--bg-2) 60%);
}
.docs-edition-lite:hover { border-color: transparent; }

.docs-edition-card-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 14px;
}
.docs-edition-badge {
  display: inline-block;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 3px 9px;
  border-radius: var(--radius-pill);
  margin-right: 8px;
  font-family: var(--mono-font);
}
.docs-badge-bundle {
  background: rgba(198,162,75,0.14);
  color: var(--brand);
  border: 1px solid rgba(198,162,75,0.28);
}
.docs-badge-lite {
  background: rgba(135,151,107,0.12);
  color: var(--wytham-moss-light);
  border: 1px solid rgba(135,151,107,0.22);
}
.docs-edition-size {
  font-size: 12px;
  color: var(--text-2);
  font-family: var(--mono-font);
}
.docs-edition-icon {
  font-size: 28px;
  color: var(--text-3);
}
.docs-edition-name {
  font-size: 17px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 4px;
}
.docs-edition-tagline {
  font-size: 13px;
  color: var(--text-2);
  margin-bottom: 18px;
}
.docs-edition-list {
  list-style: none;
  margin-bottom: 24px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.docs-edition-list li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 13.5px;
  color: var(--text-2);
  line-height: 1.5;
}
.docs-edition-list li i { font-size: 15px; flex-shrink: 0; margin-top: 1px; }
.docs-feat-yes i { color: var(--wytham-moss-light); }
.docs-feat-no i { color: rgba(240,100,100,0.85); }
.docs-feat-neutral i { color: var(--text-3); }
.docs-feat-yes strong, .docs-feat-no strong { color: var(--text); }

.docs-edition-steps {
  border-top: 1px solid var(--border);
  padding-top: 16px;
  margin-top: 4px;
}
.docs-steps-title {
  font-family: var(--mono-font);
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: var(--text-3);
  margin-bottom: 12px;
}
.docs-steps-list {
  padding-left: 18px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.docs-steps-list li {
  font-size: 13px;
  color: var(--text-2);
  line-height: 1.6;
}
.docs-steps-list li strong { color: var(--text); }
.docs-steps-list li em { color: var(--text-2); font-style: normal; opacity: 0.8; }

/* ── Lists ───────────────────────────────────────────────────────────────── */
.docs-ul, .docs-ol {
  padding-left: 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin: 14px 0;
}
.docs-ul li, .docs-ol li {
  font-size: 14.5px;
  color: var(--text-2);
  line-height: 1.65;
}
.docs-ul li strong, .docs-ol li strong { color: var(--text); }
.docs-ul { list-style: disc; }
.docs-ol { list-style: decimal; }

/* ── Callouts ────────────────────────────────────────────────────────────── */
.docs-callout {
  display: flex;
  gap: 14px;
  padding: 16px 18px;
  border-radius: var(--radius);
  margin: 20px 0;
  font-size: 14px;
  line-height: 1.6;
}
.docs-callout-icon {
  font-size: 18px;
  flex-shrink: 0;
  margin-top: 1px;
}
.docs-callout div { flex: 1; }
.docs-callout strong { display: block; margin-bottom: 6px; }
.docs-callout-list {
  padding-left: 16px;
  margin: 6px 0;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.docs-callout-list li { font-size: 13.5px; color: inherit; opacity: 0.85; }
.docs-callout-note { font-size: 12.5px; margin-top: 8px; opacity: 0.7; }

.docs-callout-info {
  background: rgba(198,162,75,0.06);
  border: 1px solid rgba(198,162,75,0.16);
  color: var(--text-2);
}
.docs-callout-info .docs-callout-icon,
.docs-callout-info strong { color: var(--brand); }

.docs-callout-tip {
  background: rgba(135,151,107,0.07);
  border: 1px solid rgba(135,151,107,0.18);
  color: var(--text-2);
}
.docs-callout-tip .docs-callout-icon,
.docs-callout-tip strong { color: var(--wytham-moss); }

.docs-callout-warning {
  background: rgba(142,109,73,0.08);
  border: 1px solid rgba(142,109,73,0.2);
  color: var(--text-2);
}
.docs-callout-warning .docs-callout-icon,
.docs-callout-warning strong { color: var(--wytham-gold-strong); }

/* ── Export cards ────────────────────────────────────────────────────────── */
.docs-export-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin: 20px 0;
}
.docs-export-card {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 18px;
  background: var(--bg-2);
  transition: border-color 0.2s;
}
.docs-export-card:hover { border-color: var(--border-strong); }
.docs-export-icon {
  font-size: 26px;
  color: var(--brand);
  margin-bottom: 8px;
}
.docs-export-label {
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 6px;
}
.docs-export-card p {
  font-size: 13px;
  color: var(--text-2);
  line-height: 1.55;
  margin: 0;
}

/* ── Privacy list ────────────────────────────────────────────────────────── */
.docs-privacy-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 16px;
}
.docs-privacy-item {
  display: flex;
  gap: 14px;
  padding: 16px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--bg-2);
  font-size: 14px;
  color: var(--text-2);
  line-height: 1.6;
}
.docs-privacy-item strong { color: var(--text); }
.docs-privacy-icon {
  font-size: 20px;
  color: var(--brand);
  flex-shrink: 0;
  margin-top: 1px;
}

/* ── Release notes ───────────────────────────────────────────────────────── */
.docs-release-card {
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: var(--bg-2);
  padding: 28px;
  margin-bottom: 20px;
}
.docs-release-latest {
  border-color: rgba(198,162,75,0.28);
  background: linear-gradient(145deg, rgba(198,162,75,0.05) 0%, var(--bg-2) 50%);
}
.docs-release-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
  flex-wrap: wrap;
}
.docs-release-version {
  font-size: 20px;
  font-weight: 700;
  color: var(--text);
  font-family: var(--mono-font);
}
.docs-release-date {
  font-family: var(--mono-font);
  font-size: 13px;
  color: var(--text-2);
}
.docs-release-tag {
  font-family: var(--mono-font);
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  padding: 2px 8px;
  border-radius: var(--radius-pill);
  background: rgba(135,151,107,0.14);
  border: 1px solid rgba(135,151,107,0.24);
  color: var(--wytham-moss-light);
}
.docs-release-intro {
  font-size: 14px;
  color: var(--text-2);
  line-height: 1.6;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--border);
}
.docs-release-group {
  margin-bottom: 20px;
}
.docs-release-group-title {
  font-size: 13px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 6px;
}
.docs-release-group-title i { font-size: 15px; }
.docs-release-group-bugs .docs-release-group-title i { color: rgba(240,100,100,0.88); }
.docs-release-group-improvements .docs-release-group-title i { color: var(--wytham-gold); }
.docs-release-group-features .docs-release-group-title i { color: var(--wytham-moss); }
.docs-release-group-notes .docs-release-group-title i { color: var(--brand); }
.docs-release-list {
  padding-left: 18px;
  display: flex;
  flex-direction: column;
  gap: 5px;
  list-style: disc;
}
.docs-release-list li {
  font-size: 13.5px;
  color: var(--text-2);
  line-height: 1.55;
}

/* ── Status badges ───────────────────────────────────────────────────────── */
.docs-status {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  padding: 2px 8px;
  border-radius: var(--radius-pill);
  font-family: var(--mono-font);
}
.docs-status-planned {
  background: rgba(245,241,231,0.08);
  color: var(--wytham-field);
  border: 1px solid rgba(142,109,73,0.22);
}
.docs-status-dev {
  background: rgba(198,162,75,0.12);
  color: var(--brand);
  border: 1px solid rgba(198,162,75,0.26);
}

/* ── Mobile sidebar toggle ───────────────────────────────────────────────── */
.docs-sidebar-toggle {
  display: none;
  position: fixed;
  bottom: 24px;
  right: 20px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--brand);
  border: none;
  color: #181818;
  font-size: 20px;
  cursor: pointer;
  z-index: 200;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(198,162,75,0.28);
}

/* ── Responsive ──────────────────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .docs-layout { padding: 60px 32px 0; }
  .docs-main { padding: 40px 36px 80px; }
}

@media (max-width: 768px) {
  .docs-layout { padding: 60px 20px 0; }
  .docs-sidebar {
    position: fixed;
    left: -260px;
    top: 60px;
    height: calc(100vh - 60px);
    width: 248px;
    z-index: 150;
    transition: left 0.28s ease;
    box-shadow: none;
  }
  .docs-sidebar.docs-sidebar-open {
    left: 0;
    box-shadow: 4px 0 24px rgba(0,0,0,0.4);
  }
  .docs-sidebar-toggle { display: flex; }
  .docs-main { padding: 32px 20px 80px; }
  .docs-edition-cards { grid-template-columns: 1fr; }
  .docs-export-grid { grid-template-columns: 1fr; }
}

@media (max-width: 540px) {
  .docs-hero-meta { gap: 10px; }
  .docs-h2 { font-size: 18px; }
}

@media (max-width: 768px) {
  .docs-layout,
  .docs-main,
  .docs-section,
  .docs-subsection {
    min-width: 0;
  }

  .docs-main {
    padding: 24px 14px 64px;
  }

  .docs-hero-title { font-size: clamp(24px, 8vw, 32px); }
  .docs-hero-sub {
    font-size: 14px;
    line-height: 1.5;
  }

  .docs-section { margin-bottom: 40px; }
  .docs-h2 {
    font-size: 18px;
    margin-bottom: 12px;
  }
  .docs-h3 {
    font-size: 15px;
    margin: 22px 0 10px;
  }
  .docs-section p {
    font-size: 14px;
    line-height: 1.6;
  }

  .docs-info-row {
    flex-direction: column;
    gap: 6px;
    padding: 10px 12px;
  }
  .docs-info-key { min-width: 0; }

  .docs-table {
    display: block;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    border-radius: 10px;
  }
  .docs-table thead,
  .docs-table tbody,
  .docs-table tr {
    white-space: nowrap;
  }

  .docs-edition-card,
  .docs-export-card,
  .docs-privacy-item,
  .docs-release-card {
    padding: 14px;
    border-radius: 12px;
  }

  .docs-callout {
    padding: 12px 14px;
    border-radius: 10px;
  }
}

@media (max-width: 420px) {
  .docs-layout { padding: 60px 10px 0; }
  .docs-main { padding: 20px 10px 56px; }

  .docs-sidebar {
    width: 224px;
    left: -236px;
  }
}

/* ── Light theme overrides ───────────────────────────────────────────────── */
body.light .docs-layout {
  --brand: var(--wytham-moss);
  --brand-dim: rgba(135,151,107,0.08);
  --brand-soft: rgba(135,151,107,0.08);
  --brand-strong: rgba(135,151,107,0.22);
  --brand-cream: rgba(135,151,107,0.04);
}
body.light .docs-sidebar {
  background: #ffffff;
  border-right-color: rgba(0,0,0,0.09);
}
body.light .docs-sidebar-header { border-bottom-color: rgba(0,0,0,0.08); }
body.light .docs-version-chip {
  background: #ffffff;
  border-color: rgba(135,151,107,0.22);
  color: #3f4d31;
}
body.light .docs-hero .feature-tag {
  background: #ffffff;
  border-color: rgba(0,0,0,0.09);
  color: #3f4d31;
}
body.light .docs-toc-link:hover { background: rgba(0,0,0,0.03); color: #0f0f0e; }
body.light .docs-toc-link.docs-toc-active { background: rgba(135,151,107,0.08); color: #3f4d31; }

body.light .docs-hero { border-bottom-color: rgba(0,0,0,0.08); }
body.light .docs-hero-title { color: #0f0f0e; }
body.light .docs-hero-sub { color: rgba(15,15,14,0.6); }
body.light .docs-hero-meta { color: rgba(15,15,14,0.5); }
body.light .docs-hero::before {
  background: linear-gradient(90deg, rgba(135,151,107,0.58), rgba(0,0,0,0.08), transparent 80%);
}

body.light .docs-h2 {
  color: #0f0f0e;
  border-bottom-color: rgba(0,0,0,0.08);
}
body.light .docs-h3 { color: #0f0f0e; }
body.light .docs-section p { color: rgba(15,15,14,0.65); }
body.light .docs-section p strong { color: #0f0f0e; }

body.light .docs-code {
  background: #ffffff;
  border-color: rgba(0,0,0,0.1);
  color: #40443a;
}

body.light .docs-info-grid { border-color: rgba(0,0,0,0.09); }
body.light .docs-info-row { border-bottom-color: rgba(0,0,0,0.07); }
body.light .docs-info-key { color: rgba(15,15,14,0.5); }
body.light .docs-info-val { color: #0f0f0e; }

body.light .docs-table { border-color: rgba(0,0,0,0.09); }
body.light .docs-table th {
  background: #f6f6f3;
  color: rgba(15,15,14,0.5);
  border-bottom-color: rgba(0,0,0,0.09);
}
body.light .docs-table td {
  border-bottom-color: rgba(0,0,0,0.07);
  color: rgba(15,15,14,0.65);
}
body.light .docs-table tr:hover td { background: rgba(0,0,0,0.02); }
body.light .docs-table-compare .docs-th-bundle { color: rgba(15,15,14,0.6); }
body.light .docs-table-compare .docs-th-lite { color: #3f4d31; }

body.light .docs-edition-card {
  background: #ffffff;
  border-color: rgba(0,0,0,0.09);
}
body.light .docs-edition-bundle { border-color: rgba(0,0,0,0.09); background: #ffffff; }
body.light .docs-edition-bundle:hover { border-color: rgba(0,0,0,0.15); }
body.light .docs-edition-lite { border-color: transparent; background: #ffffff; }
body.light .docs-edition-lite:hover { border-color: transparent; }
body.light .docs-edition-name { color: #0f0f0e; }
body.light .docs-edition-tagline { color: rgba(15,15,14,0.55); }
body.light .docs-edition-list li { color: rgba(15,15,14,0.65); }
body.light .docs-steps-list li { color: rgba(15,15,14,0.65); }
body.light .docs-edition-steps { border-top-color: rgba(0,0,0,0.08); }
body.light .docs-steps-title { color: rgba(15,15,14,0.35); }
body.light .docs-badge-bundle {
  background: #ffffff;
  color: rgba(15,15,14,0.58);
  border-color: rgba(0,0,0,0.1);
}
body.light .docs-badge-lite {
  background: #ffffff;
  color: #3f4d31;
  border-color: rgba(135,151,107,0.24);
}

body.light .docs-callout-info {
  background: #ffffff;
  border-color: rgba(0,0,0,0.09);
  color: rgba(15,15,14,0.65);
}
body.light .docs-callout-tip {
  background: #ffffff;
  border-color: rgba(135,151,107,0.18);
  color: rgba(15,15,14,0.65);
}
body.light .docs-callout-warning {
  background: #ffffff;
  border-color: rgba(142,109,73,0.18);
  color: rgba(15,15,14,0.65);
}
body.light .docs-callout-warning .docs-callout-icon,
body.light .docs-callout-warning strong {
  color: #a4514b;
}

body.light .docs-export-card {
  background: #ffffff;
  border-color: rgba(0,0,0,0.09);
}
body.light .docs-export-label { color: #0f0f0e; }
body.light .docs-export-card p { color: rgba(15,15,14,0.6); }

body.light .docs-privacy-item {
  background: #ffffff;
  border-color: rgba(0,0,0,0.09);
  color: rgba(15,15,14,0.65);
}
body.light .docs-privacy-item strong { color: #0f0f0e; }

body.light .docs-release-card {
  background: #ffffff;
  border-color: rgba(0,0,0,0.09);
}
body.light .docs-release-latest {
  border-color: rgba(135,151,107,0.22);
  background: #ffffff;
}
body.light .docs-release-version { color: #0f0f0e; }
body.light .docs-release-date { color: rgba(15,15,14,0.5); }
body.light .docs-release-intro {
  color: rgba(15,15,14,0.6);
  border-bottom-color: rgba(0,0,0,0.08);
}
body.light .docs-release-group-title { color: #0f0f0e; }
body.light .docs-release-group-bugs .docs-release-group-title i { color: rgba(180,120,40,0.9); }
body.light .docs-release-group-improvements .docs-release-group-title i { color: #3f4d31; }
body.light .docs-release-group-features .docs-release-group-title i { color: #3f4d31; }
body.light .docs-release-group-notes .docs-release-group-title i { color: #3f4d31; }
body.light .docs-release-list li { color: rgba(15,15,14,0.65); }
body.light .docs-release-tag {
  background: #ffffff;
  border-color: rgba(135,151,107,0.24);
  color: #3f4d31;
}
body.light .docs-status-planned {
  background: #ffffff;
  color: rgba(15,15,14,0.5);
  border-color: rgba(0,0,0,0.1);
}
body.light .docs-status-dev {
  background: #ffffff;
  color: #3f4d31;
  border-color: rgba(135,151,107,0.24);
}

body.light .docs-ul li, body.light .docs-ol li { color: rgba(15,15,14,0.65); }
body.light .docs-ul li strong, body.light .docs-ol li strong { color: #0f0f0e; }
