/* Nav Overides
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ */
nav, nav h1 {
		color: white;
	}
nav a, nav a:hover, nav a:visited, nav a:active {
		color: white;
	}
@media (max-width: 600px) {
	nav {
		width: 100%;
		box-sizing: border-box;
		-webkit-box-sizing: border-box;
		-moz-box-sizing: border-box;
		padding-left: 12px;
		padding-right: 12px;
	}
}
/* Support-Extra Overrides
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ */
div.support-extra {
	margin-bottom: 24px;
}

/*
▲▼▲▼▲▼▲▼▲▼▲▼▲▼▲▼▲▼▲▼▲▼▲▼▲▼▲▼▲▼▲▼▲▼▲▼▲▼▲▼▲▼▲▼▲▼▲▼▲▼▲▼▲▼▲▼▲
Masthead
■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■ */
.masthead {
	position: relative;
	display: flex;
	flex-direction: column;
	justify-content: space-between; 
	align-items: center;
	width: 100%;
	height: clamp(450px, 57vh, 600px);
	background-color: #D3E0EA;
	overflow: hidden;
}
.masthead .background-image {
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
}
.masthead .background-image img {
	object-fit: cover;
	object-position: bottom;
}
.masthead .hero-title-container {
	position: absolute;
	top: clamp(150px, 26%, 200px);
}
.masthead .hero-title {
	text-align: center;
	font-family: 'Baskerville', 'Libre Baskerville';
	font-weight: bold;
	color: #2647CB;
	letter-spacing: -2px;
	
	text-shadow:
	-1.5px -1.5px 0 #FDBD4A,
	0 -1.5px 0 #FDBD4A,
	1.5px -1.5px 0 #FDBD4A,
	1.5px 0 0 #FDBD4A,
	1.5px 1.5px 0 #FDBD4A,
	0 1.5px 0 #FDBD4A,
	-1.5px 1.5px 0 #FDBD4A,
	-1.5px 0 0 #FDBD4A,
	0px 0px 8px #3b3beda5;
	
}
h2.hero-title {
	font-size: clamp(9px, 12vw, 66px);
	animation: heroTitleMain 1.25s;
	transform-origin: center center;
}
h1.hero-title {
	font-size: clamp(10px, 17vw, 85px);
	animation: heroTitleSub 2.25s;
	transform-origin: center center;
}

/* Wait until images load to animate */
.loading * {
  animation-play-state: paused !important;
}
@keyframes heroTitleMain {
	from {
		opacity: 5%;
		transform: translateY(20px)
	}
	to {
		opacity: 100%;
		transform: translateY(0)
	}
}
@keyframes heroTitleSub {
	from {
		opacity: 5%;
		transform: scale(.7)
	}
	to {
		opacity: 100%;
		transform: scale(1)
	}
}

/* Clouds
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ */
.cloud-left {
	position: absolute;
	bottom: 0px;
	left: 0;
	width: 70%;
	/* width: calc(950px - 30%); */
	/* min-width: 65%; */
	animation: cloudLeft 2.0s;
	transform: translateX(-15%);
}
.cloud-right {
	position: absolute;
	bottom: 0px;
	right: 0;
	width: 75%;
	animation: cloudRight 2.0s;
	transform: translateX(15%);
}
.masthead img {
	display: block;
	width: 100%;
	height: 100%;
}
@keyframes cloudLeft {
	from {
		transform: translateX(0);
	}
	to {
		transform: translateX(-15%);
	}
}
@keyframes cloudRight {
	from {
		transform: translateX(0);
	}
	to {
		transform: translateX(15%);
	}
}
@media (max-width: 860px) {
	.cloud-left {
		width: 75%;
		transform: translateX(-10%);
	}
	.cloud-right {
		width: 80%;
		transform: translateX(15%);
	}
	@keyframes cloudLeft {
		from {
			transform: translateX(0);
		}
		to {
			transform: translateX(-10%);
		}
	}
}
@media (max-width: 680px) {
	.cloud-left {
		width: 130%;
		transform: translateX(-30%);
	}
	.cloud-right {
		width: 130%;
		transform: translateX(46%);
	}
	@keyframes cloudLeft {
		from {
			transform: translateX(-15%);
		}
		to {
			transform: translateX(-30%);
		}
	}
	@keyframes cloudRight {
		from {
			transform: translateX(20%);
		}
		to {
			transform: translateX(46%);
		}
	}
}

/*
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
Feature
■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■ */
.feature {
	background-color: #D3E0EA;
	padding: 35px 0;	
}

