.how__grid {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}

.how__step {
  position: relative;
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 24px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.052), rgba(255, 255, 255, 0.014)),
    var(--surface);
}

.how__number {
  display: inline-flex;
  margin-bottom: 18px;
  color: var(--accent-strong);
  font-size: 13px;
  font-weight: 900;
  line-height: 1;
  letter-spacing: 0;
}

.how__icon {
  display: grid;
  width: 52px;
  height: 52px;
  place-items: center;
  border: 1px solid var(--accent-border);
  border-radius: 8px;
  background: var(--accent-soft);
  color: var(--accent-strong);
}

.how__step h3 {
  margin-top: 20px;
  color: var(--text);
  font-size: 20px;
  font-weight: 850;
  line-height: 1.15;
  letter-spacing: 0;
}

.how__step p {
  margin-top: 10px;
  color: var(--text-muted);
  font-size: 15px;
  line-height: 1.55;
}
