.help-page { padding-bottom: 3rem; }
.help-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.25rem;
  margin: 1.5rem 0 2rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--rtf-border, #e2ddd4);
}
.help-nav a { color: var(--rtf-copper, #b87333); font-weight: 600; text-decoration: none; }
.help-nav a.active { color: var(--rtf-ink, #1a1f2e); }
.help-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(14rem, 1fr));
  gap: 1rem;
  margin: 2rem 0;
}
.help-card {
  display: block;
  padding: 1.25rem;
  border: 1px solid var(--rtf-border, #e2ddd4);
  border-radius: 12px;
  text-decoration: none;
  color: inherit;
  transition: border-color 0.15s;
}
.help-card:hover { border-color: var(--rtf-copper, #b87333); }
.help-card h2 { margin: 0 0 0.5rem; font-size: 1.125rem; }
.help-card p { margin: 0; color: #5c6b82; font-size: 0.9375rem; }
.help-card-operator { border-style: dashed; }
.help-section { margin-top: 2.5rem; }
.help-section h2 { font-size: 1.25rem; }
.help-links { line-height: 1.8; }
.runbook-steps { counter-reset: step; list-style: none; padding: 0; }
.runbook-steps > li {
  counter-increment: step;
  margin-bottom: 1.5rem;
  padding-left: 2.5rem;
  position: relative;
}
.runbook-steps > li::before {
  content: counter(step);
  position: absolute;
  left: 0;
  width: 1.75rem;
  height: 1.75rem;
  border-radius: 50%;
  background: var(--rtf-copper, #b87333);
  color: #fff;
  font-size: 0.875rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}
.runbook-callout {
  background: #f5f0e8;
  border-left: 4px solid var(--rtf-copper, #b87333);
  padding: 1rem 1.25rem;
  margin: 1.5rem 0;
  border-radius: 0 8px 8px 0;
}
.runbook-callout.warn { border-left-color: #c45c3e; background: #fdf5f3; }
.runbook-table { width: 100%; border-collapse: collapse; font-size: 0.9375rem; margin: 1rem 0; }
.runbook-table th, .runbook-table td { border: 1px solid #e2ddd4; padding: 0.5rem 0.75rem; text-align: left; }
.runbook-table th { background: #f5f0e8; }
code { font-size: 0.875em; }
