.mp-howto__steps {
    display: flex;
    flex-direction: column;
}

.mp-howto-step {
    display: grid;
    grid-template-columns: 56px minmax(0, 1fr);
    gap: 24px;
    align-items: start;

    padding: 32px 0;
    border-top: 1px solid #e5e5e5;
}

.mp-howto-step:last-child {
    border-bottom: 1px solid #e5e5e5;
}

.mp-howto-step__number {
    display: flex;
    align-items: center;
    justify-content: center;

    width: 56px;
    height: 56px;
    margin: 0;

    border-radius: 50%;
    background: #111;
    color: #fff;

    font-size: 20px;
    line-height: 1;
    font-weight: 700;
}

.mp-howto-step__content {
    min-width: 0;
}

.mp-howto-step__title {
    margin: 0 0 20px;
    font-size: 28px;
    line-height: 1.2;
    font-weight: 700;
    color: #111;
}

.mp-howto-step p {
    margin: 0 0 16px;
    font-size: 17px;
    line-height: 1.65;
    color: #444;
}

.mp-howto-step p:last-child {
    margin-bottom: 0;
}
@media (max-width: 520px) {
    .mp-howto-step {
        grid-template-columns: 42px minmax(0, 1fr);
        gap: 16px;
        padding: 24px 0;
    }

    .mp-howto-step__number {
        width: 42px;
        height: 42px;
        font-size: 16px;
    }

    .mp-howto-step__title {
        margin: 0 0 14px;
        font-size: 22px;
    }
}