
.card {
	padding: 1rem;
	text-align: left;
}

.card h3 {
	margin-top: 10px;
	margin-bottom: 2px;
	font-weight: 400;

}

.card p {
	margin-top: 0;
	font-size: 0.8em;
	opacity: 0.6;
}

.cover {
	transition: transform .2s;
	width: 100%;
	border-radius: 4px;
	box-shadow: 0 0 2px;
	color: #000;
}

.cards {
	display: grid;
	margin: 0 auto;
	/* display: grid; */
	grid-gap: 1rem 1rem;
	max-width: 1600px;
	width: 90%;
}

.platform img {
	height: 18px;
}

/* Screen smaller than 600px? 2 column */
@media (max-width: 600px) {
	.cards { grid-template-columns: repeat(2, 1fr); }

	.card {
		padding: 0;
	}

	.platform {
		opacity: 0.5;
		filter: invert(1);
	}
}

/* Screen larger than 600px? 2 column */
@media (min-width: 600px) {
	.cards { grid-template-columns: repeat(3, 1fr); }

	.platform {
		opacity: 0.5;
		filter: invert(1);
	}
}

/* Screen larger than 900px? 4 columns */
@media (min-width: 900px) {
	.cards { grid-template-columns: repeat(4, 1fr); }

}

/* Screen larger than 1400px? 5 columns */
@media (min-width: 1400px) {
	.cards { grid-template-columns: repeat(5, 1fr); }

	.platform {
		position: relative;
		top: -50px;
		float: right;
	}
}


.cover:hover {
	-ms-transform: scale(1.05); /* IE 9 */
	-webkit-transform: scale(1.05); /* Safari 3-8 */
	transform: scale(1.05);
}