.latest_articles_header {
	max-width: 1200px;
	margin: 3rem auto 0 auto;
}
.what_to_read {
	max-width: 1200px;
	margin: 1rem auto 0 auto;
}
.what_to_read > ul {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	grid-gap: 0.5rem;
	margin: 0;
	list-style: none;
}
.what_to_read > ul > li {
	text-align: center;
	border: 1px solid #ddd;
	border-radius: 0.5rem;
}
.what_to_read > ul > li > a {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	color: #222;
	font-weight: bold;
	padding: 0.5rem 0;
}
.what_to_read > ul > li:hover {
	border: 1px solid #f96e5b;
}
.what_to_read > ul > li:hover > a {
	color: #f96e5b;
}
.what_to_read > ul > li:hover > a > img {
	filter: invert(55%) sepia(16%) saturate(2569%) hue-rotate(319deg) brightness(102%) contrast(95%); /* #f96e5b */
}
.what_to_read > ul > li > a > img {
	display: block;
	height: 48px;
	margin-bottom: 0.3rem;
	filter: invert(12%) sepia(1%) saturate(0%) hue-rotate(216deg) brightness(98%) contrast(96%); /* #222 */
}
.no_margin_bottom {
	margin-bottom: 0;
}
.premium-promo {
	margin: 4rem auto;
	max-width: 900px;
}
.premium-promo > a > .title {
	margin-bottom: 1rem;
}
@media only screen and (max-width: 1200px) {
	.what_to_read, .latest_articles_header {
		padding: 0 1rem;
	}
}
@media only screen and (max-width: 640px) {
	.what_to_read > ul {
		grid-template-columns: repeat(2, 1fr);
	}
}