main {
	min-height: 100vh;
	display: flex;
	padding: 14.5rem 3rem 9rem;
	font-size: 1.6rem;
}

main h1 {
	font-size: 2.2rem;
}

main h2 {
	font-size: 2rem;
	font-weight: 700;
}

main h3 {
	font-size: 1.8rem;
	font-weight: 700;
}

main h4 {
	font-size: 1.6rem;
	font-weight: 700;
}

main h5 {
	font-size: 1.4rem;
	font-weight: 700;
}

main h6 {
	font-size: 1.2rem;
	font-weight: 700;
}

main ul > li::before {
	content: '∙ ';
}

main ul ul,
main ol ol {
	padding-left: 1rem;
}

main ol {
	counter-reset: list;
}

main ol li::before {
	counter-increment: list;
	content: counter(list) '. ';
}

main strong {
	font-weight: 700;
}
main em {
	font-style: italic;
}
main s {
	text-decoration: line-through;
}
main u {
	text-decoration: underline;
}
main blockquote {
	border-left: 2px solid var(--text-color);
	padding-left: 1rem;
	margin: 1rem auto;
}
main mark {
	background: rgba(68, 162, 177, 0.2);
}
main a {
	color: #44a2b1;
	text-decoration: underline;
}
main hr {
	border: none;
	border-top: 1px solid rgba(0, 0, 0, 0.2);
}

main img {
	max-width: 100%;
}

section {
	flex: 3;
	height: auto;
	padding-right: 3rem;
}

article.main-img {
	width: 100%;
	height: 39vw;
	margin-bottom: 9rem;
}

article.main-img > img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

aside {
	position: sticky;
	top: 14.5rem;
	flex: 1;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: flex-start;
	/* align-items: center; */
	height: 43vw;
	padding: 0 3rem;
	border-left: 1px solid var(--text-color);
}

aside p.date {
	margin: 3rem 0 6rem;
	align-self: flex-end;
}

@media screen and (max-width: 768px) {
	main {
		padding: 10rem 2rem;
		flex-direction: column;
		font-size: 1.2rem;
	}

	main h1 {
		font-size: 1.8rem;
	}
	main h2 {
		font-size: 1.6rem;
	}
	main h3 {
		font-size: 1.4rem;
	}
	main h4 {
		font-size: 1.2rem;
	}
	main h5 {
		font-size: 1.1rem;
	}
	main h6 {
		font-size: 1rem;
	}

	section {
		order: 2;
		padding-right: 0;
		padding-top: 3rem;
	}

	article.main-img {
		height: 57vw;
		margin-bottom: 2rem;
	}

	aside {
		position: static;
		padding: 0 0 2rem;
		height: auto;
		border-left: none;
		border-bottom: 1px solid var(--text-color);
	}

	aside p.date {
		margin: 0.5rem 0 1.5rem;
	}
}
