/* 1. Global - Set up the things
/* ---------------------------------------------------------- */

/* Import CSS reset and base styles */
@import 'global.css';
@import 'animations.css';

:root {
	/* Fonts */
	--main-font: 'Heebo', sans-serif;
	--second-font: 'Manjari', sans-serif;

	/* Colours */
	--color-green: #a4d037;
	--color-yellow: #fecd35;
	--color-red: #f05230;
	--color-darkgrey: #15171a;
	--color-midgrey: #738a94;
	--color-lightgrey: #c5d2d9;
	--color-wash: #e5eff5;
	--color-darkmode: #151719;
	--color-apocalyptic-orange: #f57920;

	/* Arrows */
	--arrow-light-fill-color: #ffffff;
	--arrow-dark-fill-color: #f5e320;

	--vsl-accent-color: #212121;

	/* Backgrounds */
	--wrapper-bg: url('../img/bg/022.jpg');
}

body {
	font-family: var(--main-font);
}

p {
	font-family: var(--main-font);
	font-size: 1.8rem;
}

/* 2. Layout - Page building blocks
/* ---------------------------------------------------------- */

.viewport {
	display: flex;
	flex-direction: column;
	min-height: 100vh;
}

.site-content {
	flex-grow: 1;
}

/* Full width page blocks */
.outer {
	position: relative;
	padding: 0 4vmin;
}

/* Centered content container blocks */
.inner {
	margin: 0 auto;
	max-width: 1200px;
	width: 100%;
}

.text-center {
	text-align: center;
}

/* 4. Site Header
/* ---------------------------------------------------------- */

.site-header {
	position: relative;
	color: #fff;
	background: var(--vsl-accent-color);
}

