@charset "utf-8";
.gallery {
	overflow: hidden;
	text-align: center;
	color: #333;
}
.gallery div {
	display: inline-block;
	position: relative;
	margin: 0 1px 1px 1px;
}
.gallery h4 {
	position: absolute;
	left: 1px;
	bottom: 5px;
	width: 100%;
	width: calc(100% - 2px);
	padding-top: 4px;
	padding-bottom: 0;
	font-size: 1.25em;
	color: #333;
	background-color: rgba(255,255,255,.7);
	transition: color,background-color .3s ease-out;
}
.gallery div:hover h4 {
	/* transition to white on black */
	color: rgb(253,250,240);
	background-color: rgba(0,0,0,.6);
}
.gallery img {
	border: 1px solid #777;
	box-shadow: 1px 1px 6px rgba(0,0,0,.3);
}
@media (max-width: 415px) {
	.gallery h4 {
		padding-top: 0;
		font-size: 0.9em;
	}
}
@media (max-width: 334px) {
	.gallery div {
		margin-left: 0;
		width: 100%;	/* 200px */
	}
	.gallery h4 {
		width: 100%;
	}
	.gallery img {
		max-width: 100%;
		height: auto;
	}
}
