.step-check-card {
  display: grid;
  gap: 10px;
}

.step-check-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
}

.step-check-head strong {
  font-size: 0.95rem;
}

.step-check-count {
  flex: 0 0 auto;
  padding: 3px 8px;
  border: 1px solid currentColor;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 700;
  opacity: 0.72;
}

.step-check-copy {
  margin: 0;
  font-size: 0.82rem;
  line-height: 1.45;
  opacity: 0.78;
}

.step-check-list {
  display: grid;
  gap: 6px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.step-check-list li {
  display: grid;
  grid-template-columns: 18px minmax(0, 1fr);
  gap: 7px;
  align-items: start;
  font-size: 0.8rem;
  line-height: 1.35;
}

.step-check-list li::before {
  content: '•';
  display: grid;
  place-items: center;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: rgba(127, 127, 127, 0.12);
  font-weight: 800;
}

.step-check-card[data-state='ready'] .step-check-list li::before {
  content: '✓';
}

.step-check-note {
  margin: 0;
  font-size: 0.74rem;
  line-height: 1.4;
  opacity: 0.62;
}

@media (max-width: 760px) {
  .step-check-card {
    gap: 8px;
  }

  .step-check-list {
    grid-template-columns: 1fr;
  }
}
