/* ГЛАВНОЕ ИСПРАВЛЕНИЕ: Принудительное выравнивание по левому краю */
.ck-content {
    text-align: left !important;
    width: 100%;
    display: block;
    color: #000000;
}

/* Картинки адаптивные */
.ck-content img {
    max-width: 100%;
    height: auto;
    margin: 10px 0;
}

/* === ИСПРАВЛЕНИЕ СПИСКОВ === */

/* 1. Ненумерованный список (точки) */
.ck-content ul {
    list-style-type: disc !important;
    /* Принудительно точки */
    padding-left: 20px !important;
    margin-bottom: 10px;
    margin-top: 5px;
    text-align: left !important;
}

/* 2. Нумерованный список (цифры) */
.ck-content ol {
    list-style-type: decimal !important;
    /* Принудительно цифры */
    padding-left: 20px !important;
    margin-bottom: 10px;
    margin-top: 5px;
    text-align: left !important;
}

/* 3. Элементы списка */
.ck-content li {
    margin-bottom: 5px;
    /* УБРАЛИ list-style: disc отсюда, теперь li слушает родителя (ul или ol) */
    /* Добавляем позиционирование, чтобы маркеры не "съедались" */
    list-style-position: outside;
}

/* === ОСТАЛЬНЫЕ СТИЛИ === */

/* Параграфы */
.ck-content p {
    margin-bottom: 10px;
    line-height: 1.6;
}

/* Жирный и курсив */
.ck-content strong,
.ck-content b {
    font-weight: 700 !important;
}

.ck-content em,
.ck-content i {
    font-style: italic !important;
}

/* Таблицы */
.ck-content table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 1em;
}

.ck-content td,
.ck-content th {
    border: 1px solid #ddd;
    padding: 8px;
    text-align: left;
}

.ck-content h2 {
    color: #000000;
    margin: 0 0 14px 0;
}

.ck-content strong {
    color: #000000;
}