@import url('https://fonts.googleapis.com/css2?family=Titillium+Web:wght@700&display=swap');

body {
    background-color: #f3f6fd;
    font-size: 13px;
    font-weight: bold;
    color: rgb(189, 196, 203);
}

/* UI lists ONLY (no bullets). Add .list-unstyled to any list you want unstyled. */
.list-unstyled,
.nav ul,
.navbar ul,
.menu ul,
.dropdown-menu ul,
.sidebar ul,
.footer ul,
.social ul {
    list-style: none;
    margin: 0;
    padding-left: 0;
}

/* --- CONTENT (CMS) LIST DEFAULTS --- */
.ck-content ul {
    list-style: disc;
    margin: 1em 0;
    padding-left: 1.5rem;
    list-style-position: outside;
}
.ck-content ol {
    list-style: decimal;
    margin: 1em 0;
    padding-left: 1.5rem;
    list-style-position: outside;
}
.ck-content li {
    display: list-item;
}
.ck-content li::marker {
    content: initial;
}

/* Your existing list item styling (kept as-is) */
ul > li {
    padding: 4px;
    color: black;
}

ul > li:hover {
    color: #957bda;
    cursor: pointer;
}

hr {
    border-width: 3px;
}

.card {
    padding: 2% 7%;
}

.social > i {
    padding: 1%;
    font-size: 15px;
}

.social > i:hover {
    color: #957bda;
    cursor: pointer;
}

.policy > div {
    padding: 4px;
}

.heading {
    font-family: 'Titillium Web', sans-serif;
    color: black;
}

.divider {
    border-top: 2px solid;
}

.article-image {
    height: 150px;
    width: 150px;
}

.mobile {
    display: none;
}

.product-image-container {
    /*height: 300px;*/
    object-fit: cover;
}

/* Target the rendered content, not the editor UI */
.ck-content ul,
.ck-content ul li {
    list-style-type: inherit;
}

.ck-content ul {
    /* Default user agent stylesheet, you can change it to your needs. */
    padding-left: 40px;
}


/* === Frontend content defaults (CKEditor output) === */
.ck-content ul,
.ck-content ol {
    list-style-position: outside;
    margin: 1em 0;
    padding-left: 1.5rem;
}



.ck-content ul { list-style: disc; }
.ck-content ol { list-style: decimal; }

/* Ensure list items behave even if utilities changed them */
.ck-content li { display: list-item; }
.ck-content li::marker { content: initial; }

/* If a framework class removes bullets, re-enable inside content */
.ck-content ul.list-unstyled,
.ck-content ol.list-unstyled,
.ck-content ul.fa-ul,
.ck-content ol.fa-ul {
    list-style: disc;
    padding-left: 1.5rem;
}

/* Optional: if markers ever get clipped by tight containers, flip to inside by adding class="force-inside" on that UL/OL */
.ck-content .force-inside { list-style-position: inside; }