.site-header-cover {
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.site-header-content {
	position: relative;
	z-index: 100;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	padding: 6vw 3vw;
	min-height: 200px;
}

.main-quote {
	color: var(--color-midgrey);
	font-size: 1.75rem;
	font-style: italic;
	font-weight: 400;
	margin: 1vmin 0 2vmin;
	max-width: 55rem;
	text-align: center;
	z-index: 10;
}

.sub-head {
	color: var(--color-apocalyptic-orange);
	display: block;
	line-height: 1.35;
	margin: 2vmin 0 1vmin;
	padding: 0;
	text-align: center;
	z-index: 10;
}

.subheading {
	color: #000;
	display: flex;
	flex-grow: 1;
	flex-direction: column;
	font-family: var(--main-font);
	font-size: 2.5rem;
	line-height: 1.35;
}

@media (max-width: 600px) {
	.sub-head {
		font-size: 1.67rem;
	}
	.subheading {
		font-size: 2rem;
	}
}

.site-title {
	font-size: 6rem;
	margin: 0;
	padding: 0;
	text-align: center;
	z-index: 10;
}

.sub-title {
	position: relative;
	text-align: center;
	line-height: 1.35;
	color: rgba(255, 255, 255, 0.8);
	letter-spacing: 0;
	font-weight: 400;
	max-width: 700px;
	margin: 1.5rem auto 1rem;
	z-index: 10;
}

.vid-player {
	margin: 0 0 2vmin;
}

.site-logo {
	max-height: 55px;
}

/* 4.1 Welcome Feed
/* ---------------------------------------------------------- */
.welcome-feed {
	position: relative;
	display: grid;
	grid-gap: 4vmin;
	grid-template-columns: 1fr 1fr 1fr;
	padding: 4vmin 0 1vmin;
}

@media (max-width: 1000px) {
	.welcome-feed {
		grid-template-columns: 1fr 1fr;
	}
}
@media (max-width: 700px) {
	.welcome-feed {
		grid-template-columns: 1fr;
		grid-gap: 40px;
	}
}

.welcome-card {
	position: relative;
	flex: 1 1 301px;
	display: flex;
	flex-direction: column;
	min-height: 220px;
	background-size: cover;
	word-break: break-word;
}

.welcome-card-media-link {
	position: relative;
	display: block;
	overflow: hidden;
	border-radius: 3px;
}

.welcome-card-media-link p {
	font-family: var(--main-font);
}

.welcome-card-image {
	width: 100%;
	height: 200px;
	background: var(--color-lightgrey) no-repeat center center;
	object-fit: cover;
}

.welcome-card-content-link {
	position: relative;
	display: block;
	color: var(--color-darkgrey);
}

.welcome-card-content-link:hover {
	text-decoration: none;
}

.welcome-card-header {
	margin: 20px 0 0;
}

.welcome-feed .no-image .welcome-card-content-link {
	padding: 0;
}

.no-image .welcome-card-header {
	margin-top: 0;
}

.welcome-card-primary-tag {
	margin: 0 0 0.2em;
	color: var(--vsl-accent-color);
	font-size: 1.2rem;
	font-weight: 500;
	letter-spacing: 0.2px;
	text-transform: uppercase;
}

.welcome-card-title {
	margin: 0 0 0.4em;
	font-size: 2.4rem;
	transition: color 0.2s ease-in-out;
}

.no-image .welcome-card-title {
	margin-top: 0;
}

.welcome-card-content {
	flex-grow: 1;
	display: flex;
	flex-direction: column;
}

.welcome-card-excerpt {
	max-width: 56em;
	color: var(--color-midgrey);
}

.welcome-card-excerpt p {
	margin-bottom: 1em;
	display: -webkit-box;
	overflow-y: hidden;
	-webkit-line-clamp: 3;
	-webkit-box-orient: vertical;
	word-break: break-word;
}

.welcome-card-meta {
	display: flex;
	align-items: center;
	padding: 0;
}

.site-header-content p {
	font-size: 1.75rem;
	letter-spacing: 0.5px;
	line-height: 1.35;
	margin: 0 2rem 2vmin 0.5vmin;
	opacity: 1;
	z-index: 10;
}

@media (max-width: 1000px) {
	.welcome-feed {
		grid-template-columns: 1fr;
	}
	.site-header-content p {
		margin-bottom: 3vmin;
	}
}
@media (max-width: 700px) {
	.welcome-feed {
		grid-template-columns: 1fr;
		grid-gap: 40px;
	}
}

@media (max-width: 600px) {
	.main-quote {
		font-size: 1.35rem;
		line-height: 1.3;
	}
	.site-title {
		font-size: 3.25rem;
	}
	.site-header-content p {
		font-size: 1.25rem;
		line-height: 1.35;
		margin-bottom: 4vmin;
	}
}

/* 4.1 Home header
/* ---------------------------------------------------------- */

.site-home-header {
	position: relative;
	z-index: 1000;
	overflow: hidden;
}

.site-header-content {
	padding: 4vmin 4vmin 6vmin;
	font-size: 2.5rem;
	font-weight: 400;
	color: #fff;
	background: var(--vsl-accent-color);
}

.form-wrapper {
	background-color: #ffffff;
	border-radius: 4px;
	padding: 1vmin 2rem 3vmin;
}

.form-heading {
	margin-top: 1rem;
	margin-bottom: 2rem;
	color: #201d1d;
	word-wrap: break-word !important;
	word-break: normal !important;
	font-size: 2rem;
	letter-spacing: 0em;
	line-height: 1.35;
	font-weight: 600;
	text-align: center;
}

.video-cont {
	margin: 0 auto;
	max-width: 890px;
	padding-bottom: 3.5rem;
	position: relative;
}

@media (max-width: 1000px) {
	.form-wrapper {
		max-width: 570px;
		margin: 0 auto;
		padding: 2vmin 5vmin 5vmin;
	}
}

/* 4.2 Form Controller
/* ---------------------------------------------------------- */
.fieldContainerFirst,
.fieldContainer {
	clear: both;
	position: relative;
}

.fieldContainerFirst > label,
.fieldContainer > label {
	position: absolute;
	display: inline-block;
	top: -12px;
	left: 7px;
	background: #fff;
	color: #444444;
	padding: 0 8px;
	font-size: 13px;
	z-index: 1;
}

#inf_field_FirstName,
#inf_field_Email,
#inf_field_Phone1 {
	padding: 5px 15px;
	color: #333;
	width: 100%;
	border: 1px solid #d8d8d8;
	border-radius: 4px;
	box-sizing: border-box;
	min-height: 56px;
	font-size: 1.5rem;
	font-weight: 500;
	background-color: #fff;
	margin-bottom: 20px;
	-webkit-appearance: none;
	transition: border 250ms ease;
}

