.game-list {
	display: grid;
	grid-column-gap: 15px;
	grid-row-gap: 30px;
	min-width: 100%;
	max-width: none;
	padding-bottom: 10px;
	box-sizing: border-box;
}
.game-list * {
	box-sizing: border-box;
}

.game-list__item {
	position: relative;
}

.game-list__img {
	width: 100%;
	height: 200px;
	object-fit: cover;
	object-position: center;
	border-radius: 10px;
	box-shadow: 0 3px 5px 0 rgba(0, 0, 0, 0.2); 
}

.game-list__term {
	position: absolute;
	background-color: #1d6dff;
	color: #fff;
	border-radius: 50px;
	font-weight: bold;
	font-size: 12px;
	text-transform: uppercase;
	top: 5px;
	left: 20px;
	padding: 0 10px;
	line-height: 24px;
}

.game-list__rate {
	position: absolute;
	background-color: #4f5357;
	color: #FFF;
	font-weight: bold;
	font-size: 14px;
	right: 30px;
	border-radius: 10px;
	padding: 7px 10px;
	text-align: center;
	top: -10px;
}

.game-list__rate:before {
	content: '\e804';
	font-family: 'FontAwesome';
	display: block;
	font-weight: normal;
}

.game-list__btn {
	background-color: #ff4747;
	font-size: 14px;
	font-weight: bold;
	text-transform: uppercase;
	line-height: 40px;
	border-radius: 50px;
	color: #fff !important;
	text-decoration: none !important;
	padding: 0 15px;
	display: table;
	border-bottom: 2px solid #e00000;
	margin: -20px auto 0;
	position: relative;
	z-index: 5;
	cursor: pointer;
}

.composs-main-article-content .shortcode-content .game-list__btn, .composs-main-article-content .shortcode-content .game-list__btn:hover {
	color: #fff !important;
	text-decoration: none !important;
}

.game-list__btn:hover {
	background-color: #ff3838;
}

.game-list__bot {
	background-color: #fff;
	box-shadow: 0 3px 5px 0 rgba(0, 0, 0, 0.2);
	padding: 25px 15px 12px;
	border-radius: 10px;
	margin: -15px 0 0;
	font-weight: bold;
	text-align: center;
	font-size: 16px;
	color: #000;
}

.game-list__dev {
	font-weight: normal;
	display: block;
	color: #4f5357;
}

@media (min-width: 576px) {
	.game-list {
		grid-template-columns: repeat( auto-fill, minmax(195px, 1fr) );
	}

	.game-list__img {
		height: 140px;
	}

	.game-list__bot {
		height: calc(100% - 150px);
	}
}

/*# sourceMappingURL=list.css.map */
