/* Fix ordered/unordered list marker alignment.
   The theme uses list-style-position: inside, which causes the list number
   to appear on its own line when Hugo wraps loose list items in <p> tags.
   Overriding to "outside" (browser default) fixes this. */
#single .page-content ol,
#single .page-content ul {
    list-style-position: outside !important;
}