#inf_field_FirstName:hover,
#inf_field_Email:hover,
#inf_field_Phone1:hover,
#inf_field_FirstName:focus,
#inf_field_Email:focus,
#inf_field_Phone1:focus {
	border-color: var(--color-apocalyptic-orange);
	border-width: 1px;
}

.submit-registration-btn {
	overflow: hidden;
	letter-spacing: 0em;
	line-height: 100%;
	max-width: none;
	height: auto;
}

.submit-registration-btn:hover,
.submit-registration-btn:focus,
.submit-registration-btn:active {
	color: #fff;
}

.cta-button {
	background: rgb(245, 121, 32);
	color: #ffffff;
	border: 1px solid rgba(0, 0, 0, 0.1);
	border-radius: 4px;
	/* box-shadow: 5px 5px #414141; */
	display: block;
	font-size: 3.25rem;
	font-weight: 700;
	margin: 0 auto;
	outline: 0;
	padding: 2rem 5px;
	text-decoration: none;
	text-align: center;
	text-transform: none;
	width: 100%;
	max-width: 685px;
	transition: all 120ms ease 0s;
}

.cta-button:hover {
	background-color: #438e43 !important;
	color: var(--arrow-dark-fill-color);
	/* box-shadow: 0 0 #b7b7b7; */
	outline: 0;
}

.cta-button #light-arrow,
.cta-button #dark-arrow {
	transition: all 1s ease 100ms;
}

.cta-button #dark-arrow {
	opacity: 0;
	transform: translateX(-120%);
}
.cta-button:hover #light-arrow {
	opacity: 0;
	transform: translateX(35%);
}
.cta-button:hover #dark-arrow {
	opacity: 1;
	transform: translateX(0%);
}

.cta-button > svg,
.cta-button > div {
	display: inline;
	vertical-align: middle;
}

#cb-button {
	visibility: hidden;
}

