.wizard-step:not(:first-of-type) {
    margin-top: 14px;
}

.wizard-step.completed {
    border-color: #dfe2ea;
    box-shadow: none;
}

.wizard-step-summary {
    width: 100%;
    min-height: 76px;
    border: 0;
    background: #fff;
    padding: 15px 20px;
    display: grid;
    grid-template-columns: minmax(110px, .45fr) 1fr 34px;
    align-items: center;
    gap: 14px;
    text-align: left;
    color: var(--ink);
}

.wizard-step-summary:hover {
    background: #fafaff;
}

.wizard-step-summary > span {
    color: var(--muted);
    font-size: .72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .05em;
}

.wizard-step-summary > strong {
    font-size: .95rem;
}

.wizard-step-summary > i {
    width: 34px;
    height: 34px;
    border-radius: 9px;
    display: grid;
    place-items: center;
    color: var(--brand);
    background: #efefff;
}

@media (max-width: 575.98px) {
    .wizard-step-summary {
        grid-template-columns: 1fr 34px;
        gap: 4px 10px;
        padding: 13px 15px;
    }

    .wizard-step-summary > span,
    .wizard-step-summary > strong {
        grid-column: 1;
    }

    .wizard-step-summary > i {
        grid-column: 2;
        grid-row: 1 / 3;
    }
}
