:root {
	--accentcolor: #cc0000;
}

body {
	width: 100%;
	height: 100vh;
	font-family: "Roboto", sans-serif;
	background-color: #fff;
	color: hsl(30, 20%, 10%);
	margin: 0;
}

a {
	 color: #000000;
	 text-decoration: none;
}

article {
	--article-height: 100%;
	--article-ratio: 1.3;
	width: calc(var(--article-height) / var(--article-ratio));
	height: var(--article-height);
	max-width: 800px;
	box-sizing: border-box;
	padding: 0px 20px;
	margin: auto;
	position: relative;
}

.hero-image {
	max-width: 100%;
	width: 100%;
	height: 330px;
	object-fit: cover;
}

.hero {
	position: relative;
}

.heading-article {
	position: absolute;
	bottom: -20px;
	left: 0;
	color: #f2e4d8;
}

h1 {
	font-size: 3em;
	text-transform: uppercase;
	color: #fff;
	padding: 4px 20px;
	background-color: var(--accentcolor);
	line-height: 1em;
	margin-top: 0px;
	text-align: center;
}

img[class^="editorial-image"] {
	outline: 3px solid rgba(255, 255, 255, 0.5);
	outline-offset: -8px;
	width: 250px;
	height: 250px;
	object-fit: cover;
	border-radius: 50%;
	shape-outside: circle(50%);
	-webkit-shape-outside: circle();
}

.editorial-image-left {
	float: left;
	margin: 20px 20px 20px 0px;
}

.editorial-image-right {
	float: right;
	margin: 20px 0px 20px 20px;
}

.forthebirdinblue {
	object-position: 40% 65%;
}

p {
	font-size: 1.1rem;
	line-height: 1.6em;
}

h2 {
	clear: both;
	font-size: 1.5rem;
	margin: 2em 0em 0.1em 0em;
}

blockquote {
	clear: both;
	font-weight: 900;
	padding: 1em 1em 1em 3em;
	margin: 0 0 2em;
	width: 75%;
	position: relative;
	font-family: Georgia, serif;
	font-size: 1.2em;
}

blockquote::before {
	content: "\201C";
	font-family: Georgia, serif;
	font-size: 4em;
	font-weight: bold;
	color: var(--accentcolor);
	position: absolute;
	left: 0;
	top: 5px;
}

blockquote::after {
	content: "";
}

blockquote strong {
	display: block;
	margin-top: 0.5em;
	font-size: 0.8em;
}

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

	article {
		width: 90%;
		margin: auto;
	}

	blockquote {
		width: 100%;
	}
}