/* ! __________  ! P R I M A R Y . N A V */

.primary-nav {
	position: fixed;
	z-index: 99;
	display: inline-flex;
	align-items: center;
	top: 30px;
	left: 50%;
	transform: translate(-50%, 0px);	
	padding: 4px;
	border-radius: 32px;
	border: 1px solid var(--c_grey-2);
	background: rgba(255, 255, 255, 0.85);
	box-shadow: 0px 4px 20px -10px rgba(0, 0, 0, 0.25);
	backdrop-filter: blur(5px);
}

.primary-nav > a {
	display: flex;
	padding: 10px 0px;
	width: 110px;
	justify-content: center;
	align-items: center;
	gap: 4px;
	border-radius: 32px;
	color: var(--c_grey-4);
	text-align: center;
	font-size: 20px;
}

.primary-nav > a:hover {
	color: var(--c_black);
}

.primary-nav > a.primary-nav_active-tab {
	color: var(--c_black);
	font-weight: 600;
	background: rgba(0, 0, 0, 0.05);
}

.primary-nav > a > span {
	color: var(--c_green-1);
}

.primary-nav > img {
	width: 46px;
	height: 46px;
	overflow: hidden;
	border-radius: 999px;
	flex-shrink: 0;
	aspect-ratio: 1/1;
	background: url(img/biopic-color.jpg) lightgray 50% / cover no-repeat;
	margin-right: 16px;
}

/* ! __________  ! P A G E . L A Y O U T */

.wrap {
	display: flex;
	align-items: flex-start;
	gap: 16px;
	max-width: 720px;
	margin: 140px auto 40px auto;
}

.wrap_row {
	flex-direction: row;
}

.wrap_column {
	flex-direction: column;
}

/* ! _ */

.inner {
	display: flex;
	gap: 16px;
	width: 100%;
}

.inner_row {
	flex-direction: row;
}

.inner_column {
	flex-direction: column;
}

.inner_start {
	align-items: flex-start;
}

.inner_center {
	align-items: center;
}

/* ! __________  ! H O M E P A G E */

.homepage_hero {
	display: flex;
	padding: 32px 0px 64px 0px;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	gap: 32px;
	align-self: stretch;
}

.homepage_hero > h1 {
	color: var(--c_black);
	text-align: center;
	font-size: 75px;
	line-height: 95px;
	font-weight: 700;
}

.homepage_hero > h3 {
	color: var(--c_grey-5);
	text-align: center;
	font-size: 24px;
	font-weight: 600;
}

.homepage_hero > h3 > span {
	color: var(--c_grey-3);
}

/* ! _ */

.homepage_card-wrap {
	display: flex;
	flex-direction: column;
	gap: 16px;
}

.homepage_card {
	display: flex;
	width: 100%;
	flex-direction: column;
	justify-content: space-between;
	border-radius: 32px;
	background: var(--c_grey-1);
	gap: 32px;
	padding: 32px;
}

.homepage_card-highlight {
	border: solid 5px var(--c_green-1);	
}


/* ! _ */

.homepage_card-title {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 16px;
	align-self: stretch;
}

.homepage_card-title > h3 {
	color: var(--c_grey-5);
	font-size: 20px;
}

.homepage_card-title > h2 {
	color: var(--c_black);
	font-size: 48px;
	font-weight: 600;
	line-height: 1.3;
}

.homepage_card-title > p {
	color: var(--c_grey-5);
	font-size: 24px;
}

/* ! _ */

.homepage_card-image {
	display: flex;
	justify-content: space-between;
	align-items: center;
	width: 100%;
}

/* ! __________  ! A B O U T P A G E */

.aboutpage_hero {
	display: flex;
	padding: 32px 0px 64px 0px;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	gap: 16px;
	align-self: stretch;
}

.aboutpage_hero > h1 {
	color: var(--c_black);
	text-align: center;
	font-size: 75px;
	font-weight: 600;
}

.aboutpage_hero > h3 {
	color: var(--c_grey-5);
	text-align: center;
	font-size: 24px;
	font-weight: 600;
}

.aboutpage_hero > h3 > span {
	color: var(--c_grey-3);
}

/* ! _ */

.aboutpage_card-wrap {
	display: flex;
	flex-direction: column;
	gap: 16px;
}

.aboutpage_card {
	display: flex;
	flex-direction: column;
	width: 100%;
	justify-content: space-between;
	border-radius: 32px;
	background: var(--c_grey-1);
	gap: 32px;
	padding: 32px;
}

