.step {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    row-gap: var(--spacing-small);
}

.step__ball {
    display: flex;
    align-items: center;
    justify-content: center;
    width: calc(4rem + 1vw);
    height: calc(4rem + 1vw);
    border-radius: 50%;
    background: var(--color-1);
    color: var(--white);
    font-size: 3rem;
    font-weight: var(--font-weight-bold);
    font-family: var(--font-family-heading);
}

.step__text {
    max-width: 27ch;
    font-size: var(--font-size-small);
}