.article-detail.container {
	position: relative;
	margin-top: 5em;
}

.article-image img {
	max-width: 100%;
	margin-bottom: 2em;

	@media screen and (min-width: 600px) {
		margin-bottom: 0;
	}
}

.article-content {
	width: 100%;
	margin: 0 auto;
	letter-spacing: 0.05em;
	
	@media screen and (min-width: 600px) {
		position: relative;
		top: -90px;
		margin-bottom: -90px;
		width: calc((100% / 12) * 9);
		padding: 3% 4%;
		background-color: #fff;
	}

	h1, h2, h3, h4 {
		font-family: "Montserrat";
	}

	h2, h3, h4 {
		margin-top: 2em;	
	}

	h1 {
		font-size: 2em;
		font-weight: 800;
		line-height: 1.2em;
		margin-bottom: 1em;
		margin-top: 0.25em;

		@media screen and (min-width: 600px) {
			font-size: 3em;
			margin-bottom: 2em;
		}
	}

	h2 {
		font-size: 1.5em;
		font-weight: 800;

		@media screen and (min-width: 600px) {
			font-size: 2em;
		}
	}

	h3 {
		font-size: 1.2em;
		font-weight: 800;

		@media screen and (min-width: 600px) {
			font-size: 1.4em;
		}
	}

	p {
		font-size: 1.2em;
		line-height: 1.6em;

		strong {
			font-weight: 800;
		}
	}

	ul {
		font-size: 1.2em;
		margin: 2em 0;
		padding-left: 2em;
		font-weight: 300;

		@media screen and (min-width: 600px) {
			padding-left: 3em;
		}

		li {
			margin-bottom: 0.5em;
			padding-left: 0.3em;

			@media screen and (min-width: 600px) {
				padding-left: 0.5em;
			}
		}
	}

	p a {
		color: $brand-secondary-color;
		&:hover, &:active {
			color: $brand-primary-color;
			text-decoration: underline;
		}
	}

	blockquote {
		position: relative;
		max-width: 100%;
		margin: 5em 1em 3em;
		padding: 0 1em;
		border-left: 10px solid #2EC4B6;

		@media screen and (min-width: 600px) {
			padding: 0 2em;
			margin: 5em 3em 3em;
		}

		footer {
			font-size: 0.8em;
		}

		.quote-by {
			font-weight: 500;
		}

		&:before {
			font-size: 3.5em;
			font-weight: 800;
			top: -3.9rem;
    		left: -0.5em;
			color: #2EC4B6;
		}
	}
}

.container.article-nav {
	display: flex;
	margin-bottom: 2em;

	a {
		font-size: 2em;
		font-weight: 500;
		flex: 1;
		color: #011627;
		opacity: 0.5;

		&:hover {
			color: $brand-secondary-color;
		}
	}

	.next {
		text-align: right;

		svg {
			transform: rotate(180deg);
		}
	}
}
