.press-link{
	min-height:250px;
	background-size: cover;
	background-repeat: no-repeat;
	display: block;
	width: 100%;
	padding: 12px;
	text-align: center;
	position: relative;
	cursor: zoom-in;
	border-radius: 12px;
	display: flex;
}
.press-link:hover:before{
	opacity: .75;
}
.press-link:before{
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	content: '';
	opacity: 0;
	background:black;
	border-radius: 12px;
	transition: opacity .3s ease;
}
.press-link span{
	margin:auto;
	padding-top: 24px;
	opacity: 0;
	z-index: 2;
	font-weight: bold;
	color: white;
	transition: all .5s ease;
}
.press-link:hover span{
	padding-top: 0px;
	opacity: 1;
}