/* Fix for bullet points in excerpt blurb section */

/* Fix for mobile order - ensure content appears in normal order (p before ul) */
@media (max-width: 767px) {
	.article-heading__excerpt {
		flex-direction: column !important;
	}
}

.article-heading__excerpt ul {
	list-style-type: disc !important;
	list-style-position: outside !important;
	margin-bottom: 1em !important;
	margin-top: 1em !important;
	padding-left: 20px !important;
}

.article-heading__excerpt ul li {
	margin-bottom: 0.5em !important;
	font-size: 2rem;
	line-height: 1.8;
	list-style: disc !important;
	padding-left: 0 !important;
}

/* Mobile-specific styles */
@media (max-width: 767px) {
	.article-heading__excerpt ul {
		list-style-type: disc !important;
		list-style-position: outside !important;
		margin-bottom: 1em !important;
		margin-top: 1em !important;
		padding-left: 20px !important;
	}
	
	.article-heading__excerpt ul li {
		margin-bottom: 0.5em !important;
		font-size: 2rem;
		line-height: 1.8;
		list-style: disc !important;
		padding-left: 0 !important;
	}
}

.article-heading__excerpt ol {
	list-style: decimal !important;
	margin-left: 25px !important;
	margin-bottom: 1em !important;
	padding-left: 0 !important;
}

.article-heading__excerpt ol li {
	margin-bottom: 0.5em !important;
	font-size: 2rem;
	line-height: 1.8;
	list-style: decimal !important;
}
