:root {
  color-scheme: dark;
  --bg: #151311;
  --bg-soft: #1d1a17;
  --panel: #24201c;
  --panel-2: #2d2822;
  --ink: #f5eee4;
  --muted: #c9bdae;
  --faint: #897e70;
  --line: #3d352c;
  --line-strong: #61513d;
  --amber: #d89a3a;
  --amber-soft: #3b2a17;
  --teal: #72b7ab;
  --green: #94b86a;
  --blue: #7ea3c8;
  --red: #ef7c67;
  --red-bg: #3a1d19;
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.36);
  --radius: 8px;
  --sidebar: 320px;
  --max: 1440px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 24px;
}

body {
  margin: 0;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px) 0 0 / 36px 36px,
    linear-gradient(180deg, rgba(255, 255, 255, 0.018) 1px, transparent 1px) 0 0 / 36px 36px,
    var(--bg);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
  letter-spacing: 0;
}

a {
  color: inherit;
}

img,
svg {
  display: block;
  max-width: 100%;
}

::selection {
  background: rgba(216, 154, 58, 0.35);
}

.skip-link {
  position: absolute;
  left: 12px;
  top: 12px;
  z-index: 20;
  padding: 10px 14px;
  border-radius: var(--radius);
  background: var(--ink);
  color: var(--bg);
  transform: translateY(-140%);
}

.skip-link:focus {
  transform: translateY(0);
}

.hero {
  border-bottom: 1px solid var(--line);
  background:
    linear-gradient(135deg, rgba(35, 28, 22, 0.95), rgba(20, 18, 16, 0.96));
}

.hero__shell {
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
  padding: 24px 0 52px;
}

.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 0 0 44px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--ink);
  font-weight: 800;
  letter-spacing: 0;
}

.brand::before {
  content: "";
  width: 10px;
  height: 28px;
  border-radius: 2px;
  background: linear-gradient(to bottom, #e5533d 0 25%, #f2b33d 25% 50%, #4ca65e 50% 75%, #3578b6 75%);
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.12);
}

.topbar__links {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.topbar__links a,
.sidebar-nav a {
  text-decoration: none;
}

.topbar__links a {
  color: var(--muted);
  border: 1px solid transparent;
  padding: 8px 10px;
  border-radius: var(--radius);
  font-size: 0.92rem;
}

.topbar__links a:hover {
  color: var(--ink);
  border-color: var(--line);
  background: rgba(255, 255, 255, 0.04);
}

.hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 420px);
  gap: 42px;
  align-items: end;
}

.kicker {
  color: var(--amber);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  margin: 0 0 14px;
}

h1,
h2,
h3 {
  line-height: 1.08;
  letter-spacing: 0;
}

h1 {
  font-size: clamp(3rem, 7vw, 7rem);
  max-width: 1050px;
  margin: 0 0 22px;
  text-wrap: balance;
}

h2 {
  font-size: clamp(2rem, 4.4vw, 4rem);
  margin: 0 0 18px;
  text-wrap: balance;
}

h3 {
  font-size: 1.08rem;
  margin: 0 0 12px;
}

p {
  margin: 0 0 16px;
}

.subtitle {
  color: var(--amber);
  font-size: clamp(1.05rem, 1.8vw, 1.38rem);
  max-width: 980px;
  font-weight: 700;
}

.hero-text,
.lede {
  color: var(--muted);
  font-size: 1.07rem;
  max-width: 940px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 10px 14px;
  border-radius: var(--radius);
  border: 1px solid var(--line-strong);
  background: rgba(255, 255, 255, 0.035);
  color: var(--ink);
  text-decoration: none;
  font-weight: 800;
  font-size: 0.94rem;
  cursor: pointer;
}

.button:hover,
.button:focus-visible {
  border-color: var(--amber);
  background: rgba(216, 154, 58, 0.12);
  outline: none;
}

.button--primary {
  background: var(--amber);
  border-color: var(--amber);
  color: #1b1308;
}

.button--primary:hover,
.button--primary:focus-visible {
  background: #efb85a;
  color: #1b1308;
}

