.recommend {
	display: flex;
	flex-direction: column;
	position: relative;
	margin: 12px 0;
	padding: 16px;
	border: 1px solid var(--mirage-200);
	border-radius: 4px;
	clear: both;
	overflow: hidden;
}

.recommend + br {
	display: none;
}

.recommend--has-image:before {
	content: "";
	display: block;
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 33px;
	background-color: #F4F4F4;
}

.recommend--rooms:before {
	display: none;
}

.recommend__content {
	display: flex;
}

.recommend__info {
	display: flex;
	flex-direction: column;
	width: calc(100% - 100px);
}

.recommend__poster {
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	width: 100px;
	height: 62px;
	z-index: 1;
}

.recommend--rooms .recommend__poster {
	background-color: #efefef;
}

.recommend__poster-image {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.recommend--rooms .recommend__poster-image {
	object-fit: contain;
}

.recommend__tag {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	height: 24px;
	margin-bottom: 5px;
	padding: 0 12px;
	font-size: 12px;
	line-height: 14px;
	font-weight: bold;
	text-transform: uppercase;
	white-space: nowrap;
	background-color: var(--mirage-200);
	overflow: hidden;
	z-index: 1;
}

.recommend__title {
	display: -webkit-box;
	padding-left: 10px;
	font-size: 16px;
	line-height: 18px;
	font-weight: bold;
	text-decoration: none;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	text-overflow: ellipsis;
	color: #000000;
	overflow: hidden;
}

.recommend__title:hover {
	text-decoration: underline;
}

.recommend__text {
	display: -webkit-box;
	width: 100%;
	margin-top: 10px;
	padding-right: 44px;
	font-size: 14px;
	line-height: 20px;
	-webkit-line-clamp: 3;
	-webkit-box-orient: vertical;
	text-overflow: ellipsis;
	overflow: hidden;
}

.recommend__text--desktop {
	display: none;
}

.recommend__more {
	display: block;
	position: absolute;
	bottom: -18px;
	right: -11px;
	width: 55px;
	height: 55px;
	text-indent: -9999px;
	background-color: var(--pastel-green-500);
	background-image: url("data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMjQiIGhlaWdodD0iMjUiIHZpZXdCb3g9IjAgMCAyNCAyNSIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZD0iTTkgMTguMzY2MkwxNSAxMi4zNjYyTDkgNi4zNjYyMSIgc3Ryb2tlPSIjMUYyMzMyIiBzdHJva2Utd2lkdGg9IjIiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCIgc3Ryb2tlLWxpbmVqb2luPSJyb3VuZCIvPgo8L3N2Zz4K");
	background-repeat: no-repeat;
	background-position: 15px 10px;
	background-size: 20px;
	border-radius: 50%;
	overflow: hidden;
}

.recommend__more:hover {
	background-color: var(--pastel-green-600);
}

.recommended-list {
	padding: 40px 30px;
	position: relative;
	z-index: 1;
	font-size: 16px;
	line-height: 22px;
	color: rgba(255, 255, 255, 0.86);
	background-attachment: fixed;
	background-size: cover;
	margin-bottom: 15px;
	clear: both;
}

.recommended-list:before {
	content: '';
	background: linear-gradient(0deg, rgba(0, 0, 0, 0.75), rgba(0, 0, 0, 0.75));
	position: absolute;
	left: 0;
	right: 0;
	top: 0;
	bottom: 0;
	z-index: -1;
}

.recommended-list:after {
	content: '';
	border: 1px solid #E0E0E0;
	position: absolute;
	top: 10px;
	left: 10px;
	bottom: 10px;
	right: 10px;
	z-index: -1;
}

.recommended-list__heading {
	margin-bottom: 20px;
}

.recommended-list__heading a {
	font-weight: bold;
	font-size: 21px;
	line-height: 25px;
	color: #FFFFFF;
	text-decoration: none;
}

.recommended-list__heading a:hover {
	color: #F72A2A;
}

.recommended-list__heading span {
	display: inline-block;
	background: #F72A2A;
	font-weight: bold;
	font-size: 14px;
	line-height: 17px;
	color: #FFFFFF;
	text-transform: uppercase;
	padding: 2.5px 10px;
	margin: 3px 10px 0 0;
	float: left;

}

.recommended-list__items {
	list-style: none;
	margin: 0;
	padding: 0;
}

.recommended-list__items li {
	padding-left: 20px;
	position: relative;
}

.recommended-list__items li:not(.nostyle):before {
	content: '';
	display: inline-block;
	width: 8px;
	height: 8px;
	transform: rotate(45deg);
	background: #fff;
	position: absolute;
	left: 0;
	top: 9px;
}

.recommended-list__items li + li {
	margin-top: 10px;
}

.recommended-list__items a {
	color: #fff;
	text-decoration: none;
}

.recommended-list__items a:hover {
	text-decoration: underline;
}

@media (min-width: 768px) {
	.recommend {
		padding: 15px;
	}

	.recommend--has-image:before {
		width: 105px;
		height: 100%;
	}

	.recommend__poster {
		width: 220px;
		height: 140px;
		margin-right: 15px;
	}

	.recommend__info {
		align-items: flex-start;
	}

	.recommend__tag {
		width: initial;
		margin-bottom: 10px;
	}

	.recommend__title {
		padding-left: 0;
		font-size: 18px;
		line-height: 24px;
		-webkit-line-clamp: initial;
	}

	.recommend__text {
		padding-right: 65px;
		font-size: 16px;
		line-height: 24px;
		margin-top: 5px;
	}

	.recommend__text--mobile {
		display: none;
	}

	.recommend__text--desktop {
		display: -webkit-box;
	}

	.recommend__more {
		bottom: -25px;
		right: -17px;
		width: 80px;
		height: 80px;
		background-position: 20px 15px;
		background-size: 30px;
	}
}