.text-block {
    font-size: 14pt;
    line-height: 1.5;
}

/* Картинки слева на десктопе */
.image-wrap {
    float: left;
    margin: 15px;
}

.image-wrap img {
    display: block;
    max-width: 100%;
    height: auto;
}

/* Маркеры — строчные элементы, чтобы обтекали float */
.marker-item {
    display: inline;
}

.marker-item::before {
    content: "• ";
    color: #e67e23;
    font-size: 18px;
}

.marker-item::after {
    content: "\A";
    white-space: pre;
}

/* 📱 Мобильная версия */
@media (max-width: 768px) {

    /* Делаем flex-контейнер ТОЛЬКО на мобильном */
    .text-block {
        display: flex;
        flex-direction: column;
    }

    /* Отключаем float */
    .image-wrap {
        float: none;
        margin: 0 0 20px 0;
        text-align: center;
    }

    /* Верхняя картинка — вверху */
    .top-image {
        order: -1;
    }

    /* Нижняя картинка — в самом низу */
    .bottom-image {
        order: 999;
    }

    /* Маркеры снова блочные */
    .marker-item {
        display: block;
    }
}
