/**************************************************
 * Generic Block Items
 **************************************************/
 .block-grid {
 	padding-bottom: 40px;
 	position: relative;
 }
 .block-item {
	margin: 0 20px 20px 0;
	position: relative;
	width: 460px;
	float: left;
}
.block-item:nth-child(2n+2) {
	margin-right: 0;
}
.blocks-row-small .block-item:nth-child(2n+2) {
	margin-right: 20px;
}
.blocks-row-small .block-item:nth-child(3n+3) {
	margin-right: 0;
}

.block-item a.item-anchor {
	background-position: center center;
	background-repeat: no-repeat;
	background-size: cover;
	position: relative;
	height: 350px;
	display: block;
	text-shadow: 0px 2px 3px rgba(0, 0, 0, 0.25);
}

.gridforthreeimage{
	background-position: center center;
	background-repeat: no-repeat;
	background-size: cover;
	position: relative;
	display: block;
	height: 350px;
	text-shadow: 0px 2px 3px rgba(0, 0, 0, 0.25);
}

.gridfourimage{
	    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
    display: block;
	height: 350px;
    text-shadow: 0px 2px 3px rgb(0 0 0 / 25%);
}

.block-shadow {
	background: -moz-linear-gradient(top, rgba(0,0,0,0.5) 0%, rgba(0,0,0,0) 100%);
	background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,rgba(0,0,0,0.5)), color-stop(100%,rgba(0,0,0,0)));
	background: -webkit-linear-gradient(top, rgba(0,0,0,0.5) 0%,rgba(0,0,0,0) 100%);
	background: -o-linear-gradient(top, rgba(0,0,0,0.5) 0%,rgba(0,0,0,0) 100%);
	background: -ms-linear-gradient(top, rgba(0,0,0,0.5) 0%,rgba(0,0,0,0) 100%);
	background: linear-gradient(to bottom, rgba(0,0,0,0.5) 0%,rgba(0,0,0,0) 100%);
	position: absolute;
	bottom: 50%;
	right: 0px;
	left: 0px;
	top: 0px;

	z-index: 11;
	opacity: 1;

	-webkit-transition: all 0.2s ease-in-out;
	-moz-transition: all 0.2s ease-in-out;
	transition: all 0.2s ease-in-out;
}
a:hover .block-shadow {
	opacity: 0;
}

.block-title {
	position: absolute;
	text-align: center;
	z-index: 15;
	right: 20px;
	left: 20px;
	top: 30px;
}
.block-title h3,
.block-title p,
p.story-shares {
	color: #fff;
	margin: 0;
}
.block-title h3 {
	font-size: 30px;
}
.block-title p {
	font-size: 18px;
}

/**************************************************
 * Favorite Button
 **************************************************/
.button.button-favorite {
	background: transparent;
	border: 2px solid #fff;
	position: absolute;
	line-height: 32px;
	padding: 2px 4px;
	height: 32px;
	bottom: 20px;
	right: 20px;
	z-index: 15;
	margin: 0;

	-webkit-transition: all 0.2s ease-in-out;
	-moz-transition: all 0.2s ease-in-out;
	transition: all 0.2s ease-in-out;
}
.button.button-favorite:hover {
	background: #fff;
}
.icon.icon-favorite {
	display: inline-block;
	text-indent: -9999px;
	overflow: hidden;
	height: 32px;
	width: 32px;
}

/**************************************************
 * Empty Block
 **************************************************/
.block-item.block-empty {
	border: 3px solid #eee;
	padding: 130px 80px;
	height: 354px;

	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	-ms-box-sizing: border-box;
	box-sizing: border-box;
}
.block-item.block-empty p {
	text-align: center;
	font-style: italic;
	line-height: 36px;
	font-size: 30px;
	color: #ccc;
	margin: 0;
}