/* Step Info Widget */
.mn-step-info {
    --mn-si-cols: 4;
    --mn-si-gap-x: 40px;
    --mn-si-gap-y: 40px;

    display: grid;
    grid-template-columns: repeat(var(--mn-si-cols), minmax(0, 1fr));
    column-gap: var(--mn-si-gap-x);
    row-gap: var(--mn-si-gap-y);
    width: 100%;
}

.mn-step-info__item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    min-width: 0;
}

.mn-si-align-left .mn-step-info__item {
    align-items: flex-start;
    text-align: left;
}

.mn-si-align-center .mn-step-info__item {
    align-items: center;
    text-align: center;
}

.mn-si-align-right .mn-step-info__item {
    align-items: flex-end;
    text-align: right;
}

.mn-step-info__number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    width: 56px;
    height: 56px;
    margin: 0 0 20px;
    border: 1.5px solid #8c6b6b;
    border-radius: 50%;
    background-color: transparent;
    color: #8c6b6b;
    font-size: 18px;
    font-weight: 500;
    line-height: 1;
    box-sizing: border-box;
}

.mn-step-info__title {
    margin: 0 0 12px;
    color: #4a3f3f;
    font-size: 18px;
    font-weight: 700;
    line-height: 1.35;
}

.mn-step-info__desc {
    margin: 0;
    color: #5a5050;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.65;
}

@media (max-width: 767px) {
    .mn-step-info__number {
        width: 48px;
        height: 48px;
        font-size: 16px;
        margin-bottom: 16px;
    }

    .mn-step-info__title {
        font-size: 17px;
    }

    .mn-step-info__desc {
        font-size: 14px;
    }
}