.hero__panel {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.stat-card {
  min-height: 116px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.04);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.stat-card strong {
  display: block;
  color: var(--ink);
  font-size: 1.45rem;
  line-height: 1.05;
  margin-bottom: 10px;
}

.stat-card span {
  color: var(--muted);
  font-size: 0.9rem;
}

.safety-banner {
  background: var(--red-bg);
  border-top: 1px solid rgba(239, 124, 103, 0.35);
  border-bottom: 1px solid rgba(239, 124, 103, 0.35);
}

.safety-banner > div {
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
  padding: 22px 0;
  display: grid;
  grid-template-columns: 104px minmax(0, 1fr);
  gap: 20px;
  align-items: start;
}

.safety-banner p {
  margin: 0;
  color: #ffe0d8;
  font-weight: 700;
}

.callout-label,
.badge {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  border-radius: 999px;
  border: 1px solid currentColor;
  padding: 4px 9px;
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.danger-label {
  color: var(--red);
}

.page-shell {
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: var(--sidebar) minmax(0, 1fr);
  gap: 28px;
  align-items: start;
  padding: 28px 0 60px;
}

.sidebar {
  position: sticky;
  top: 18px;
  max-height: calc(100vh - 36px);
  overflow: auto;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(29, 26, 23, 0.94);
  box-shadow: var(--shadow);
  padding: 16px;
}

.search-label {
  display: block;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 8px;
}

.search-box {
  width: 100%;
  min-height: 42px;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  background: #12100e;
  color: var(--ink);
  padding: 0 12px;
  font: inherit;
  outline: none;
}

.search-box:focus {
  border-color: var(--amber);
  box-shadow: 0 0 0 3px rgba(216, 154, 58, 0.15);
}

.sidebar-nav {
  display: grid;
  gap: 3px;
  margin-top: 14px;
}

.sidebar-nav a {
  color: var(--muted);
  padding: 8px 9px;
  border-radius: 6px;
  font-size: 0.88rem;
}

.sidebar-nav a:hover,
.sidebar-nav a.is-active {
  color: var(--ink);
  background: rgba(216, 154, 58, 0.12);
}

.content {
  display: grid;
  gap: 22px;
}

.chapter {
  position: relative;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(29, 26, 23, 0.86);
  box-shadow: var(--shadow);
  padding: clamp(24px, 4vw, 44px);
  overflow: clip;
}

.chapter::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 4px;
  background: linear-gradient(90deg, var(--red), var(--amber), var(--green), var(--blue));
}

.section-number {
  color: var(--amber);
  font-weight: 900;
  letter-spacing: 0.12em;
  margin-bottom: 10px;
}

.path-grid,
.recommendation-grid,
.feature-grid,
.callout-grid,
.option-grid,
.three-column,
.supplier-grid,
.resource-grid,
.checklist-grid,
.parts-grid,
.image-grid {
  display: grid;
  gap: 14px;
  margin: 24px 0;
}

.path-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.feature-grid,
.supplier-grid,
.resource-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.recommendation-grid,
.option-grid,
.parts-grid,
.image-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.three-column,
.callout-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.checklist-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.path-card,
.mini-card,
.supplier-card,
.part-card,
.check-card,
.callout,
.fix-box {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.035);
  padding: 18px;
}

.path-card {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.path-card ol,
.howto,
.timeline {
  margin: 0;
  padding-left: 22px;
}

li + li {
  margin-top: 6px;
}

.badge--beginner {
  color: var(--green);
}

.badge--intermediate {
  color: var(--blue);
}

.badge--advanced {
  color: var(--amber);
}

.badge--expert {
  color: var(--red);
}

.callout {
  margin: 24px 0;
}

.callout strong {
  display: block;
  margin-bottom: 8px;
}

.callout p:last-child,
.mini-card p:last-child,
.part-card p:last-child,
.supplier-card p:last-child,
.fix-box p:last-child,
.check-card p:last-child {
  margin-bottom: 0;
}

.callout--danger {
  border-color: rgba(239, 124, 103, 0.55);
  background: rgba(58, 29, 25, 0.75);
}

.callout--warning {
  border-color: rgba(216, 154, 58, 0.55);
  background: rgba(59, 42, 23, 0.72);
}

.callout--note {
  border-color: rgba(114, 183, 171, 0.5);
  background: rgba(24, 47, 44, 0.7);
}

.callout--recommend {
  border-color: rgba(148, 184, 106, 0.55);
  background: rgba(39, 53, 29, 0.72);
}

.table-wrap {
  width: 100%;
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  margin: 24px 0;
  background: rgba(0, 0, 0, 0.15);
}

table {
  width: 100%;
  min-width: 980px;
  border-collapse: collapse;
  font-size: 0.93rem;
}

caption {
  text-align: left;
  color: var(--amber);
  font-weight: 900;
  padding: 14px 16px;
  background: rgba(216, 154, 58, 0.08);
}

th,
td {
  text-align: left;
  vertical-align: top;
  padding: 13px 14px;
  border-top: 1px solid var(--line);
}

th {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.055);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

td {
  color: var(--muted);
}

tbody tr:hover td {
  background: rgba(255, 255, 255, 0.025);
}

.image-grid--two {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.image-placeholder {
  min-height: 230px;
  margin: 0;
  border: 1px dashed rgba(216, 154, 58, 0.55);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(216, 154, 58, 0.08), rgba(114, 183, 171, 0.04)),
    repeating-linear-gradient(45deg, rgba(255, 255, 255, 0.035), rgba(255, 255, 255, 0.035) 8px, transparent 8px, transparent 16px);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 18px;
}

.image-placeholder--wide {
  min-height: 300px;
  margin: 24px 0;
}

.image-placeholder span {
  display: inline-flex;
  width: fit-content;
  border-radius: 6px;
  background: rgba(0, 0, 0, 0.45);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: var(--ink);
  padding: 7px 9px;
  font-weight: 900;
}

figcaption {
  margin-top: 10px;
  color: var(--muted);
  font-size: 0.9rem;
}

.two-column {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  margin: 24px 0;
}

.check-list,
.warning-list,
.dense-list,
.tool-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.check-list li,
.warning-list li,
.dense-list li,
.tool-list li,
.check-card li {
  position: relative;
  padding-left: 22px;
  color: var(--muted);
}

.check-list li::before,
.tool-list li::before,
.check-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.62em;
  width: 8px;
  height: 8px;
  border-radius: 2px;
  background: var(--green);
}

