:root
{
	--ginger-turquoise: #0093AE;
	--ginger-blue: #019CB8;
	--ginger-dark: #004C5A;
	--ginger-pale: #E6FBFF;
	--ginger-accent: #E21E79;
	--ginger-gray: #7F7F7F;
	--ginger-light-gray: #D1CFCD;
	--page-width: 1200px;
}

html
{
	scroll-behavior: smooth;
}

body
{
	min-width: 320px;
	background-color: #FFFFFF;
	color: var(--ginger-blue);
	font-family: source-sans-pro, "Source Sans Pro", "Helvetica Neue", Arial, sans-serif;
	font-size: 18px;
	line-height: 1.5;
}

strong
{
	font-weight: 600;
}

.skip-link
{
	position: fixed;
	top: 10px;
	left: 10px;
	z-index: 1000;
	padding: 10px 16px;
	background-color: #FFFFFF;
	color: var(--ginger-dark);
	font-style: normal;
	font-weight: 600;
	transform: translateY(-150%);
}

.skip-link:focus
{
	transform: translateY(0);
}

.site-header
{
	position: fixed;
	top: 0;
	left: 0;
	z-index: 100;
	width: 100%;
	pointer-events: none;
}

.header-shell
{
	display: grid;
	grid-template-columns: 302px 1fr;
	width: min(var(--page-width), 100%);
	height: 100px;
	margin: 0 auto;
	background-color: var(--ginger-turquoise);
	pointer-events: auto;
}

.brand
{
	display: block;
	align-self: start;
	width: 252px;
	height: 71px;
	margin: 15px 0 0 50px;
	font-style: normal;
}

.brand img
{
	display: block;
	width: 252px;
	height: 71px;
	opacity: 0.7;
}

.header-content
{
	min-width: 0;
	padding: 16px 50px 0 20px;
}

.tagline
{
	min-height: 37px;
	margin: 0;
	border-bottom: 1px solid rgba(255,255,255,0.7);
	color: rgba(255,255,255,0.72);
	font-size: 20px;
	font-weight: 400;
	line-height: 28px;
	text-align: center;
}

.primary-nav
{
	display: flex;
	align-items: center;
	justify-content: flex-end;
	min-height: 40px;
	white-space: nowrap;
}

.primary-nav a
{
	display: block;
	padding: 7px 9px 8px;
	color: #FFFFFF;
	font-size: 18px;
	font-style: normal;
	font-weight: 600;
	letter-spacing: 0.1px;
	line-height: 22px;
	text-align: center;
	text-transform: uppercase;
}

.primary-nav a:hover,
.primary-nav a:focus-visible
{
	color: var(--ginger-dark);
}

.primary-nav .is-current
{
	background-color: rgba(0,76,90,0.22);
	color: #FFFFFF;
}

.page-shell
{
	width: min(var(--page-width), 100%);
	margin: 100px auto 0;
	background-color: #FFFFFF;
}

.news-intro
{
	padding: 58px 70px 62px;
	background-color: var(--ginger-pale);
}

.section-label
{
	margin: 0 0 4px;
	color: var(--ginger-blue);
	font-size: 13px;
	font-weight: 600;
	letter-spacing: 2.5px;
	line-height: 20px;
	text-transform: uppercase;
}

.news-intro h1
{
	margin: 0;
	color: var(--ginger-turquoise);
	font-size: 52px;
	font-weight: 300;
	letter-spacing: 1px;
	line-height: 1.08;
}

.intro-copy
{
	max-width: 790px;
	margin: 15px 0 0;
	color: var(--ginger-blue);
	font-size: 24px;
	font-weight: 300;
	line-height: 1.35;
}

.posts
{
	display: block;
}

.post
{
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(0, 1.13fr);
	gap: 52px;
	align-items: start;
	padding: 58px 70px 62px;
	background-color: #FFFFFF;
}

.post:nth-child(even)
{
	background-color: rgba(169,241,254,0.3);
}

.post:nth-child(even) .post-media
{
	order: 2;
}

.post:nth-child(even) .post-content
{
	order: 1;
}

.post-media
{
	height: 328px;
	margin: 0;
	overflow: hidden;
	background-color: var(--ginger-light-gray);
}

