
figure.hover-parent {
	width: 100%;
	/* height: 100%; */
	position: relative;
	margin-bottom: 0px;
	overflow: hidden;
}
figcaption.hover-mask {
	width: 100%;
	/* height: 84%; */
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	background: rgba(0,0,0,0.5);
	opacity: 0;
	color: #fff;
	display: flex;
	align-items: center;
	text-align: left;
	padding: 2px;
	font-size: 0.6rem;
}
figure.hover-parent:hover .hover-mask {
	opacity: 1;
	transition:all 0.6s ease;

}