/*====================================================
	TEMPLATE: ARTICLE
====================================================*/
:root {
	--font-secondary: 'Gemunu Libre', 'sans-serif';
	--primary-500: #564E43;
}

/* Content */
.block-main-article .wysiwyg-container {
	h2 {
		font-family: var(--font-secondary) !important;
		font-size: 2rem;
		font-weight: 800;
		line-height: 1;
		margin-bottom: 1rem;
	}
	h3 {
		font-family: var(--font-secondary) !important;
		font-size: 1.5rem;
		font-weight: 800;
		line-height: 1;
		margin-bottom: 0.75rem;
	}
	h4, h5, h6 {
		font-family: var(--font-secondary) !important;
		font-size: 1.2rem;
		font-weight: 800;
		line-height: 1;
		margin-bottom: 0.75rem;
	}

	p, div, li {
		font-size: 0.875rem;
		line-height: 1.25rem;
	}
	a {
		color: var(--primary-500);
		font-weight: 500;
		text-decoration: underline;
	}

	ul, ol {
		padding-left: 1.5rem;
		margin-bottom: 0.75rem;
		text-align: left !important;
	}
	ul li {
		list-style-type: disc;
	}
	ol li {
		list-style-type: decimal;
	}

	blockquote {
		font-style: italic;
	}

	img {
		margin: 0 auto !important;
	}
}

/* Media Queries */
@media screen and (max-width: 400px) {
	.block-main-article .wysiwyg-container h2 {
		font-size: 1.8rem;
	}
}