/* 4.3 Author
/* ---------------------------------------------------------- */
.site-author-cover {
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.site-author-content {
	position: relative;
	z-index: 100;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	padding: 6vw 3vw;
	min-height: 200px;
}

.author-feed {
	position: relative;
	display: grid;
	grid-gap: 4vmin;
	grid-template-columns: 1fr 1fr 1fr;
	padding: 4vmin 0 1vmin;
}

@media (max-width: 1000px) {
	.author-feed {
		grid-template-columns: 1fr 1fr;
	}
}
@media (max-width: 700px) {
	.author-feed {
		grid-template-columns: 1fr;
		grid-gap: 40px;
	}
}

.author-card {
	position: relative;
	flex: 1 1 301px;
	display: flex;
	flex-direction: column;
	min-height: 220px;
	background-size: cover;
	word-break: break-word;
}

.author-card-media-link {
	position: relative;
	display: block;
	overflow: hidden;
	border-radius: 3px;
}

.author-card-media-link p {
	font-family: var(--main-font);
}

.author-card-image {
	width: 100%;
	height: 200px;
	background: var(--color-lightgrey) no-repeat center center;
	object-fit: cover;
}

.author-card-content-link {
	position: relative;
	display: block;
	color: var(--color-darkgrey);
}

.author-card-content-link:hover {
	text-decoration: none;
}

.author-card-header {
	margin: 20px 0 0;
}

.author-feed .no-image .author-card-content-link {
	padding: 0;
}

.no-image .author-card-header {
	margin-top: 0;
}

.author-card-primary-tag {
	margin: 0 0 0.2em;
	color: var(--vsl-accent-color);
	font-size: 1.2rem;
	font-weight: 500;
	letter-spacing: 0.2px;
	text-transform: uppercase;
}

.author-card-title {
	margin: 0 0 0.4em;
	font-size: 2.4rem;
	transition: color 0.2s ease-in-out;
}

.no-image .author-card-title {
	margin-top: 0;
}

.author-card-content {
	color: #fff;
	display: flex;
	flex-grow: 1;
	flex-direction: column;
	font-family: var(--second-font);
	font-size: 2.5rem;
	line-height: 1.35;
}

.author-card-excerpt {
	max-width: 56em;
	color: var(--color-midgrey);
}

.author-card-excerpt p {
	margin-bottom: 1em;
	display: -webkit-box;
	overflow-y: hidden;
	-webkit-line-clamp: 3;
	-webkit-box-orient: vertical;
	word-break: break-word;
}

.author-card-meta {
	display: flex;
	align-items: center;
	padding: 0;
}

.site-header-content p {
	font-size: 1.75rem;
	letter-spacing: 0.5px;
	line-height: 1.35;
	margin: 0 2rem 2vmin 0.5vmin;
	opacity: 1;
	z-index: 10;
}

@media (max-width: 1000px) {
	.author-feed {
		grid-template-columns: 1fr;
		max-width: 85vw;
		margin: 0 auto 3rem;
	}
	.author-card-media-link {
		max-width: 30vw;
		margin: 0 auto 2rem;
	}
	.author-card-content {
		font-size: 1.75rem;
	}
	.cta-button {
		max-width: 85vw;
	}
	.site-header-content p {
		margin-bottom: 3vmin;
	}
}
@media (max-width: 700px) {
	.author-feed {
		grid-template-columns: 1fr;
		grid-gap: 40px;
	}
}

@media (max-width: 600px) {
	.main-quote {
		font-size: 1.35rem;
		line-height: 1.3;
	}
	.site-title {
		font-size: 3.75rem;
	}
	.site-header-content p {
		font-size: 1.45rem;
		letter-spacing: 0;
		line-height: 1.35;
		margin-bottom: 4vmin;
	}
	.cta-button {
		font-size: 2.5rem;
	}
}

/* 5. Site Navigation
/* ---------------------------------------------------------- */

.gh-head {
	padding: 1vmin 4vmin;
	font-size: 1.6rem;
	line-height: 1.3em;
	color: #fff;
	background: var(--vsl-accent-color);
}

.gh-head a {
	color: inherit;
	text-decoration: none;
}

.gh-head-inner {
	display: grid;
	grid-gap: 2.5vmin;
	grid-template-columns: auto auto 1fr;
	grid-auto-flow: row dense;
}

/* 6. Post Feed
/* ---------------------------------------------------------- */

.post-feed {
	display: grid;
	justify-items: center;
	grid-gap: 4vmin;
	grid-template-columns: 1fr;
	padding: 2rem 0 5rem;
	position: relative;
}

@media (max-width: 1000px) {
	.post-feed {
		grid-template-columns: 1fr;
	}
}
@media (max-width: 700px) {
	.post-feed {
		grid-template-columns: 1fr;
		grid-gap: 40px;
	}
}

.post-card {
	position: relative;
	flex: 1 1 301px;
	display: flex;
	flex-direction: column;
	min-height: 220px;
	background-size: cover;
	word-break: break-word;
}

@media (min-width: 900px) {
	.post-card {
		min-width: 896px;
	}
}

.post-card-image-link {
	position: relative;
	display: block;
	overflow: hidden;
	border-radius: 3px;
}

.post-card-image {
	width: 100%;
	height: 200px;
	background: var(--color-lightgrey) no-repeat center center;

	object-fit: cover;
}

.post-card-content-link {
	position: relative;
	display: block;
	color: var(--color-darkgrey);
}

.post-card-content-link:hover {
	text-decoration: none;
}

.post-card-header {
	margin: 20px 0 0;
}

.post-feed .no-image .post-card-content-link {
	padding: 0;
}

.no-image .post-card-header {
	margin-top: 0;
}

.post-card-primary-tag {
	margin: 0 0 0.4em;
	color: var(--vsl-accent-color);
	font-size: 1.2rem;
	font-weight: 500;
	letter-spacing: 0.2px;
	text-transform: uppercase;
}

.post-card-title {
	margin: 0 0 3rem;
	font-size: 5rem;
	transition: color 0.2s ease-in-out;
}

.no-image .post-card-title {
	margin-top: 0;
}

.post-card-content {
	flex-grow: 1;
	display: flex;
	flex-direction: column;
}

.post-card-excerpt {
	max-width: 60em;
	color: var(--color-midgrey);
}

.post-card-excerpt p {
	margin-bottom: 1em;
	display: -webkit-box;
	overflow-y: hidden;
	-webkit-line-clamp: 3;
	-webkit-box-orient: vertical;
	word-break: break-word;
}

.post-card-meta {
	display: flex;
	align-items: center;
	padding: 0;
}

.author-profile-image,
.avatar-wrapper {
	display: block;
	width: 100%;
	height: 100%;
	background: var(--color-lightgrey);
	border-radius: 100%;

	object-fit: cover;
}

.post-card-meta .profile-image-wrapper,
.post-card-meta .avatar-wrapper {
	position: relative;
}

.author-list {
	display: flex;
	flex-wrap: wrap;
	margin: 0 0 0 4px;
	padding: 0;
	list-style: none;
}

.author-list-item {
	position: relative;
	flex-shrink: 0;
	margin: 0;
	padding: 0;
}

.static-avatar {
	display: block;
	overflow: hidden;
	margin: 0 0 0 -6px;
	width: 36px;
	height: 36px;
	border-radius: 100%;
	box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.2);
}