/* Feature - Welcome
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ */
.feature .welcome-message {
	font-family: 'Baskerville', 'Libre Baskerville';
	display: flex;
	gap: 25px;
	flex-wrap: wrap;
}
.welcome-photo {
	width: 120px;
	height: 120px;
	border-radius: 90px;
	border: 2px solid #276aff7f;
	box-shadow: 0 0 10px #4096ffb2;
	flex-shrink: 0;
}
.welcome-photo img {
	width: 100%;
	height: 100%;
	border-radius: 90px;
	object-fit: cover;
}
.welcome-title {
	height: available;
	flex-shrink: 1;
	/* border: 1px solid red; */
}
.welcome-title h1 {
	color: #2561CF;
	font-size: 36px;
	margin-bottom: 12px;
}
.welcome-title h2 {
	color: #273B60;
	font-size: 25px;
	align-self: flex-end;
}
.welcome-content {
	background-color: #ffffff63;
	border-radius: 11px;
	border: 2px solid #14407a19;
	padding: 9px 15px;
	box-sizing: border-box;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	flex-grow: 1;
	flex-shrink: 1;
}
.welcome-content p {
	color: #273B60;
	font-size: 21px;
	margin-bottom: 5px;
	/* font-weight: 600; */
}
#welcome-content-color {
	color: #DB9825;
	font-weight: bold;
	margin-bottom: 19px;
}
#welcome-content-links a {
	color: #273B60;
	margin-bottom: 0;
	font-family: 'Inter';
	font-size: 18px;
	font-weight: 500;
	text-decoration: none;
}

#welcome-content-links a:visited,
#welcome-content-links a:active {
	color: #273B60;
}
#welcome-content-links a:hover {
	color: #457ac0;
}
@media (max-width: 650px) {
	.welcome-message {
		flex-direction: column;
	}
	.welcome-photo {
		width: 90px;
		height: 90px;
		margin: auto;
		order: 2;
	}
	.welcome-title {
		order: 1;
	}
	.welcome-content {
		order: 3;
	}
}

.welcome-video-overlay {
	display: none;
	
	position: fixed;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	top: 0;
	left: 0;
	width: 100vw;
	height: 100vh;
	z-index: 5;
	background-color: #000000cc;
}
.welcome-video-player {
	width: 95%;
	max-width: 900px;
	aspect-ratio: 16 / 9;
	padding: 0 15px;
	box-sizing: border-box;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	
}
.welcome-video-overlay iframe {
	width: 100%;
	height: 100%;
}
.welcome-video-close {
	color: white;
	font-family: 'Inter';
	font-size: 21px;
	display: flex;
	gap: 9px;
	margin-bottom: 18px;
}
/* Feature - Latest Post
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ */
.latest-post {
	border-top: 1px dashed #2561cf47;
	border-bottom: 1px dashed #2561cf47;
	padding-top: 8px;
	padding-bottom: 8px;
}
.latest-post h1 {
	font-family: 'Baskerville', 'Libre Baskerville';
	font-size: 24px;
	color: #273B60;
	margin-bottom: 6px;
}
.latest-post a,
.latest-post a:hover,
.latest-post a:visited,
.latest-post a:active {
	text-decoration: none;
	color: #2561CF;
}
.latest-post h2 {
	margin-bottom: 3px;
	/* font-family: 'Baskerville', 'Libre Baskerville'; */
}
.latest-post p {
	margin-bottom: 4px;
	font-family: 'Raleway', sans-serif;
	color: #273B60;
}
.latest-post time {
	color: #758093;
}

/* Email CTA (below latest post)
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ */
.feature .email-cta {
	color: #273B60;
	font-family: 'Baskerville', 'Libre Baskerville';
	font-weight: normal;
	text-align: center;
	margin-top: 19px;
	cursor: pointer;
	text-decoration: underline;
	font-size: 1.25em;
}
.feature .email-cta em {
	font-weight: bold;
	font-style: normal;
}