.warning-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.62em;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--red);
}

.dense-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.66em;
  width: 6px;
  height: 6px;
  background: var(--amber);
}

.columns {
  columns: 2;
  column-gap: 34px;
}

.columns li {
  break-inside: avoid;
}

.risk-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  margin: 0 0 18px;
}

.risk-strip span:not(.badge) {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 4px 10px;
  color: var(--muted);
  font-size: 0.8rem;
  font-weight: 800;
}

.upgrade-boxes {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin: 24px 0;
}

.fix-box {
  border-color: rgba(148, 184, 106, 0.5);
  background: rgba(39, 53, 29, 0.62);
}

.fix-box--not {
  border-color: rgba(239, 124, 103, 0.45);
  background: rgba(58, 29, 25, 0.58);
}

.symptom-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  margin: 24px 0;
}

.symptom-card {
  min-height: 76px;
  display: flex;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.04);
  color: var(--ink);
  text-decoration: none;
  padding: 14px;
  font-weight: 900;
}

.symptom-card:hover,
.symptom-card:focus-visible {
  border-color: var(--amber);
  background: rgba(216, 154, 58, 0.12);
  outline: none;
}

.symptom-card.is-hidden,
.chapter.is-hidden {
  display: none;
}

.filter-status {
  color: var(--amber);
  min-height: 1.5em;
  font-weight: 800;
}

.diagnostic-stack {
  display: grid;
  gap: 12px;
}

.diagnostic-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.035);
  overflow: hidden;
}

.diagnostic-card summary {
  cursor: pointer;
  list-style: none;
  display: flex;
  gap: 12px;
  align-items: center;
  padding: 16px 18px;
  font-weight: 900;
}

.diagnostic-card summary::-webkit-details-marker {
  display: none;
}

.diagnostic-card summary::after {
  content: "+";
  margin-left: auto;
  color: var(--amber);
  font-size: 1.5rem;
  line-height: 1;
}

.diagnostic-card[open] summary::after {
  content: "-";
}

.diagnostic-card summary span {
  color: var(--amber);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.diagnostic-body {
  padding: 0 18px 18px;
}

.flowchart {
  display: grid;
  grid-template-columns: repeat(5, minmax(160px, 1fr));
  gap: 10px;
  overflow-x: auto;
}

.flow-node {
  position: relative;
  min-height: 98px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(0, 0, 0, 0.18);
  color: var(--muted);
  padding: 13px;
  font-size: 0.92rem;
}

.flow-node::after {
  content: "then";
  position: absolute;
  right: -9px;
  top: 50%;
  transform: translate(50%, -50%);
  z-index: 2;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--bg);
  color: var(--faint);
  padding: 2px 6px;
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.flow-node:last-child::after,
.flow-node.stop::after {
  display: none;
}

.flow-node.start {
  border-color: rgba(114, 183, 171, 0.55);
  color: var(--ink);
}

.flow-node.stop {
  border-color: rgba(216, 154, 58, 0.55);
  color: var(--ink);
}

.repair-summary {
  margin-top: 14px;
  border-top: 1px solid var(--line);
  padding-top: 14px;
}

.howto {
  display: grid;
  gap: 8px;
  margin: 20px 0 26px;
  counter-reset: steps;
  padding: 0;
}

.howto li {
  list-style: none;
  position: relative;
  padding: 12px 12px 12px 48px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.035);
  color: var(--muted);
}

.howto li::before {
  counter-increment: steps;
  content: counter(steps);
  position: absolute;
  left: 12px;
  top: 10px;
  width: 24px;
  height: 24px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  background: var(--amber);
  color: #1b1308;
  font-weight: 900;
  font-size: 0.8rem;
}

.timeline {
  display: grid;
  gap: 8px;
  margin: 20px 0 26px;
}

