.stories {
	margin-top: 20px;
	margin-bottom: 20px;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
}

a.story {
	background-color: #efefef;
	border: 1px solid #ddd;
	border-radius: 6px;
	display: block;
	text-align: center;
	max-width: 300px;
	margin-bottom: 1em;
}

a.story:hover {
	text-decoration: none;
}

a.story .details {
	padding: 10px 20px;
}

a.story .details span {
	display: none;
}

.first-gens {
	margin-top: 20px;
	margin-bottom: 20px;
	display: flex;
	flex-wrap: wrap;
	justify-content: left;
}

.first-gens img {
	color: #333;
	font-size: 110%;
	text-align: center;
	margin-left: auto;
	width: 48%;
	margin-right: 1%;
	margin-left: 1%;
	margin-bottom: 1em;
}

/* Small devices (tablets, 480px and up) */
@media (min-width: 480px) {
	
	a.story {
		width: 30%;
		margin-right: 1.5%;
		margin-left: 1.5%;
	}
	
	a.story .details span {
		display: block;
		color: #000;
		font-size: 80%;
		font-weight: normal;
		line-height: normal;
		margin-top: 4px;
	}
	
	.first-gens img {
		width: 30%;
		margin-right: 1.5%;
		margin-left: 1.5%;
	}

}

/* Medium devices (desktops, 992px and up) */
@media (min-width: 992px) {
	
	a.story {
		width: 22%;
		margin-right: 1.5%;
		margin-left: 1.5%;
	}

	.first-gens img {
		width: 22%;
		margin-right: 1.5%;
		margin-left: 1.5%;
	}

}

/* Large devices (large desktops, 1200px and up) */
@media (min-width: 1200px) {
}