/* Extends options.css (already linked) with help-page-specific layout. */

.steps {
  list-style: none;
  counter-reset: step;
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 4px;
}

.steps li {
  counter-increment: step;
  display: grid;
  grid-template-columns: 30px minmax(0, 1fr);
  gap: 12px;
}

.steps li::before {
  content: counter(step);
  grid-column: 1;
  grid-row: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: rgba(102, 192, 244, 0.12);
  border: 1px solid var(--border-strong);
  color: var(--blue);
  font-family: var(--font-brand);
  font-weight: 700;
  font-size: 13px;
}

/* Both explicitly placed in column 2 — three grid items (::before, title,
   body) into a two-column track otherwise leaves auto-placement to wrap the
   third item onto column 1 of the next row instead of staying in column 2,
   collapsing .step-body to a ~30px-wide column and wrapping its text one
   word per line. */
.step-title {
  grid-column: 2;
  grid-row: 1;
  font-weight: 600;
  color: var(--text);
  font-size: 13.5px;
  margin-bottom: 2px;
}

.step-body {
  grid-column: 2;
  grid-row: 2;
  color: var(--text-dim);
  font-size: 12.5px;
  line-height: 1.6;
}

.video-embed {
  border: 1px dashed var(--border-strong);
  border-radius: var(--r-md);
  background: var(--bg-2);
  aspect-ratio: 16 / 9;
  display: flex;
  align-items: center;
  justify-content: center;
}

.video-embed-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--text-faint);
  font-size: 12.5px;
  text-align: center;
  padding: 20px;
}

.video-embed-icon {
  font-size: 28px;
  color: var(--border-strong);
}

.faq { display: flex; flex-direction: column; gap: 14px; }
.faq-q { font-weight: 600; color: var(--text); font-size: 13px; margin-bottom: 3px; }
.faq-a { color: var(--text-dim); font-size: 12.5px; line-height: 1.6; }