.post-card-byline-content {
	flex: 1 1 50%;
	display: flex;
	flex-direction: column;
	margin: 0 0 0 8px;
	color: var(--color-midgrey);
	font-size: 1.4rem;
	line-height: 1.2em;
	font-weight: 400;
}

.post-card-byline-content span {
	margin: 0;
}

.post-card-byline-content a {
	color: var(--color-darkgrey);
	font-weight: 600;
}

.post-card-byline-date {
	font-size: 1.3rem;
	line-height: 1.5em;
}

.post-card-byline-date .bull {
	display: inline-block;
	margin: 0 2px;
	opacity: 0.6;
}

.single-author-byline {
	display: flex;
	flex-direction: column;
	margin-left: 5px;
	color: var(--color-midgrey);
	font-size: 1.3rem;
	line-height: 1.4em;
	font-weight: 500;
}

.single-author {
	display: flex;
	align-items: center;
}

.single-author .static-avatar {
	margin-left: -2px;
}

.single-author-name {
	display: inline-block;
}

ul#reveal-points {
	font-size: 1.2rem;
	margin-bottom: 4.5rem;
}

ul#reveal-points li {
	color: var(--color-darkgrey);
	list-style: none;
	line-height: 1.6;
	font-family: var(--main-font);
	font-size: 2.25rem;
	padding-left: 3rem;
	background-image: url('../img/bullets.svg');
	background-repeat: no-repeat;
	background-position: 0px 10px;
}

ul#reveal-points li:nth-child(odd) {
	font-weight: 700;
}

/* Special Styling for home page grid (below):

The first post in the list is styled to be bigger than the others and take over
the full width of the grid to give it more emphasis. Wrapped in a media query to
make sure this only happens on large viewports / desktop-ish devices.

 */

@media (min-width: 1001px) {
	.welcome-card-large {
		grid-column: 1 / span 3;
		display: grid;
		grid-gap: 4vmin;
		grid-template-columns: 1fr 1fr 1fr;
		min-height: 280px;
		border-top: 0;
	}

	.author-card-large {
		border-top: 0;
		grid-column: 1 / span 3;
		display: grid;
		grid-gap: 4vmin;
		grid-template-columns: 1fr 2fr;
		justify-items: center;
		min-height: 280px;
		margin-bottom: 3rem;
	}

	.welcome-card-large:not(.no-image) .welcome-card-header,
	.author-card-large:not(.no-image) .author-card-header {
		margin-top: 0;
	}

	.welcome-card-large .welcome-card-media-link {
		position: relative;
		grid-column: 1 / span 2;
		margin-bottom: 0;
		min-height: 380px;
	}

	.author-card-large .author-card-media-link {
		position: relative;
		grid-column: 1 / 1;
		margin-bottom: 0;
		max-width: 29rem;
	}

	.welcome-card-large .welcome-card-image,
	.author-card-large .author-card-image {
		position: absolute;
		width: 100%;
		height: 100%;
	}

	.welcome-card-large .welcome-card-content,
	.author-card-large .author-card-content {
		justify-content: start;
	}

	.welcome-card-large .welcome-card-title,
	.author-card-large .author-card-title {
		margin-top: 0;
		font-size: 3.2rem;
	}

	.welcome-card-large .welcome-card-excerpt p,
	.author-card-large .author-card-excerpt p {
		margin-bottom: 1.5em;
		font-size: 1.7rem;
		line-height: 1.55em;
		-webkit-line-clamp: 8;
	}

	.post-card-large {
		grid-column: 1 / span 3;
		display: grid;
		grid-gap: 4vmin;
		grid-template-columns: 1fr 1fr 1fr;
		min-height: 280px;
		border-top: 0;
	}

	.post-card-large:not(.no-image) .post-card-header {
		margin-top: 0;
	}

	.post-card-large .post-card-image-link {
		position: relative;
		grid-column: 1 / span 2;
		margin-bottom: 0;
		min-height: 380px;
	}

	.post-card-large .post-card-image {
		position: absolute;
		width: 100%;
		height: 100%;
	}

	.post-card-large .post-card-content {
		justify-content: center;
	}

	.post-card-large .post-card-title {
		margin-top: 0;
		font-size: 3.2rem;
	}

	.post-card-large .post-card-excerpt p {
		margin-bottom: 1.5em;
		font-size: 1.7rem;
		line-height: 1.55em;
		-webkit-line-clamp: 8;
	}
}