/*
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
Library
■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■ */
.library {
	background-image: linear-gradient(#D3E0EA, #97D5FF, #F8F7FB);
	padding: 35px 0;
	color: #273B60;
	font-family: 'Baskerville', 'Libre Baskerville';
}
.library p {
	font-size: 20px;
	color: #2561CF;
}

.library .short-list-2 {
	margin: 26px 0 18px;
	width: 100%;
	display: flex;
	flex-direction: row;
	height: 120px;
}
.library .short-list-2 div.category {
	height: fit-content;
	font-size: 21px;
	padding: 20px 9px;
	background-color: #ffffff63;
	border-radius: 13px;
	border: 2px solid #14407a19;
	text-align: center;
	min-width: 12ch;
	width: calc(20% - 6px);
	margin: 0 3px;
	transition: 150ms ease-in-out;
}
.library .short-list-2 div.category a {
	text-decoration: none;
}
.library .short-list-2 p span {
	color: rgba(39, 92, 126, 0.8);
	background-color: rgba(176, 176, 176, 0.6);
	border-radius: 10px;
	padding: 2px 4px;
	margin-left: 2px;
}
.library .short-list-2 ul {
	display: none;
	/* position: absolute; */
	font-size: 18px;
	margin-top: 18px;
	transform: scale(1,0);
	transform-origin: top;
	transition: 150ms ease-in-out;
}
.library .short-list-2 li {
	padding: 10px;
	margin: 0;
	opacity: 0;
	transition: opacity 100ms ease-in-out 125ms;
}
.library .short-list-2 div.category:hover {
	transform: scale(105%);
	background-color: #ddf0fc;
	z-index: 2;
}
.library .short-list-2 div.category:hover ul {
	display: block;
	/* position: relative; */
	transform: scale(1,1);
	
}
.library .short-list-2 div.category:hover li {
	opacity: 1;
}

@media (max-width: 860px) {
	.library .short-list-2 .prophecy,
	.library .short-list-2 .q-and-a {
		display: none;
	}
	.library .short-list-2 div.category {
		width: calc(33% - 6px);
	}
}
@media (max-width: 600px) {
	.library .short-list-2 {
		display: none;
	}
}



.library .tags {
	/* font-family: 'Inter'; */
}
.library .tags .sub-category {
	font-family: 'Inter';
	font-size: 16px;
	margin-top: 2px;
}
.tags-list {
	/* height: 95px; */
	width: 100%;
	display: flex;
	flex-direction: row;
	gap: 20px;
	margin-top: 17px;
	overflow: scroll;
}
.tags {
	height: 100px;
	width: 100%;
	display: flex;
	flex-direction: row;
	gap: 20px;
	margin-top: 17px;
}
.tags a {
	background-color: #ffffff63;
	border-radius: 13px;
	border: 2px solid #14407a19;
	padding: 15px 22px;
	box-sizing: border-box;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	max-width: 300px;
	min-width: 170px;
	height: 80px;
	text-align: center;
	font-size: 22px;
}
.tag-item {
	background-color: #ffffff63;
	border-radius: 11px;
	border: 2px solid #14407a19;
	padding: 15px 22px;
	box-sizing: border-box;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	max-width: 300px;
	min-width: 170px;
	text-align: center;
	font-size: 22px;
}
.library a,
.library a:visited {
	color: #2561CF;
}
.library a:hover {
	color: #273B60;
}

a.library-link {
	margin-top: 13px;
	text-decoration: none;
	display: flex;
	gap: 9px;
}
a.library-link:hover {
	text-decoration: underline;
}
.library-link p {
	font-family: 'Avenir', 'Avenir Next', 'HelveticaNeue-Light', 'Helvetica Neue', Helvetica, 'Raleway';
	font-weight: 500;
}


/*
▲▼▲▼▲▼▲▼▲▼▲▼▲▼▲▼▲▼▲▼▲▼▲▼▲▼▲▼▲▼▲▼▲▼▲▼▲▼▲▼▲▼▲▼▲▼▲▼▲▼▲▼▲▼▲▼▲
List of Posts
■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■ */
.wrapper {
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	gap: 18px;
}
section.posts {
	flex: 1 1 60%;
}
section.sign-up {
	flex: 1 1 35%;
	min-width: 280px;
}

.section-head {
	display: flex;
	justify-content: space-between;
	margin-bottom: 13px;
}
.section-head div {
	height: 2px;
	flex: 1 1 0;
	align-self: center;
	background-color: #273b6099;
	border-radius: 2px;
	margin-left: 13px;
}
.section-head h3 {
	color: #273B60;
	font-size: 18px;
}

ul {
	list-style-type: none;
}
li {
	margin-bottom: 30px;
}
.posts a {
	text-decoration: none;
}
.wrapper a, main a:visited, main a:active {
	color: #404040;
}
.posts a:hover h2 {
	color: #2975d8;
}
.wrapper h2 {
	color: #0c4fa6;
	line-height: 1.2;
	margin-bottom: 5px;
	font-weight: 600;
}
.wrapper p {
	color: #2a2a2a;
	font-family: 'Raleway', sans-serif;
	margin-bottom: 6px;
}
.wrapper time {
	color: #758093;
	font-weight: 500;
}
.posts .library-link,
.posts .library-link a:visited {
	text-align: left;
	color: #2561CF;
}
.posts .library-link a:hover {
	color: #3775e6;
}

/* Sign Up for Email
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ */
.sign-up div {
	position: -webkit-sticky;
	position: sticky;
	top: 9px;
	
	margin-top: 9px;
	background-color: #E0E8EE;
	border-top: 2px solid #9ab6ca;
	border-bottom: 2px solid #9ab6ca;
	width: 100%;
	padding: 5px 8px;
	box-sizing: border-box;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
}
.sign-up h3 {
	margin-bottom: 6px;
	margin-top: 8px;
	font-family: 'Baskerville', 'Libre Baskerville';
}
.sign-up button {
	cursor: pointer;
	width: 100%;
	padding: 8px 0;
	background-color: #E0E8EE;
	color: #273B60;
	font-family: 'Baskerville', 'Libre Baskerville';
	border-radius: 5px;
	font-size: 24px;
	text-decoration: underline;
	font-weight: bold;
	text-align: left;
}