.post-media img
{
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.post-media-portrait img
{
	object-position: center 24%;
}

.post-content
{
	padding-top: 2px;
}

.post-meta
{
	display: flex;
	flex-wrap: wrap;
	gap: 7px 18px;
	margin: 0 0 12px;
	color: var(--ginger-gray);
	font-size: 13px;
	font-weight: 400;
	letter-spacing: 1.4px;
	line-height: 20px;
	text-transform: uppercase;
}

.post-meta span
{
	position: relative;
	padding-left: 19px;
}

.post-meta span::before
{
	content: "";
	position: absolute;
	top: 8px;
	left: 0;
	width: 5px;
	height: 5px;
	background-color: var(--ginger-accent);
}

.post h2
{
	margin: 0;
	color: var(--ginger-turquoise);
	font-size: 40px;
	font-weight: 300;
	letter-spacing: 0.2px;
	line-height: 1.12;
}

.post-lead
{
	margin: 17px 0 0;
	color: var(--ginger-blue);
	font-size: 21px;
	font-weight: 300;
	line-height: 1.42;
}

.post-more
{
	margin-top: 20px;
}

.post-more summary
{
	display: inline-flex;
	align-items: center;
	gap: 10px;
	color: var(--ginger-accent);
	cursor: pointer;
	font-size: 22px;
	font-weight: 300;
	line-height: 30px;
	list-style: none;
}

.post-more summary::-webkit-details-marker
{
	display: none;
}

.post-more summary::after
{
	content: "+";
	display: grid;
	place-items: center;
	width: 24px;
	height: 24px;
	background-color: var(--ginger-light-gray);
	color: #FFFFFF;
	font-size: 19px;
	font-weight: 400;
	line-height: 1;
}

.post-more[open] summary::after
{
	content: "−";
}

.post-more summary:hover,
.post-more summary:focus-visible
{
	color: var(--ginger-dark);
}

.post-details
{
	margin-top: 18px;
	padding-top: 17px;
	border-top: 1px solid rgba(1,156,184,0.25);
	color: #4D7B84;
	font-size: 17px;
	font-weight: 300;
	line-height: 1.55;
}

.post-details p + p
{
	margin-top: 12px;
}

.contact-prompt
{
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 40px;
	padding: 48px 70px 52px;
	background-color: var(--ginger-pale);
}

.contact-prompt h2
{
	margin: 0;
	color: var(--ginger-turquoise);
	font-size: 38px;
	font-weight: 300;
	line-height: 1.2;
}

.contact-prompt a.contact-link
{
	flex: 0 0 auto;
	color: var(--ginger-accent);
	font-size: 28px;
	font-style: normal;
	font-weight: 300;
	line-height: 36px;
}

.contact-prompt a.contact-link:hover,
.contact-prompt a.contact-link:focus-visible
{
	color: var(--ginger-dark);
}

.site-footer
{
	width: 100%;
}

.footer-shell
{
	display: flex;
	align-items: center;
	justify-content: space-between;
	width: min(var(--page-width), 100%);
	min-height: 63px;
	margin: 0 auto;
	padding: 0 70px;
	background-color: var(--ginger-dark);
	box-sizing: border-box;
	color: #FFFFFF;
	font-size: 12px;
	line-height: 16px;
}

.footer-signature
{
	letter-spacing: 2px;
	text-transform: uppercase;
}

.footer-signature span
{
	color: #FF0000;
}

.footer-contact
{
	display: flex;
	align-items: center;
	gap: 24px;
}

.footer-contact a
{
	color: #FFFFFF;
	font-style: normal;
	font-weight: 400;
}

.footer-contact a:hover,
.footer-contact a:focus-visible
{
	color: #02B6D6;
}

@media (max-width: 1120px)
{
	.header-shell
	{
		grid-template-columns: 275px 1fr;
	}

	.brand
	{
		margin-left: 24px;
	}

	.header-content
	{
		padding-right: 24px;
		padding-left: 8px;
	}

	.primary-nav a
	{
		padding-right: 6px;
		padding-left: 6px;
		font-size: 14px;
	}

	.post
	{
		gap: 40px;
		padding-right: 50px;
		padding-left: 50px;
	}

	.news-intro,
	.contact-prompt
	{
		padding-right: 50px;
		padding-left: 50px;
	}
}

@media (max-width: 860px)
{
	.site-header
	{
		position: static;
	}

	.header-shell
	{
		grid-template-columns: 1fr;
		height: auto;
		padding-top: 8px;
	}

	.brand
	{
		margin: 0 auto;
	}

	.header-content
	{
		padding: 0 24px 12px;
	}

	.tagline
	{
		min-height: auto;
		padding: 4px 0 9px;
		font-size: 17px;
		line-height: 23px;
	}

	.primary-nav
	{
		flex-wrap: wrap;
		justify-content: center;
		padding-top: 5px;
		white-space: normal;
	}

	.primary-nav a,
	.primary-nav a + a
	{
		border: 0;
		font-size: 15px;
	}

	.page-shell
	{
		margin-top: 0;
	}

	.post
	{
		grid-template-columns: 1fr;
		gap: 31px;
	}

	.post:nth-child(even) .post-media,
	.post:nth-child(even) .post-content
	{
		order: initial;
	}

	.post-media
	{
		height: min(420px, 58vw);
	}

	.contact-prompt
	{
		align-items: flex-start;
		flex-direction: column;
	}

	.footer-shell,
	.footer-contact
	{
		align-items: flex-start;
		flex-direction: column;
	}

	.footer-shell
	{
		gap: 14px;
		padding-top: 22px;
		padding-bottom: 22px;
	}

	.footer-contact
	{
		gap: 6px;
	}
}

@media (max-width: 560px)
{
	.news-intro,
	.post,
	.contact-prompt
	{
		padding-right: 26px;
		padding-left: 26px;
	}

	.news-intro
	{
		padding-top: 42px;
		padding-bottom: 45px;
	}

	.news-intro h1
	{
		font-size: 43px;
	}

	.intro-copy
	{
		font-size: 21px;
	}

	.post
	{
		padding-top: 42px;
		padding-bottom: 46px;
	}

	.post h2
	{
		font-size: 34px;
	}

	.post-lead
	{
		font-size: 19px;
	}

	.post-media
	{
		height: 62vw;
	}

	.contact-prompt h2
	{
		font-size: 32px;
	}

	.contact-link
	{
		font-size: 24px;
	}

	.footer-shell
	{
		padding-right: 26px;
		padding-left: 26px;
	}
}

@media (prefers-reduced-motion: reduce)
{
	html
	{
		scroll-behavior: auto;
	}
}
