section.section-blog {
	width: 100%;
	max-width: 1168px;
	margin: 100px auto 0;
	min-height: 80vh;

	overflow: hidden;
    position: relative;
}

@media (max-width: 1200px) {
	section.section-blog {
		margin: 100px 10px 0;
	}
}

section.section-blog div.bread-crumbs a {
    color: #263238;
}

section.section-blog .articles {
	display: flex;
	align-content: space-between;
	justify-content: flex-start;
	flex-wrap: wrap;
	margin: -10px;
}

section.section-blog .article {
	width: 216px;
	height: 216px;

	position: relative;
	overflow: hidden;
	margin: 10px;
}

section.section-blog .article .image {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;

	image-rendering: pixelated;

	-webkit-transition: -webkit-transform 0.8s ease;
			transition: 		transform 0.8s ease;
}

section.section-blog .article .shade {
	content: '';
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;

	background: rgba(255,255,255,0.8);
	z-index: 1;

	-webkit-transition: -webkit-transform 0.8s ease, background 0.8s ease;
			transition: 		transform 0.8s ease, background 0.8s ease;
}

section.section-blog .articles a {
	color: #263238
}

section.section-blog .article .caption {
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	height: 50px;

	z-index: 2;
	color: #263238;
	font-size: 14px;
	line-height: 100%;
	font-weight: bold;
	font-variant: small-caps;
	text-transform: lowercase;
	padding: 0 10px;
	
	display: flex;
	align-items: center;
	justify-content: center;

    text-align: center;

    -webkit-transition: color 0.8s ease;
			transition: color 0.8s ease;
}

section.section-blog .article:hover .image { 
	-webkit-transform: scale(2);
			transform: scale(2);
}

section.section-blog .article:hover .shade {
	background: #455a64;
	-webkit-transform: translateY(166px);
			transform: translateY(166px);
}

section.section-blog .article:hover .caption {
	color: white;
}
