/* Self-hosted workflow steps for migrated DevOpser docs (replaces Scribe embeds).
   Shared by every /docs page that was a step-by-step Scribe guide. */

.wf-intro {
  color: #aab2c7;
  font-size: 1.02rem;
  line-height: 1.6;
  margin: 0 0 2rem;
}

.wf-steps {
  list-style: none;
  margin: 0;
  padding: 0;
  counter-reset: wf;
}

.wf-step {
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1rem 1.1rem;
  padding: 1.4rem 0 1.6rem;
  border-bottom: 1px solid #2d3858;
}
.wf-step:last-child { border-bottom: none; }

.wf-num {
  grid-row: 1 / span 2;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(237, 22, 108, 0.14);
  border: 1px solid rgba(237, 22, 108, 0.5);
  color: #ff3d8b;
  font-family: 'JetBrains Mono', ui-monospace, monospace;
  font-size: 0.92rem;
  font-weight: 700;
}

.wf-text {
  align-self: center;
  color: #e7ebf4;
  font-size: 1.04rem;
  line-height: 1.55;
  margin: 0;
}
.wf-text a { color: #ff3d8b; text-decoration: none; }
.wf-text a:hover { text-decoration: underline; }
.wf-text code {
  background: #0a0e1a;
  border: 1px solid #2d3858;
  border-radius: 3px;
  padding: 0.1em 0.4em;
  font-family: 'JetBrains Mono', ui-monospace, monospace;
  font-size: 0.88em;
  color: #fde047;
}

.wf-shot {
  grid-column: 2;
  margin: 0.2rem 0 0;
  border: 1px solid #2d3858;
  border-radius: 8px;
  overflow: hidden;
  background: #0a0e1a;
  max-width: 640px;
}
.wf-shot img {
  display: block;
  width: 100%;
  height: auto;
}

/* callout for tips/notes lifted out of a step */
.wf-note {
  grid-column: 2;
  margin: 0.2rem 0 0;
  padding: 0.85rem 1rem;
  border-left: 3px solid #fde047;
  background: rgba(253, 224, 71, 0.06);
  border-radius: 0 6px 6px 0;
  color: #d7dcea;
  font-size: 0.95rem;
  line-height: 1.5;
}

@media (max-width: 600px) {
  .wf-step { grid-template-columns: auto 1fr; gap: 0.7rem 0.8rem; }
  .wf-num { width: 28px; height: 28px; font-size: 0.8rem; }
  .wf-text { font-size: 0.98rem; }
}
