/* Blog CSS */
section#blog {
	padding-top: 120px;
}
section#blog img {
	height: auto;
	-webkit-box-shadow: 0 15px 30px -5px rgba(0, 0, 0, 0.1);
	box-shadow: 0 15px 30px -5px rgba(0, 0, 0, 0.1);
	width: 100%;
	object-fit:cover;
}
section#blog h4 {
	font-size: 0.81rem;
	font-weight: 500;
	color: gray;
	margin: 10px 0;
}
section#blog h4 #postAuthor {
	font-weight: 700;
	color: var(--primary-color);
	transition-duration: 150ms;
	margin-right: 5px;
}
section#blog h4 #postAuthor:hover {
	color: var(--faded-primary-color);
}
section#blog h3 {
	font-size: 0.81rem;
	font-weight: 700;
	text-transform: uppercase;
	margin: 0;
	color: var(--primary-color);
}
section#blog h2 {
	font-size: 3rem;
	font-weight: 500;
	margin: 15px 0 20px 0;
	line-height: 45px;
	letter-spacing: -1px;
}
section#blog p {
	color: #939393;
	font-weight: 500;
	font-size: 1rem;
	width: 70%;
	margin: 30px 0;
}

@media(max-width: 900px) {
	section#blog h2 {
		font-size: 2.0rem;
	}
	section#blog p {
		font-size: .9rem;
		width: 100%;
	}
}