
/* List styles */
article ul {
    list-style-type: disc !important;
    padding-left: 20px !important;
}

article ol {
    list-style-type: decimal !important;
    padding-left: 20px !important;
}

article ul li {
    list-style-type: disc !important;
}

article ol li {
    list-style-type: decimal !important;
}

/* Paragraph styles */
article p {
    margin-bottom: 1em !important;
}

/* Remove margin-bottom from p followed by ul */
article p:has(+ ul) {
    margin-bottom: 0 !important;
}
article h1 {
    margin-bottom: 8px !important;
}

article h2:has(+ p) {
    margin-bottom: 8px !important;
}