.timeline li {
  padding: 10px 12px;
  border-left: 3px solid var(--amber);
  background: rgba(255, 255, 255, 0.035);
  color: var(--muted);
}

.tool-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px 18px;
  margin: 20px 0;
}

.parts-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.part-card:nth-child(-n + 3) {
  background: rgba(216, 154, 58, 0.07);
}

.supplier-card a,
.resource-grid a,
.site-footer a {
  color: var(--amber);
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

.check-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.check-card--wide {
  grid-column: 1 / -1;
}

.print-button {
  margin: 4px 0 8px;
}

.faq-list {
  display: grid;
  gap: 10px;
  margin-top: 22px;
}

.faq-list details {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.035);
}

.faq-list summary {
  cursor: pointer;
  padding: 15px 16px;
  font-weight: 900;
}

.faq-list p {
  padding: 0 16px 16px;
  margin: 0;
  color: var(--muted);
}

.glossary-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-top: 24px;
}

.glossary-grid div {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.035);
  padding: 14px;
}

dt {
  color: var(--ink);
  font-weight: 900;
  margin-bottom: 6px;
}

dd {
  color: var(--muted);
  margin: 0;
  font-size: 0.93rem;
}

.closing-section {
  background: linear-gradient(135deg, rgba(216, 154, 58, 0.12), rgba(29, 26, 23, 0.92));
}

.site-footer {
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
  border-top: 1px solid var(--line);
  padding: 28px 0 42px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 20px;
  color: var(--muted);
}

.site-footer p {
  margin-bottom: 8px;
}

.back-top {
  align-self: start;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 9px 12px;
  text-decoration: none;
  color: var(--ink);
}

@media (max-width: 1180px) {
  .page-shell {
    grid-template-columns: 1fr;
  }

  .sidebar {
    position: relative;
    top: auto;
    max-height: none;
  }

  .sidebar-nav {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero__grid {
    grid-template-columns: 1fr;
  }

  .hero__panel {
    max-width: 760px;
  }

  .symptom-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 820px) {
  .hero__shell,
  .page-shell,
  .safety-banner > div,
  .site-footer {
    width: min(100% - 28px, var(--max));
  }

  .topbar {
    display: grid;
    gap: 18px;
    padding-bottom: 34px;
  }

  .topbar__links {
    justify-content: flex-start;
  }

  .hero__panel,
  .path-grid,
  .feature-grid,
  .recommendation-grid,
  .option-grid,
  .three-column,
  .supplier-grid,
  .resource-grid,
  .checklist-grid,
  .parts-grid,
  .image-grid,
  .two-column,
  .upgrade-boxes,
  .callout-grid,
  .glossary-grid {
    grid-template-columns: 1fr;
  }

  .hero__panel {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .safety-banner > div {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .sidebar-nav {
    grid-template-columns: 1fr;
    max-height: 280px;
    overflow: auto;
  }

  .symptom-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .flowchart {
    grid-template-columns: 1fr;
    overflow: visible;
  }

  .flow-node::after {
    right: auto;
    left: 50%;
    top: auto;
    bottom: -10px;
    transform: translate(-50%, 50%);
  }

  .columns {
    columns: 1;
  }

  .tool-list {
    grid-template-columns: 1fr;
  }

  .site-footer {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 560px) {
  body {
    line-height: 1.55;
  }

  .hero__shell {
    padding-bottom: 34px;
  }

  h1 {
    font-size: 2.6rem;
  }

  h2 {
    font-size: 2rem;
  }

  .chapter {
    padding: 24px 16px;
  }

  .hero__panel,
  .symptom-grid {
    grid-template-columns: 1fr;
  }

  .stat-card,
  .symptom-card {
    min-height: auto;
  }

  .button {
    width: 100%;
  }

  table {
    min-width: 840px;
  }

  .image-placeholder,
  .image-placeholder--wide {
    min-height: 210px;
  }
}

@media print {
  body {
    background: #fff;
    color: #111;
  }

  .hero,
  .sidebar,
  .topbar,
  .safety-banner,
  .site-footer,
  .print-button,
  .button {
    display: none !important;
  }

  .page-shell,
  .content {
    display: block;
    width: 100%;
    padding: 0;
  }

  .chapter {
    break-inside: avoid;
    border: 1px solid #999;
    box-shadow: none;
    background: #fff;
    color: #111;
    margin-bottom: 18px;
  }

  .chapter:not(.printable) {
    display: none;
  }

  .chapter::before {
    display: none;
  }

  h2,
  h3,
  dt {
    color: #111;
  }

  p,
  li,
  td,
  dd {
    color: #222;
  }

  .check-card,
  .mini-card,
  .callout {
    border-color: #999;
    background: #fff;
  }
}
