.articleList {
	list-style-type: none;	
	padding: 0;
}

.articleListItem {
	display: flex; 
	align-items: flex-start;
	margin-bottom: 5%;
}

.articleListItemImage {
	width: 20%;
	height: auto;
	flex-shrink: 0;
}

.articleListItemContent {
	display: flex; 
	flex-direction: column;
	justify-content: space-between;
	margin-left: 2%;
	width: 68%;
}

.articleListItemHeader {
	font-size: 1.2em;
	font-weight: bold;
}

.articleListItemText { 
	font-size: 0.9em;
}

.articleContainer  {
	width: 100%;
	margin: 0 auto;
	box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
	overflow: hidden;
	border-radius: 0px;
}

.articleHeader {
	position: relative;
	height: 25%;
	background-size: cover;
	background-position: center;
	display: flex;
	flex-direction: column;
	color: white;
	justify-content: center;
	align-items: center;
	text-align: center;
	text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.5);
}

.articleHeaderBackgroundImage {
	position: absolute;
	top: 0; 
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover; /* image fills container */
	filter: blur(3px);
	opacity: 1;
	z-index: 0;
}

/* Remove blur effect on text, inside of articleHeader. */
/* Background should be blurred, but child items should not inherit this. */
.articleHeader h1, .articleHeader p {
	position: relative;
	z-index: 1;
}



.articleBody {
	padding: 5%;
	line-height: 1.6;
}
