.featured-block {
	box-shadow: 0 4px 8px 0 rgba(0,0,0,0.4);
	height:250px;
	margin: 10px;
	margin-bottom: 25px;
	position: relative;
	transition: 0.5s;
}

.featured-block .text {
	padding: 5px;
	padding-left: 260px;
}

.featured-block .image-container {
	width:250px;
	height: 100%;
	overflow: hidden;
	float: left;
	background-position: center;
	background-size: cover;
	background-blend-mode: multiply;
	transition: 0.5s;
}

.featured-block .image-container img {
	max-width: none;
	height:100%;
	margin-left: 50%; 
	transform: translateX(-50%);
}

.featured-block .featured-block-link {
	bottom: 0;
	right: 0;
	position: absolute;
	padding: 7px 15px;
}

@media only screen and (max-width: 550px) {
	.featured-block {
		height: auto;
	}
	.featured-block .image-container {
		max-width: none;
		height: 250px;
		width:100%;
		float: none;
	}
	.featured-block .image-container img {
		height: auto;
		width: 100%;
	}
	.featured-block .text {
		padding-left: 5px;
		padding-bottom: 1.5em;
	}
}

.featured-block:hover {
	box-shadow: 0 5px 8px 0 rgba(0,0,0,0.9);
	transform: translateY(-3px);
}

.featured-block .image-container:hover {
	background-color: rgba(0,0,0,0.5);
}
