/* ===============================
   CMS CONTENT BASE
================================ */
.cms-content {
    line-height: 1.6;
}

/* ===============================
   UNORDERED LISTS
================================ */
.cms-content ul {
    list-style-type: disc;
    margin: 12px 0;
    padding-left: 22px;
}

.cms-content ul ul {
    list-style-type: circle;
}

.cms-content ul ul ul {
    list-style-type: square;
}

/* ===============================
   ORDERED LISTS
================================ */
.cms-content ol {
    list-style-type: decimal;
    margin: 12px 0;
    padding-left: 22px;
}

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

.cms-content ol ol ol {
    list-style-type: lower-roman;
}

/* ===============================
   LIST ITEMS
================================ */
.cms-content ul li {
    margin-bottom: 6px;list-style: circle;list-style-type: disc;
}
.cms-content ol li {
    margin-bottom: 6px;list-style: auto;
}
.cms-content ul ul,
.cms-content ol ol {
    list-style-type: circle;
}

.cms-content ul ul ul,
.cms-content ol ol ol {
    list-style-type: square;
}

/* ❌ REMOVE THEME BULLETS / ICONS */
.cms-content li::before {
    content: none !important;
}

/* ===============================
   TABLES
================================ */
.cms-content table {
    width: 100%;
    border-collapse: collapse;
    margin: 15px 0;
}

.cms-content th,
.cms-content td {
    border: 1px solid #ddd;
    padding: 8px 10px;
    text-align: left;
}

/* ===============================
   TEXT ELEMENTS
================================ */
.cms-content p {
    margin-bottom: 12px;
}

.cms-content h1,
.cms-content h2,
.cms-content h3,
.cms-content h4,
.cms-content h5,
.cms-content h6 {
    margin: 15px 0 10px;
    font-weight: 600;
}

.cms-content a {
    color: #007bff;
    text-decoration: underline;
}
