/* How to unlock content — article layout */

.article-page {
  flex: 1;
  width: 100%;
  padding-bottom: 3rem;
}

.article-hero {
  padding: 2rem 0 1.5rem;
  border-bottom: 1px solid var(--border-subtle);
}

.article-hero h1 {
  margin: 0 0 0.75rem;
  font-size: clamp(1.6rem, 4vw, 2.25rem);
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.article-hero .lede {
  margin: 0;
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 60ch;
}

.article-body {
  padding-top: 2rem;
}

.steps {
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: step;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.steps li {
  counter-increment: step;
  position: relative;
  padding: 1.15rem 1.15rem 1.15rem 3.25rem;
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius);
}

.steps li::before {
  content: counter(step);
  position: absolute;
  left: 1rem;
  top: 50%;
  transform: translateY(-50%);
  width: 1.75rem;
  height: 1.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  font-weight: 800;
  color: var(--bg-deep);
  background: var(--accent-tg);
  border-radius: 50%;
}

.steps h2 {
  margin: 0 0 0.35rem;
  font-size: 1.05rem;
  font-weight: 700;
}

.steps p {
  margin: 0;
  font-size: 0.95rem;
  color: var(--text-muted);
}

.callout {
  margin-top: 2rem;
  padding: 1.15rem 1.25rem;
  border-radius: var(--radius);
  background: rgba(42, 171, 238, 0.1);
  border: 1px solid rgba(42, 171, 238, 0.25);
}

.callout h3 {
  margin: 0 0 0.5rem;
  font-size: 1rem;
}

.callout p {
  margin: 0;
  font-size: 0.95rem;
  color: var(--text-muted);
}

.actions-row {
  margin-top: 2rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}
