.magazine-item {
	background-size: cover;
	background-position: center;
    background-repeat: no-repeat;
	width: 100%;
	height: 422px;
}

.magazine-item .magazine-item-cover {
	background: #2A2F3C;
	color: white;
	display: none;
	height: 100%;
	padding: 40px 70px;
	width: 100%;
	text-align: center;
	transition: all .5s;
}
.magazine-item:hover .magazine-item-cover {
	display: block;
	transition: all .5s;
}
.magazine-item .magazine-item-cover .magazine-item-date { 
	font-size: 11px;
	font-weight: 700;
	text-transform: uppercase;
}
.magazine-item .magazine-item-cover .magazine-item-code { 
	font-size: 16px;
	font-weight: 700;
	margin-top: 5px;
	text-transform: uppercase;
}
.magazine-item .magazine-item-cover .magazine-item-title { 
	font-size: 24px;
	font-weight: 700;
  left: 0;
	margin-left: 70px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
	width: calc(100% - 140px);
  -ms-transform: translateY(-50%);
}
.magazine-item .magazine-item-cover .magazine-item-action { 
	bottom: 40px;
	left: 0;
	margin-left: 70px;
	position: absolute;
	width: calc(100% - 140px);
}
.magazine-item .magazine-item-cover .magazine-item-action > a { 
	width: 100%;
}

.MagazineList {
	flex-direction: row;
	justify-content: center;
	margin: 0;
}

.MagazineList__Item {
	width: 100%;
	position: relative;
}

@media screen and (min-width: 768px) {
	.MagazineList__Item {
		flex: 0 1 50%;
	} 
}

@media screen and (min-width: 992px) {
	.MagazineList {
		justify-content: start;
		margin-left: -7.5px;
    	margin-right: -7.5px;
	}
	
	.MagazineList__Item {
		flex: 0 1 33%;
	} 
}

@media screen and (min-width: 1200px) {
	.MagazineList__Item {
		flex: 0 1 25%;
	} 
}
