/* Numbered process cards. */

/* Process steps */
#process .grid-step {
    counter-reset: step;
}

.step-card {
    overflow: hidden;
    padding: var(--space-l);
    counter-increment: step;
}

.step-card h4 {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    gap: var(--space-l);
}

.step-card h4::after {
    content: counter(step, decimal-leading-zero);
    display: inline-grid;
    place-items: center;
    width: 3rem;
    height: 2.4rem;
    border: 1px solid var(--purple-border);
    border-radius: var(--radius-s);
    font-size: 1.7rem;
    font-weight: 900;
    font-variant-numeric: tabular-nums;
    line-height: 1;
    color: var(--purple-dark);
    background: var(--purple-light);
    pointer-events: none;
}
