html {
	--global-color-accent: #b5111a;

	--buttonRadius: 5px;

	/*
	#c8c8c8
	*/
}




/*
Theme overrides
*/
#main {
	padding-top: 0 !important;
}

.page-title {
	display: none;
}




/*
Standard buttons
*/
a.btn {
	
	display: inline-block;
	
	background-color: #f1f1f1;

	color: #000;
	font-size: 28px;
	text-decoration: none;

	padding: 20px 100px;

	transition: all .3s ease-out;
}
a.btn:hover {
	background-color: var(--global-color-accent);
	color: #fff;
}






/*
Match main column width
*/
.contentCol {
	width: 1350px;
	max-width: 100%;
	margin: 0 auto;
	padding: 0 30px 0 25px;
	box-sizing: border-box;
}









/*
Page headline
*/
h1.pageheader,
h2.pageheader {
	display: flex;
	justify-content: center;

	margin-bottom: 80px;

	font: var(--the7-h2-font);
	font-size: 42px;
	text-align: center;
}
h2.pageheader {
	font-size: 36px;
}
h1.pageheader span,
h2.pageheader span {
	border-bottom: 3px solid var(--global-color-accent);
	padding: 0 60px 10px 60px;
}









/*
Featured Image
*/
.featured_img {
	padding-top: 100%;
	margin-bottom: 30px;

	position: relative;
	top: 0;
	left: 0;
}
.featured_img img {
	position: absolute;
	top: 0;
	left: 0;

	width: 100%;
	height: 100%;

	object-fit: cover;

	display: inline-block;
}









.excerpt {

	--lineNum: 5;

	overflow: hidden;
	text-overflow: ellipsis;
	display: -webkit-box;
	-webkit-line-clamp: var(--lineNum);
	line-clamp: var(--lineNum);
	-webkit-box-orient: vertical;
}









/*
Tablet styles
*/
@media(max-width: 1024px) {
	
}









/*
Mobile styles
*/
@media(max-width: 767px) {
	#footer .wf-container {
		grid-template-columns: minmax(0, 1fr);
	}
	.footer .widget {
		grid-row-start: auto;
	}
}