/* Game list styles */

#games-list {
	margin-top: 25px;
	text-align: center;
}

#games-list a {
    display: inline-block;
    width: 25%;
    min-width: 200px;
    vertical-align: top;
	padding: 0px;
	margin: 0px;
}

#games-list article .inner {
	position: relative;	
    margin: 5px;
    padding: 8px;
	border-radius: 10px;
    background-color: #404042;
}

#games-list article .game-detail {
	margin: 0px 10px 10px 10px;
	text-align: left;
}

#games-list article .game-thumb {
	position: relative;
	height: 140px;
	overflow: hidden;
	border-radius: 5px;
}

#games-list article .game-thumb img {
	position: absolute;
    margin: auto;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
	border-radius: 5px;
}

/* Game layout */

#game-desc {
	max-width: 800px;
	margin: 0px auto;
}

#game-video-container { 
	text-align: center;
}

#game-video-container img {
	width: 100%
}

/* Media queries */

@media only screen and (max-width: 560px) {
	#games-list {
		text-align: left;
	}

	#games-list a {
		position: relative;	
		display: block;
	    margin: 0;
	    width: 100%;
		height: auto;
	}

	#games-list article .inner {
	    margin: 5px 0px 5px 0px;
	}

	#games-list article .game-thumb {
		float: left;
		width: 50px;
		height: 50px;
	    overflow: hidden;
	}

	#games-list article .game-detail {
		position: relative;
		top: auto;
		left: auto;
		width: auto;
		margin: 0px 0px 0px 50px;
		padding: 2px 8px 8px 8px;
	}
}