.list_of_games_2 .section_text{
	margin-bottom: 40px;
}
.list_of_games_2 .items{
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
	row-gap: 50px;
	column-gap: 30px;
}
.list_of_games_2 .item{
	width: 100%;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
}
.list_of_games_2 .item_img{
	width: 100%;
	padding-top: 85%;
	position: relative;
}
.list_of_games_2 .item_img img{
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.list_of_games_2 .item_text{
	margin-top: 15px;
}
.list_of_games_2 .item_text h3,
.list_of_games_2 .item_text p{
	margin: 0;
}
.list_of_games_2 .item_text h3{
	color: var(--title_color);
}
/* Responsiveness // Responsiveness // Responsiveness */
@media (max-width: 767px){
	.list_of_games_2 .items{
		margin-top: 30px;
		grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	}
	.list_of_games_2 .item_img{
		height: 260px;
	}
}