#games .gamesPreviewGrid {
	margin-top: 15px;
	grid-template-columns: repeat(2, minmax(0, 1fr));
}
#games .gamePreviewCard {
	overflow: hidden;
}
#games .gamePreviewCardWide {
	grid-column: span 2;
}
#games .gamePreviewPicture {
	display: block;
}
#games .gamePreviewImage {
	display: block;
	width: 100%;
	height: auto;
	aspect-ratio: 16/9;
	-o-object-fit: cover;
	object-fit: cover;
}
#games .gamePreviewImageWide {
	aspect-ratio: 8/3;
}
#games .gamesAutoFullscreenSetting {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	color: inherit;
	font-size: 14px;
	font-weight: bold;
	line-height: 1;
	cursor: pointer;
}
#games .gamesAutoFullscreenSetting input {
	-webkit-appearance: none;
	appearance: none;
	display: flex;
	align-items: center;
	flex: 0 0 34px;
	width: 34px;
	height: 20px;
	margin: 0;
	padding: 2px;
	background-color: #464d57;
	border: 1px solid rgba(240, 240, 240, 0.22);
	border-radius: 10px;
	box-shadow: inset 0 0 2px rgba(0, 0, 0, 0.35);
	cursor: pointer;
	transition:
		background-color 0.15s ease,
		border-color 0.15s ease;
}
#games .gamesAutoFullscreenSetting input::after {
	content: '';
	flex: 0 0 14px;
	width: 14px;
	height: 14px;
	background-color: #fff;
	border-radius: 50%;
	box-shadow: 0 0 2px rgba(0, 0, 0, 0.35);
	transition: transform 0.15s ease;
}
#games .gamesAutoFullscreenSetting input:checked {
	background-color: #b3cc50;
	border-color: #b3cc50;
}
#games .gamesAutoFullscreenSetting input:checked::after {
	transform: translateX(14px);
}
#games .gamesAutoFullscreenSetting input:focus-visible {
	border-color: #f0d59a;
	outline: none;
}
@media (max-width: 650px) {
	#games .gamesPreviewGrid {
		grid-template-columns: minmax(0, 1fr);
	}
	#games .gamePreviewCardWide {
		grid-column: auto;
	}
	#games .gamePreviewImageWide {
		aspect-ratio: 16/9;
	}
}
