/**
 * Fix List Bullets - Remove unwanted bullets
 * 
 * @package Blog Content
 */

/* ========================================
   Remove all default list bullets
   ======================================== */

/* Navigation menus - no bullets */
.main-navigation ul,
.main-navigation li,
.topbar-menu ul,
.topbar-menu li,
.social-navigation ul,
.social-navigation li,
nav ul,
nav li,
.menu ul,
.menu li {
	list-style: none !important;
	list-style-type: none !important;
}

.main-navigation li::before,
.main-navigation li::marker,
.topbar-menu li::before,
.topbar-menu li::marker,
.social-navigation li::before,
.social-navigation li::marker,
nav li::before,
nav li::marker,
.menu li::before,
.menu li::marker {
	display: none !important;
	content: none !important;
}

/* Widget lists - no default bullets */
.widget ul,
.widget li {
	list-style: none !important;
}

.widget li::marker {
	display: none !important;
}

/* Only content lists should have custom bullets */
.entry-content ul li::before,
.author-page-content ul li::before {
	/* Keep custom blue bullets */
}

/* Remove default bullets everywhere except entry-content */
ul:not(.entry-content ul):not(.author-page-content ul) {
	list-style-type: none !important;
}

/* Specifically hide default markers */
li::marker {
	color: transparent !important;
	font-size: 0 !important;
}

/* Content areas keep custom bullets */
.entry-content ul li::marker,
.author-page-content ul li::marker {
	display: none !important;
}