.aboutpage_card > p {
	font-size: 20px;
	color: var(--c_black);
}

.aboutpage_card-intro {
	justify-content: center;
	align-items: center;	
	flex-direction: row;
	gap: 16px;
	background: var(--c_white);
	border: solid 1px var(--c_grey-2);
}

.aboutpage_card-intro > img {
	width: 200px;
	height: 200px;
	border-radius: 999px;
}

.aboutpage_card-intro > p {	
	padding: 32px;
	border-radius: 16px;
	background: var(--c_grey-1);
	color: var(--c_grey-6);
	font-size: 20px;
	font-weight: 500;
}

.aboutpage_card-walkthrough {
	background: var(--c_white);
	border: solid 1px var(--c_grey-2);
}

/* ! _ */

.aboutpage_card-title {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 16px;
	align-self: stretch;
}

.aboutpage_card-title > h2 {
	color: var(--c_black);
	font-size: 48px;
	font-weight: 600;
}

.aboutpage_card-title > p {
	color: var(--c_grey-5);
	font-size: 24px;
}

/* ! _ */

.copy-buttons_wrap {
	display: flex;
	justify-content: space-between;
	align-items: center;
	width: 100%;
	min-height: 60px;
	padding: 0px 25px;
    font-family: 'JetBrains Mono';
	font-size: 20px;
	border-radius: 32px;
	color: var(--c_grey-1);
	border: solid 2px var(--c_grey-2);
	background: var(--c_white);
}

.copy-buttons_wrap > a {
	color: var(--c_black);
	text-decoration: underline;
}

/* ! __________  ! T E M P L A T E P A G E */

.template_hero {
	display: flex;
	min-height: 250px;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	align-self: stretch;
	border-radius: 32px;
	background: var(--c_black);
	margin-bottom: 32px;
}

.template_hero > h1 {
	color: var(--c_white);
	text-align: center;
	font-size: 56px;
	font-weight: 600;
}

.template_hero-menlo {
	background: url(portfolio/menlo/header_menlo.jpg) lightgray 50% / cover no-repeat;	
}

.template_hero-allen {
	background: url(portfolio/allen/header_allen.jpg) lightgray 50% / cover no-repeat;	
}

.template_hero-integrity {
	background: url(portfolio/integrity/header_integrity.jpg) lightgray 50% / cover no-repeat;	
}

.template_hero-projectsnaps {
	background: url(portfolio/projectsnaps/header_projectsnaps.jpg) lightgray 50% / cover no-repeat;	
}

.template_hero-spectrum {
	background: url(portfolio/spectrum/header_spectrum.jpg) lightgray 50% / cover no-repeat;	
}

.template_hero-subhq {
	background: url(portfolio/subhq/header_subhq.jpg) lightgray 50% / cover no-repeat;	
}

/* ! _ */

.template_body-title {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 8px;
	align-self: stretch;
}

.template_body-title > h2 {
	color: var(--c_black);
	font-size: 32px;
	font-weight: 600;
}

.template_body-title > h3 {
	color: var(--c_black);
	font-size: 24px;
	font-weight: 500;
}

.template_body-title > h3 > span {
	color: var(--c_grey-4);
}

/* ! _ */

.template_meta {
	display: flex;
	align-items: center;
	gap: 32px;
	align-self: stretch;
}

.template_meta > div {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 10px;	
}

.template_meta > div > p {
	color: var(--c_black);
	font-size: 20px;
}

/* ! _ */

.template_body-wrap {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	align-self: stretch;
	padding-top: 32px;
}

.template_body-wrap > div {
	display: flex;
	padding-bottom: 32px;
	flex-direction: column;
	align-items: flex-start;
	gap: 10px;
	align-self: stretch;
}

.template_body-wrap > div > p {
	color: var(--c_black);
	font-size: 20px;
}

/* ! _ */

.template_image-wrap {
	column-count: 2;
	column-gap: 16px;
}

.template_image-card {
	break-inside: avoid;
	margin-bottom: 16px;
	border-radius: 16px;
	border: 1px solid var(--c_grey-2);
	overflow: hidden;
	display: flex;
	flex-direction: column;
}

.template_image-card > img {
	width: 100%;
}

.template_image-card:hover {
	border: 1px solid var(--c_grey-3);
	box-shadow: 0px 40px 40px 0px rgba(0, 0, 0, 0.15);
}

/* ! _ */

