﻿.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.step {
  border: 1px solid var(--line);
  background: #fff;
  border-radius: var(--r);
  padding: 18px;
  box-shadow: var(--shadow);
}

.stepTop {
  display: flex;
  align-items: center;
  gap: 12px;
}

.stepNum {
  width: 44px;
  height: 44px;
  border-radius: 16px;
  background: var(--accent);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  font-size: 16px;
}

.step h3 {
  margin: 14px 0 8px;
  font-size: 18px;
}

.step p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
}
