/* kleo/pw-steps — the numbered launch flow. */

.pw-big-steps {
  display: flex;
  flex-direction: column;
  gap: 22px;
}
.pw-big-step {
  background: var(--pw-card);
  border: 3px solid var(--pw-line);
  border-radius: 24px;
  padding: 30px 32px;
  box-shadow: 0 8px 0 var(--pw-line);
}
.pw-big-step-head {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}
.pw-big-num {
  flex-shrink: 0;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--pw-accent);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Fredoka', sans-serif;
  font-weight: 700;
  font-size: var(--pw-font-size-medium);
}
.pw-big-step-head h3 {
  font-size: var(--pw-font-size-medium);
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}
.pw-big-step-head p {
  color: var(--pw-ink-soft);
  font-size: var(--pw-font-size-small);
  margin-top: 8px;
}
.pw-admin-badge {
  font-size: var(--pw-font-size-xsmall);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  background: var(--pw-gold);
  color: #fff;
  padding: 4px 11px;
  border-radius: 100px;
}
.pw-callout-note {
  margin-top: 10px;
  font-weight: 700;
  color: var(--pw-accent-deep);
  background: var(--pw-accent-soft);
  display: inline-block;
  padding: 9px 15px;
  border-radius: 10px;
  font-size: var(--pw-font-size-small);
}
.pw-sub-actions {
  list-style: none;
  margin: 18px 0 0 72px;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 11px;
}
.pw-sub-actions li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: var(--pw-font-size-small);
  color: var(--pw-ink);
}
.pw-sub-actions li::before {
  content: "\2022";
  color: var(--pw-accent);
  font-weight: 800;
}
.pw-sub-actions a,
.pw-big-step-cta {
  font-weight: 800;
  text-decoration: none;
}
.pw-sub-actions a:hover,
.pw-big-step-cta:hover {
  text-decoration: underline;
}
.pw-big-step-cta {
  display: inline-flex;
  margin-top: 16px;
  margin-left: 72px;
  font-size: var(--pw-font-size-small);
}
@media (max-width: 640px) {
  .pw-sub-actions {
    margin-left: 0;
  }
  .pw-big-step-cta {
    margin-left: 0;
  }
}

/* Kleo's paragraph colours load after block styles. */
.pw-block--steps .pw-callout-note {
  color: var(--pw-accent-deep);
}
.pw-block--steps .pw-admin-badge {
  color: #fff;
}
.pw-block--steps .pw-big-num {
  color: #fff;
}
.pw-block--steps .pw-big-step-head p:not(.pw-callout-note) {
  color: var(--pw-ink-soft);
}