@media (max-width: 500px) {
	.post-card-title {
		font-size: 4rem;
	}

	.post-card-excerpt {
		font-size: 1.6rem;
	}

	ul#reveal-points li {
		font-size: 1.7rem;
	}
}

/* 6.1 Trusted Block
/* ---------------------------------------------------------- */
.trusted-icons {
	position: relative;
	display: grid;
	grid-gap: 6vmin 12rem;
	grid-template-columns: repeat(6, minmax(45px, 99px));
	padding: 4vmin 0;
	margin-bottom: 2rem;
	justify-content: center;
}

@media (max-width: 1200px) {
	.trusted-icons {
		grid-template-columns: repeat(auto-fill, minmax(99px, 1fr));
		grid-gap: 6vmin 12vmin;
	}
}

/* 7. Single Post
/* ---------------------------------------------------------- */

.article {
	padding: 8vmin 0;
	word-break: break-word;
}

.article-header {
	padding: 0 0 6vmin 0;
}

.article-tag {
	display: flex;
	justify-content: flex-start;
	align-items: center;
	margin: 0 0 0.5rem;
	color: var(--color-midgrey);
	font-size: 1.3rem;
	line-height: 1.4em;
	letter-spacing: 0.02em;
	font-weight: 600;
	text-transform: uppercase;
}

.article-tag a {
	color: var(--vsl-accent-color);
}

.article-title {
	color: var(--color-darkgrey);
}

.article-excerpt {
	margin: 0 0 1rem;
	font-size: 2rem;
	line-height: 1.4em;
	opacity: 0.6;
}

.gh-canvas .article-image {
	grid-column: wide-start / wide-end;
	width: 100%;
	margin: 6vmin 0 0;
}

.gh-canvas .article-image img {
	display: block;
	margin-left: auto;
	margin-right: auto;
	width: 100%;
}

@media (max-width: 600px) {
	.article-excerpt {
		font-size: 1.8rem;
	}
}

/* 8. Author Template
/* ---------------------------------------------------------- */

.author-template .posts {
	position: relative;
	height: 100%;
	display: grid;
	grid-template-columns: 200px 1fr 1fr;
	grid-gap: 4vmin;
}

.author-template .posts .post-feed {
	grid-column: 2 / 4;
	grid-template-columns: 1fr 1fr;
}

.author-profile {
	padding: 4vmin 0;
}

.author-profile-content {
	height: auto;
	position: sticky;
	top: 4vmin;
	font-size: 1.4rem;
	line-height: 1.4em;
}

.author-profile-pic {
	display: block;
	width: 150px;
	height: 150px;
	object-fit: cover;
	margin: 0 0 2rem;
	background: var(--color-lightgrey);
	border-radius: 50%;
}

.author-profile h1 {
	margin: 0 0 0.3em;
	font-size: 2rem;
}

