/* ck-fix.css */

/* 1. RESTORE LISTS (Fixes your missing numbers) */
.ck-content ol {
    list-style-type: decimal;
    padding-left: 40px;
    margin-bottom: 1em;
}

.ck-content ol ol {
    list-style-type: lower-alpha;
}

.ck-content ul {
    list-style-type: disc;
    padding-left: 40px;
    margin-bottom: 1em;
}

/* 2. RESTORE HEADINGS (Ensures sizes match) */
.ck-content h1 { font-size: 2em; font-weight: bold; margin-bottom: 0.6em; }
.ck-content h2 { font-size: 1.5em; font-weight: bold; margin-bottom: 0.5em; }
.ck-content h3 { font-size: 1.17em; font-weight: bold; margin-bottom: 0.4em; }

/* 3. RESTORE PARAGRAPHS */
.ck-content p {
    display: block;
    margin-bottom: 1em;
    line-height: 1.6;
}

/* 4. FIX IMAGES */
.ck-content .image {
    display: table;
    clear: both;
    text-align: center;
    margin: 1em auto;
}
.ck-content .image img {
    display: block;
    margin: 0 auto;
    max-width: 100%;
    min-width: 50px;
}