.hoverTile {
	overflow: hidden;
	cursor: pointer;
	margin-top: 0.23em;
	position: relative;
	display: inline-block;
	width: calc(20% - 3px);
	border: 1px solid grey;
	box-sizing: border-box;
	vertical-align: top;
}
.hoverTile img {
	width: 100%;
	height: auto;
	transition: all .1s;
	margin-bottom: -4px;
}
.hoverTile div {
	top: 0;
	padding-top: 60%;
	text-align: center;
	position:absolute;
	font-family: Arial, sans-serif;
	height: 100%;
	width: 100%;
	background-color: rgba(255,255,255, 0);
	opacity: 0;
	transition: all .3s;
	font-weight: bold;
	font-size: 1.3em;
	text-transform: uppercase;
}

.small_works_subtitle {
	font-size: 0.8em;
	}
.hoverTile div:hover {
	background-color: rgba(255,255,255, 0.9);
	opacity: 1;
}

.landscape {
	width: calc(50% - 3px);
}
.landscape div {
	padding-top: 25%;
}

/* ========== RESPONSIVE ========== */
/* Largest */
@media all and (max-width: 1280px) {
}

/* Large */
@media all and (max-width: 1024px){
}

/* Medium */
@media all and (max-width: 800px) {
	.hoverTile {
		width: calc(33% - 3px);
	}
	.hoverTile div {
		font-size: 1em;
	}
	.landscape {
		width: calc(50% - 3px);
	}
}

/* Small */
@media all and (max-width: 640px) {
	.hoverTile {
		width: calc(50% - 2px);
	}
	.hoverTile div {
		font-size: 1em;
	}
	.landscape {
		width: auto;
	}
}
