main {
	max-width: 800px;
	margin: auto;
	padding: 15em 1em 1em 1em;
}
main > h1,
main > p {
	transform: translateX(-20vw);
}
@media (max-width:1800px) {
	main h1 {
		transform: translateX(-5vw);
	}
}
@media (max-width:1500px) {
	main h1 {
		transform: translateX(0);
	}
}
@media(max-width:800px) {
	main {
		padding: 5em 1em 1em 1em;
	}
}

section.blog {
	padding: 2em 1em;
	max-width: 1300px;
	margin: auto;
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 1em 5vw;
}
section.blog > article {
	margin: 2em auto;
	grid-auto-rows: 1fr;
	padding-bottom: 2em;
}
section.blog > article > * {
	display: block;
	margin: .5em auto;
}
section.blog > article > span,
section.blog > article > p {
	-webkit-hyphens: auto;
	-webkit-hyphenate-limit-chars: auto 3;
	-webkit-hyphenate-limit-lines: 4;
	-ms-hyphens: auto;
	-ms-hyphenate-limit-chars: auto 3;
	-ms-hyphenate-limit-lines: 4;
	-moz-hyphens: auto;
  	hyphens: auto;
}
section.blog > article a:hover {
	text-decoration: none;
}
section.blog > article > a:first-child {
	overflow: hidden;
	display: block;
}
section.blog > article > a > img {
	aspect-ratio: 4 / 3;
	object-fit: cover;
	width: 100%;
	transition: transform 500ms ease;
}
section.blog > article:hover > a > img {
	transform: scale(1.1);
}
section.blog > article > p {
	text-align: left;
}
section.blog > article > a:last-child {
	position: absolute;
	bottom: 0;
	text-transform: uppercase;
	color: #ff2000;
	font-weight: 700;
}
@media (max-width: 800px) {
	section.blog {
		grid-template-columns: 1fr;
	}
}

.page_nav {
	width: 100%;
	max-width: 1300px;
	margin: auto;
	padding: 2em 1em;
	display: flex;
	gap: .5em;
}
.page_nav > * {
	display: flex;
	width: 2em;
	height: 2em;
	border: 1px solid #eee;
	align-content: center;
	align-items: center;
	justify-content: center;
}
.page_nav > *:hover {
	text-decoration: none;
	border-color: #ff2000;
}
.page_nav > *.active {
	color: white;
	background-color: #ff2000;
	border-color: #ff2000;
}