.checklist {
  list-style: none;
  padding: 0;
  margin: 0 0 26px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.checklist li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 12px 16px;
  line-height: 1.5;
}
.checklist .check-icon { flex-shrink: 0; }

.step-card {
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 20px 22px;
  margin-bottom: 16px;
}
.step-card-head {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}
.step-num {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--accent);
  color: var(--accent-contrast);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  flex-shrink: 0;
  font-size: 0.92rem;
}
.step-card h3 { margin: 0; font-size: 1.08rem; }
.step-card ol {
  margin: 0;
  padding-left: 22px;
}
.step-card li { margin-bottom: 10px; line-height: 1.55; }
.step-card li:last-child { margin-bottom: 0; }
.step-card code {
  background: var(--chip-bg);
  padding: 2px 7px;
  border-radius: 6px;
  font-size: 0.9em;
}

.step-note {
  margin: 12px 0 0;
  padding: 10px 13px;
  background: var(--chip-bg);
  border-radius: 10px;
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* Dashed box for things the admin still needs to fill in — deliberately
   looks unfinished so it's obvious this isn't a mistake, it's a to-do. */
.todo-box {
  border: 2px dashed var(--key-adv-border);
  background: var(--key-adv-bg);
  border-radius: 12px;
  padding: 14px 16px;
  margin: 12px 0 0;
  display: flex;
  gap: 12px;
  align-items: flex-start;
}
.todo-box .todo-icon { font-size: 1.3rem; flex-shrink: 0; line-height: 1.3; }
.todo-box strong { display: block; margin-bottom: 3px; }
.todo-box p { margin: 0; color: var(--text-muted); font-size: 0.88rem; line-height: 1.5; }

.btn-primary-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--accent);
  color: var(--accent-contrast);
  padding: 11px 20px;
  border-radius: 10px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.92rem;
  margin-top: 4px;
}
.btn-primary-link:hover { opacity: 0.92; }

.tips-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.tip-item {
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 14px 16px;
  display: flex;
  gap: 12px;
  align-items: flex-start;
  line-height: 1.55;
}
.tip-item .tip-icon { font-size: 1.25rem; flex-shrink: 0; }
.tip-item strong { display: block; margin-bottom: 2px; }

@media (max-width: 600px) {
  .step-card { padding: 16px 18px; }
}
