.recent__list {
	display: flex;
	flex-direction:  row;
	flex-wrap:  wrap;
	justify-content: space-between;
}

.recent__item {
	width:  calc( 50% - 27.5px );
	position: relative;
}

.recent__img {
	display: block;
	background-color: #ccc;
	text-decoration: none !important;
	height:  304px;
	overflow: hidden;
	color:  rgba(255,255,255,.91);
}
.recent__img:hover,
.recent__img:focus,
.recent__img:visited {
	color:  rgba(255,255,255,.91);
}

.recent__img img {
	display: block;
	max-width:  100%;
	width:  100%;
	height:  100%;
	object-fit: cover;
	transition:  all .3s ease-out;
	-webkit-transition:  all .3s ease-out;
	-moz-transition:  all .3s ease-out;
	position: relative;
	z-index: 1;
}

.recent__img:hover img,
.recent__img:focus img {
	transform:  scale(1.2);
}

.recent__img:hover .recent__descr,
.recent__img:focus .recent__descr {
	opacity: 1;
	visibility: visible;
	z-index: 2;
	transform:  scale(1);

}

.recent__descr {
	position: absolute;
	top: 20px;
	left:  25px;
	width: calc( 100% - 50px );
	height:  calc( 100% - 40px );
	opacity: 0;
	visibility: hidden;
	transform:  scale(0.3);
	z-index: -2;
	border:  3px solid var(--second-color);
	background-color: rgba(0,0,0,.4);
	display: flex;
	align-items: center;
	justify-content: center;
	transition:  all .3s ease-out;
	-webkit-transition:  all .3s ease-out;
	-moz-transition:  all .3s ease-out;
	flex-direction:  column;
}

.recent__title {
	font-size: 30px;
	line-height: 1;
	text-transform: uppercase;
	font-weight: 400;
	margin-bottom: 2px;
	letter-spacing: .75px;
}

.recent__btn {
	text-decoration: underline;
	font-size: 18px;
	line-height: 1;
	letter-spacing: 0.45px;
	font-weight: 400;
}

@media screen and (max-width: 1199px) {
	.recent__item {
		width:  calc(50% - 10px );
	}
}

@media screen and (max-width: 992px) {
	.recent__item {
		width: 100%;
		margin-bottom: 10px;
	}
	.recent__item:last-child {
		margin-bottom: 0;
	}
	.recent__img {
		height: auto;
	}
	.recent__img img {
		min-height: 161px;
	}
	.recent__title {
		font-size: 24px;
	}
	.recent__btn {
		font-size: 14px;
	}
	.recent__descr {
		top: 15px;
		left: 15px;
		width: calc( 100% - 30px );
		height: calc( 100% - 30px );

		opacity: 1;
		visibility: visible;
		z-index: 2;
		transform: scale(1);
	}
}