/* "How it works" step cards, shared by the home and about pages */
.steps {
  display: flex;
  gap: 24px;
  width: 100%;
}

.step {
  flex: 1;
  background: var(--color-surface);
  border-radius: var(--radius-xl);
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.step__number {
  width: 42px;
  height: 42px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-weight: 800;
}

.step__number--teal {
  background: var(--color-teal-tint);
  color: var(--color-teal);
}

.step__number--coral {
  background: var(--color-coral-tint);
  color: var(--color-coral);
}

.step__number--green {
  background: var(--color-green-tint);
  color: var(--color-green);
}

.step__title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 17px;
  color: var(--color-text);
}

.step__text {
  font-size: 14px;
  line-height: 1.6;
  color: var(--color-muted);
}

/* Home: steps sit on a sand band with a centred heading */
.how-it-works {
  width: 100%;
  box-sizing: border-box;
  padding: var(--gutter);
  background: var(--color-sand);
  display: flex;
  flex-direction: column;
  gap: 36px;
  align-items: center;
}

.how-it-works__head {
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: center;
  text-align: center;
}

.how-it-works__title {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 28px;
  color: var(--color-text);
}

.how-it-works__subtitle {
  font-size: 15px;
  color: var(--color-muted);
}