.template_image-card-title {
	display: flex;
	padding: 16px;
	justify-content: flex-start;
	align-items: center;
	align-self: stretch;
	background: var(--c_grey-1);
}

.template_image-card-title > p {
	color: var(--c_black);
	font-size: 20px;
	text-decoration: underline;
}

/* ! _ */

.template_tools {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 16px;
}

/* ! __________  ! M A R K D O W N */

.markdown {
	display: flex;
	flex-direction: column;
	gap: 16px;
	color: var(--c_grey-5);
}

.markdown > h1 {
	font-size: 32px;
	font-weight: 500;
}

.markdown > h2,
.markdown > h3,
.markdown > h4 {
	font-size: 24px;
	font-weight: 500;
}

.markdown > h5,
.markdown strong {
	font-weight: 500;
}

.markdown p {
	font-size: 20px;
}

.markdown a {
	text-decoration: underline;
	color: inherit;
}

.markdown em {
	display: inline;
	font-style: italic;
}

.markdown hr {
	width: 100%;
	height: 1px;
	border-radius: 32px;
	background: var(--c_grey-3);
	margin: 32px auto;
}

.markdown blockquote {
	border-left: solid 4px var(--c_green-1);
	padding-left: 16px;
	padding-top: 16px;
	padding-bottom: 16px;
}

.markdown blockquote > p {
	display: flex;
	flex-direction: column;
}

/* ! __________  ! B U T T O N S */

.button_stack {
	display: flex;
	flex-direction: row;
	justify-content: flex-start;
	gap: 8px;
}

.button {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 16px;
	text-align: center;
	border-radius: 32px;
	padding: 14px 18px;
	font-size: 20px;
	font-weight: 600;
	background: var(--c_green-1);
	color: var(--c_white);
}

.button:hover {
	background: var(--c_green-2);
}

/* ! _ */

.button_copy {
    font-family: 'JetBrains Mono';
	display: flex;
	padding: 4px 10px;
	min-width: 60px;
	justify-content: center;
	align-items: center;
	cursor: pointer;
	text-decoration: none;	
	border-radius: 16px;
	font-size: 16px;
	background: var(--c_grey-1);
	color: var(--c_grey-6);
}

.button_copy:hover {
	color: var(--c_white);
	background: var(--c_grey-6);
}

/* ! __________  ! I C O N S */

.icon {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	overflow: hidden;
}

.icon > img {
	width: 100%;
}

.circle-icon_60 {
	width: 60px;
	min-width: 60px;
	height: 60px;
	border-radius: 999px;
}

.circle-icon_90 {
	width: 90px;
	min-width: 90px;
	height: 90px;
	border-radius: 999px;
}

.circle-icon_160 {
	width: 160px;
	min-width: 160px;
	height: 160px;
	border-radius: 999px;
}

.shadow-icon {
	width: 100px;
	min-width: 100px;
	height: 100px;
	box-shadow: 0px 5px 20px -10px rgba(0, 0, 0, 0.80);
	border-radius: 20px;
	border: solid 2px var(--c_grey-7);
}

/* ! __________  ! T A G S */

.template_tag-wrap {
	display: flex;
	align-items: flex-start;
	align-content: flex-start;
	gap: 5px;
	align-self: stretch;
	flex-wrap: wrap;
}

.tag {
	display: flex;
	padding: 4px 16px;
	align-items: center;	
	border-radius: 999px;
	background: var(--c_grey-1);
	color: var(--c_grey-5);
	font-size: 14px;
}

/* ! __________  ! L I S T S */

ul,
ol {
	list-style: none;
	list-style-position: inside;
	display: flex;
	flex-direction: column;
	gap: 16px;
	padding-top: 16px;
	padding-right: 0px;
	padding-left: 16px;
	padding-bottom: 16px;
}

ul > li,
ol > li {
	display: flex;
	flex-direction: row;
	gap: 16px;
	color: inherit;
	font-size: 20px;
}

ul > li::before,
ol > li::before {
	content: "→ ";
	color: var(--c_grey-3);
}

/* ! __________  ! T E X T */

.highlight {
	border-bottom: dashed 1px var(--c_grey-3);
}

p > a {
	display: flex-inline;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	
	color: var(--c_grey-5);
}

p > a:hover {
	text-decoration: underline;
}

.eyebrow {
	color: var(--c_grey-5);
	font-size: 14px;
	font-weight: 600;
	text-transform: uppercase;
}
