/* BEGIN ITEM-LISTING CSS ---------------------------------------> */


#blogSearch
{
	margin-bottom: 50px;
}


.blogList ul.results_list,
.blogList li 
{
	margin: 0;
	list-style: none;
}

.blogList ul.results_list
{
	display: grid;
	grid-gap: 37px;
}


.blogList .titleimage 
{
	position: relative;
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
	aspect-ratio: 546 / 337;
	padding: 20px;
	box-sizing: border-box;
	overflow: hidden;
}

.blogList .image
{
	position: absolute;
	left: 0;
	top: 0;
	z-index: -1;
	width: 100%;
	height: 100%;
	background: #25435A;
}

.blogList .image img 
{
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	opacity: .5;
}

.blogList .title 
{
	color: #ffffff;
	font-weight: 500;
	line-height: 1.35;
	--max-font-size: 36;
}

.blogList .title a 
{
	color: inherit;
}

.blogList .content 
{
	padding: 20px;
}

.blogList .abstract
{
	line-height: 1.46;
}

.blogList .abstract p 
{
	--max-font-size: 26;
}

.blogList .linktext::before 
{
	content: '';
	display: block;
	width: 56px;
	height: 1px;
	margin-bottom: 25px;
	background: var(--orange);
}


.blogList div.buttonLink
{
	margin-top: 8px;
}

.blogList div.buttonLink a
{
	min-width: unset;
	padding: 2px 8px;
}

#recentBlogPosts ul,
#recentBlogPosts li 
{
	position: relative;
	margin: 0;
	list-style: none;
}

#recentBlogPosts li
{
	padding-top: 18px;
	padding-bottom: 45px;
	border-top: 1px solid #D2D2D2;
}

#recentBlogPosts h2
{
	text-align: center;
	--max-font-size: 52;
	color: #25435A;
	border: none;
}

#recentBlogPosts .topicdate
{
	display: flex;
	text-transform: uppercase;
	letter-spacing: 1px;
	line-height: 1;
}

#recentBlogPosts .topic 
{
	font-size: 18px;
}

#recentBlogPosts .topicdate > div + div::before 
{
	position: relative;
	top: 1px;
	content: '|';
	margin: 0 6px;
}

#recentBlogPosts .itemdate 
{
	margin-top: 0;
	--min-font-size: 18;
	--max-font-size: 18;
}

#recentBlogPosts
{
	max-width: 1088px;
	margin: 40px auto 0;
}

#recentBlogPosts .readtime 
{
	position: absolute;
	right: 0;
	top: 18px;
	line-height: 1;
	color: #8D8D8D;
	font-size: 18px;
	text-transform: uppercase;
	letter-spacing: .5px;
}

#recentBlogPosts .readtime svg 
{
	position: relative;
	top: 3px;
	right: 2px;
	width: 18px;
	height: 18px;
	fill: currentColor;
}

#recentBlogPosts .title 
{
	--min-margin-top: 25;
	--max-margin-top: 33;
	margin-bottom: 24px;
	--max-font-size: 42;
	line-height: 1.14;
}

#recentBlogPosts .title::after
{
	content: '';
    display: block;
    width: 56px;
    height: 1px;
    margin-top: 24px;
    background: var(--orange);
}

#recentBlogPosts .blog,
#recentBlogPosts .bios 
{
	margin-bottom: 0px;
	font-size: 18px;
}


#subscribeFooter
{
	position: relative;
	padding: 50px 0;
	background: #533E6C;
	color: #ffffff;
	text-align: center;
}

#subscribeFooter h2 
{
	font-weight: 400;
	--max-font-size: 56;
	color: inherit;
	border: none;
}

@media (min-width: 600px)
{
	.blogList ul.results_list
	{
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (min-width: 768px)
{
	
	#blogSearch form > div
	{
		display: flex;
	}

	#blogSearch form > div > div:nth-child(2)
	{
		flex: 1 1 100%;
	}

	#banner 
	{
		position: relative !important;
		left: unset !important;
		display: flex;
		flex-direction: row-reverse;
		align-items: center;
		height: 392px;
	}

	#bannerContent 
	{
		flex: 0 0 44%;
		padding-left: 5%;
	}

	#bannerImage
	{
		left: auto;
		height: 100%;
		right: -6%;
		flex: 0 0 56%;
	}
	


}

@media (min-width: 1024px)
{
	.blogList ul.results_list
	{
		grid-template-columns: repeat(3, 1fr);
		--fluid-start: 1024;
		--fluid-end: 1700;
	}

	.blogList .titleimage
	{
		padding: 30px 49px 30px;
	}
}

/* END ITEM-LISTING CSS -----------------------------------------> */