#featured_image {
	width: 100%;
	height: 350px;
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center center;
	background-color: transparent;
}
._page_header {
	border-bottom: 1px solid #f1f1f1;
	padding-bottom: 50px;
	margin-bottom: 60px;
}
._page_header ._title {
	display: flex;
	align-content: center;
	align-items: center;
	justify-content: center;
	text-align: center;
	min-height: 150px;
	font-size: 3rem;
	font-family: var(--playfair);
	color: var(--accent2);
	margin-bottom: 0;
}
p:empty {
	display: none;
}
._page_header ._blurb {
	width: 800px;
	line-height: 1.5;
	text-align: center;
	font-size: 1.3rem;
	color: #898989;
	margin: 0 auto;
}
._section_1,
._section_3 {
	width: 800px;
	margin: 0 auto 50px;
	display: grid;
	grid-template-columns: repeat(3,1fr);
	gap: 10px;
}
._section_1._2_col,
._section_3._2_col {
	grid-template-columns: repeat(2,1fr);
}
._section_1._1_col,
._section_3._1_col {
	grid-template-columns: repeat(1,1fr);
}
._section_1 > div,
._section_3 > div {
	display: flex;
	flex-flow: column;
	align-items: center;
	justify-content: start;
	text-align: center;
	gap: 10px;
	width: 100%;
}
._section_1 img,
._section_3 img {
	max-width: 100%;
	max-height: 300px;
	width: auto;
	height: auto;
	object-fit: contain;
	margin: 0 auto;
}
._section_1 ._text,
._section_3 ._text {
	text-align: center;
	width: 100%;
	padding-top: 10px;
}
._quill_text {
	text-align: center;
	margin-bottom: 50px;
}
._quill_text h1,
._quill_text h2 {
	margin-bottom: .5em;
	color: var(--accent2);
	font-weight: bold;
}




@media (max-width: 679px) {
	/* START PHONE */
	
	#featured_image {
		height: 250px;
	}
	._page_header ._title {
		display: block;
		padding: 30px 30px 20px;
		font-size: 2rem;
		min-height: 0;
	}
	._page_header ._blurb {
		width: 100%;
		padding: 0 50px;
		font-size: 1rem;
		margin: 0 auto;
	}
	._section_1, 
	._section_3 {
		grid-template-columns: repeat(1,1fr) !important;
		width: 100%;
		gap: 30px;
	}
	
	/* END PHONE */
}