.tutorial-hero {
  padding-bottom: 24px;
}

.tutorial-hero .mark {
  text-decoration: none;
}

.eyebrow {
  color: var(--accent);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  margin: 0 0 10px;
  text-transform: uppercase;
}

.tutorial {
  display: grid;
  gap: 24px;
}

.callout,
.steps,
.recipe,
.prompt-card,
.checklist {
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 24px;
}

.callout {
  align-items: center;
  display: flex;
  gap: 20px;
  justify-content: space-between;
}

.callout h2,
.steps h2,
.recipe h2,
.prompt-card h2,
.checklist h2 {
  margin: 0 0 10px;
}

.callout p,
.section-heading p,
.prompt-card p {
  color: var(--muted);
  line-height: 1.55;
  margin: 0;
}

.button {
  background: var(--accent);
  border-radius: 999px;
  color: var(--accent-ink);
  display: inline-flex;
  flex: 0 0 auto;
  font-weight: 750;
  padding: 10px 16px;
}

.button:hover {
  text-decoration: none;
}

.steps {
  display: grid;
  gap: 16px;
}

.steps article {
  border-top: 1px solid var(--border);
  display: grid;
  gap: 14px;
  grid-template-columns: auto 1fr;
  padding-top: 16px;
}

.steps article:first-of-type {
  border-top: 0;
  padding-top: 0;
}

.step-number {
  align-items: center;
  background: color-mix(in srgb, var(--accent) 16%, transparent);
  border: 1px solid color-mix(in srgb, var(--accent) 42%, var(--border));
  border-radius: 999px;
  color: var(--accent);
  display: inline-flex;
  font-weight: 800;
  height: 34px;
  justify-content: center;
  width: 34px;
}

.steps h3 {
  margin: 0 0 5px;
}

.steps p,
.checklist li {
  color: var(--muted);
  line-height: 1.55;
  margin: 0;
}

.section-heading {
  margin-bottom: 16px;
}

pre {
  background: var(--code-bg);
  border: 1px solid var(--border);
  border-radius: 12px;
  color: var(--ink);
  margin: 0;
  overflow-x: auto;
  padding: 18px;
}

code {
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", monospace;
}

blockquote {
  border-left: 4px solid var(--accent);
  color: var(--ink);
  line-height: 1.6;
  margin: 14px 0 0;
  padding: 4px 0 4px 18px;
}

.checklist ul {
  display: grid;
  gap: 10px;
  margin: 0;
  padding-left: 20px;
}

@media (max-width: 700px) {
  .callout {
    align-items: flex-start;
    flex-direction: column;
  }
}
