/* Add padding to the blog page so content doesn't touch the edge */
.blog-content-wrapper {
	padding: 32px 32px 48px 32px;
	max-width: 900px;
	margin: 0 auto;
	box-sizing: border-box;
}


/* Blog post header layout */

.blog-header {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 0;
	margin-bottom: 32px;
	padding: 0 32px;
	max-width: 900px;
	margin-left: auto;
	margin-right: auto;
	box-sizing: border-box;
}

.featured-image {
	max-width: 675px;
	min-width: 270px;
	width: 100%;
	height: auto;
	display: block;
	margin: 24px 0 0 0;
	border-radius: 8px;
	box-shadow: 0 4px 16px rgba(0,0,0,0.9);
}


.blog-title-line {
	display: flex;
	align-items: center;
	height: 100%;
	margin-bottom: 0;
}

.blog-title {
	font-weight: 700;
	margin: 32px 0 0 0;
	padding-left: 18px;
	color: #264822;
	line-height: 1.2;
}

.blog-title-line .orange-line {
	width: 6px;
	height: 48px;
	background: #ea5b24;
	border-radius: 3px;
	margin-right: 0;
	margin-top: 32px;
}