.author-profile p {
	margin: 0 0 1.5em;
	color: var(--color-midgrey);
}

.author-profile-location {
	margin: 0 0 1.5em;
	font-weight: 700;
}

.author-profile-social-link {
	display: block;
	padding: 0 0 5px;
	font-size: 1.3rem;
	color: var(--color-midgrey);
	text-overflow: ellipsis;
	overflow: hidden;
	max-width: 100%;
	white-space: nowrap;
}

.author-profile-social-link:hover {
	color: var(--color-darkgrey);
}

@media (max-width: 900px) {
	.author-template .posts .post-feed {
		grid-template-columns: 1fr;
	}
}

@media (max-width: 650px) {
	.author-template .posts {
		grid-template-columns: 1fr;
		grid-gap: 0;
	}
	.author-template .posts .post-feed {
		grid-column: 1 / auto;
	}
	.author-profile {
		padding-right: 0;
	}
	.author-profile-content {
		display: flex;
		flex-direction: column;
		align-items: center;
		text-align: center;
	}
}

/* 8. Tag Template
/* ---------------------------------------------------------- */

.tag-template .post-card-large .post-card-image-link {
	grid-column: 2 / span 2;
	order: 2;
}

.tag-template .post-card-large .post-card-content {
	order: 1;
}

/* 9. Error Template
/* ---------------------------------------------------------- */

.error-content {
	padding: 14vw 4vw 6vw;
}

.error-message {
	padding-bottom: 10vw;
	text-align: center;
}

.error-code {
	margin: 0;
	color: var(--vsl-accent-color);
	font-size: 12vw;
	line-height: 1em;
	letter-spacing: -5px;
}

.error-description {
	margin: 0;
	color: var(--color-midgrey);
	font-size: 3.2rem;
	line-height: 1.3em;
	font-weight: 400;
}

.error-link {
	display: inline-block;
	margin-top: 5px;
}

@media (min-width: 940px) {
	.error-content .post-card {
		margin-bottom: 0;
		padding-bottom: 0;
		border-bottom: none;
	}
}

@media (max-width: 800px) {
	.error-content {
		padding-top: 24vw;
	}
	.error-code {
		font-size: 11.2rem;
	}
	.error-message {
		padding-bottom: 16vw;
	}
	.error-description {
		margin: 5px 0 0 0;
		font-size: 1.8rem;
	}
}

@media (max-width: 500px) {
	.error-content {
		padding-top: 28vw;
	}
	.error-message {
		padding-bottom: 14vw;
	}
}

/* 11. Site Footer
/* ---------------------------------------------------------- */

.site-footer {
	position: relative;
	margin: 0;
	padding: 5vmin 4vmin;
	color: #212121;
	background: var(--color-wash);
}

.site-footer .inner {
	display: grid;
	grid-gap: 40px;
	grid-template-columns: auto;
	font-size: 1.5rem;
	justify-content: center;
}

.site-footer .copyright a {
	color: #fff;
	letter-spacing: -0.015em;
	font-weight: 500;
}

.site-footer a {
	color: rgba(255, 255, 255, 0.7);
}

.site-footer a:hover {
	color: rgba(255, 255, 255, 1);
	text-decoration: none;
}

.site-footer-nav ul {
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
	margin: 0 0 20px;
	padding: 0;
	list-style: none;
}

.site-footer-nav li {
	display: inline-flex;
	align-items: center;
	padding: 0;
	margin: 0;
	line-height: 2em;
}

.site-footer-nav a {
	position: relative;
	display: inline-flex;
	align-items: center;
	margin-left: 10px;
}

.site-footer-nav li:not(:first-child) a:before {
	content: '';
	display: block;
	width: 2px;
	height: 2px;
	margin: 0 10px 0 0;
	background: #fff;
	border-radius: 100%;
}

@media (max-width: 800px) {
	.site-footer .inner {
		max-width: 500px;
		grid-template-columns: 1fr;
		grid-gap: 0;
		text-align: center;
	}
	.site-footer .copyright,
	.site-footer .copyright a {
		font-size: 1.2rem;
	}
}

/* We need to set the widths used on floated items back to auto, and remove the bottom margin as when we have grid we have gaps. */
@supports (display: grid) {
}
