/*
 * Blog Content List Fix
 * Fixes bullet point and ordered list alignment inside single blog post content.
 * Scoped to .entry-content and .blog-content to avoid affecting nav/sliders.
 * Added: 2026-07-16
 */

/* Unordered lists inside blog content */
article .entry-content ul,
article .blog-content ul,
.single-post article ul,
.post-content ul {
    list-style-type: disc;
    padding-left: 1.5rem;
    margin-bottom: 1.25rem;
    margin-inline-start: 0;
}

article .entry-content ul li,
article .blog-content ul li,
.single-post article ul li,
.post-content ul li {
    display: list-item;
    padding: 0.2rem 0;
    line-height: 1.6;
}

/* Nested unordered lists */
article .entry-content ul ul,
article .blog-content ul ul,
.single-post article ul ul,
.post-content ul ul {
    list-style-type: circle;
    padding-left: 1.5rem;
    margin-bottom: 0;
}

/* Ordered lists inside blog content */
article .entry-content ol,
article .blog-content ol,
.single-post article ol,
.post-content ol {
    list-style-type: decimal;
    padding-left: 1.5rem;
    margin-bottom: 1.25rem;
    margin-inline-start: 0;
}

article .entry-content ol li,
article .blog-content ol li,
.single-post article ol li,
.post-content ol li {
    display: list-item;
    padding: 0.2rem 0;
    line-height: 1.6;
}

/* Nested ordered lists */
article .entry-content ol ol,
article .blog-content ol ol,
.single-post article ol ol,
.post-content ol ol {
    list-style-type: lower-alpha;
    padding-left: 1.5rem;
    margin-bottom: 0;
}
