/* Greenhouse — front end.
   Token values live in tokens.css. Nothing below hard-codes a colour. */

/* ------------------------------------------------------------------ base */

*,
*::before,
*::after {
	box-sizing: border-box;
}

html {
	-webkit-text-size-adjust: 100%;
	scroll-behavior: smooth;
	/* The closed drawer is parked off-screen to the right; without this it
	   widens the document and every page gains a horizontal scrollbar. */
	overflow-x: clip;
}

body {
	margin: 0;
	background: var(--gh-cream);
	color: var(--gh-green-900);
	font-family: var(--gh-font-ui);
	font-size: var(--gh-size-body);
	line-height: 1.5;
	-webkit-font-smoothing: antialiased;
	overflow-x: clip;
}

img,
svg,
video {
	max-width: 100%;
	height: auto;
}

a {
	color: inherit;
}

h1,
h2,
h3,
h4 {
	margin: 0;
	font-family: var(--gh-font-display);
	font-weight: 400;
	text-wrap: balance;
}

p {
	text-wrap: pretty;
}

ul,
ol {
	margin: 0;
	padding: 0;
	list-style: none;
}

button {
	font: inherit;
	color: inherit;
}

:focus-visible {
	outline: 2px solid var(--gh-clay-700);
	outline-offset: 2px;
}

.screen-reader-text {
	position: absolute !important;
	width: 1px;
	height: 1px;
	margin: -1px;
	padding: 0;
	overflow: hidden;
	clip: rect(0 0 0 0);
	clip-path: inset(50%);
	white-space: nowrap;
	border: 0;
}

.gh-skip {
	position: fixed;
	top: 8px;
	left: 8px;
	z-index: 200;
	padding: 10px 18px;
	background: var(--gh-green-900);
	color: var(--gh-cream);
	border-radius: var(--gh-r-pill);
	font: 600 var(--gh-size-button) / 1 var(--gh-font-ui);
	text-decoration: none;
	transform: translateY(-200%);
}

.gh-skip:focus {
	transform: translateY(0);
}

/* ---------------------------------------------------------------- layout */

.gh-site {
	display: flex;
	min-height: 100vh;
	flex-direction: column;
}

.gh-main {
	flex: 1 0 auto;
}

.gh-frame {
	width: 100%;
	max-width: var(--gh-frame);
	margin-inline: auto;
	padding-inline: var(--gh-gutter);
}

.gh-band {
	margin-block: var(--gh-s9);
}

.gh-band:first-child {
	margin-top: var(--gh-s7);
}

/* Section panels sit 20px inside the 1280 frame rather than the 36px gutter. */
.gh-panel-inset {
	margin-inline: calc(-1 * (var(--gh-gutter) - var(--gh-panel-inset)));
}

/* ---------------------------------------------------------------- typography */

.gh-eyebrow {
	margin: 0;
	font-family: var(--gh-font-ui);
	font-size: var(--gh-size-eyebrow);
	font-weight: 700;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: var(--gh-clay-700);
}

.gh-section-head {
	display: flex;
	align-items: baseline;
	justify-content: space-between;
	gap: var(--gh-s5);
	margin-bottom: var(--gh-s6);
}

.gh-section-title {
	font-size: var(--gh-size-section);
	line-height: 1.1;
	letter-spacing: -0.02em;
}

.gh-textlink {
	font: 600 var(--gh-size-button) / 1.3 var(--gh-font-ui);
	color: var(--gh-green-900);
	text-decoration: none;
	border-bottom: 2px solid var(--gh-clay-700);
	padding-bottom: 1px;
	white-space: nowrap;
	transition: border-color 120ms ease;
}

.gh-textlink:hover {
	border-bottom-color: var(--gh-green-900);
}

/* ---------------------------------------------------------------- controls */

.gh-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	padding: 12px 22px;
	border: 1px solid transparent;
	border-radius: var(--gh-r-pill);
	font: 600 var(--gh-size-button) / 1 var(--gh-font-ui);
	text-decoration: none;
	white-space: nowrap;
	cursor: pointer;
	transition: background-color 120ms ease, color 120ms ease, border-color 120ms ease;
}

.gh-btn--primary {
	background: var(--gh-green-900);
	color: var(--gh-cream);
}

.gh-btn--primary:hover {
	background: var(--gh-green-700);
}

.gh-btn--clay {
	background: var(--gh-clay-700);
	color: var(--gh-cream);
}

.gh-btn--clay:hover {
	background: var(--gh-clay-800);
}

.gh-btn--cream {
	background: var(--gh-cream);
	color: var(--gh-green-900);
}

.gh-btn--cream:hover {
	background: var(--gh-white);
}

.gh-btn--outline {
	padding: 11px 22px;
	border-color: var(--gh-green-900);
	color: var(--gh-green-900);
	background: transparent;
}

.gh-btn--outline:hover {
	background: var(--gh-sage-200);
}

.gh-pill {
	display: inline-flex;
	align-items: center;
	padding: 8px 14px;
	border: 1px solid var(--gh-green-30);
	border-radius: var(--gh-r-pill);
	font: 500 var(--gh-size-tiny) / 1.2 var(--gh-font-ui);
	color: var(--gh-green-900);
	text-decoration: none;
	background: transparent;
	cursor: pointer;
	transition: background-color 120ms ease;
}

.gh-pill:hover {
	background: var(--gh-sage-200);
}

.gh-pill--action[aria-pressed="true"] {
	background: var(--gh-sage-200);
}

.gh-chip {
	display: inline-flex;
	align-items: center;
	padding: 6px 10px;
	border-radius: var(--gh-r-pill);
	background: var(--gh-sage-200);
	color: var(--gh-green-900);
	font: 600 var(--gh-size-eyebrow) / 1 var(--gh-font-ui);
	letter-spacing: 0.1em;
	text-transform: uppercase;
	text-decoration: none;
}

a.gh-chip:hover {
	background: var(--gh-sage-100);
}

.gh-input {
	width: 100%;
	padding: 13px 18px;
	border: 1px solid var(--gh-green-30);
	border-radius: var(--gh-r-pill);
	background: var(--gh-white);
	color: var(--gh-green-900);
	font: 400 var(--gh-size-small) / 1.2 var(--gh-font-ui);
}

.gh-input::placeholder {
	color: var(--gh-ink-muted);
}

.gh-input:focus {
	border-color: var(--gh-green-900);
	outline: none;
	box-shadow: none;
}

.gh-searchform {
	display: flex;
	gap: var(--gh-s3);
	align-items: center;
	max-width: 560px;
}

.gh-searchform__input {
	flex: 1 1 auto;
	min-width: 0;
}

/* ---------------------------------------------------------------- header */

.gh-header {
	position: sticky;
	top: 0;
	z-index: 90;
	background: var(--gh-cream);
	border-bottom: 1px solid var(--gh-rule);
	transition: background-color 160ms ease, border-color 160ms ease;
}

.gh-hero-first .gh-header:not(.is-condensed) {
	border-bottom-color: transparent;
}

.gh-header__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: var(--gh-s6);
	height: var(--gh-header-h);
	transition: height 160ms ease;
}

.gh-header.is-condensed {
	background: var(--gh-cream-80);
	-webkit-backdrop-filter: blur(8px);
	backdrop-filter: blur(8px);
	border-bottom-color: var(--gh-rule);
}

.gh-header.is-condensed .gh-header__inner {
	height: var(--gh-header-condensed-h);
}

.gh-brand {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	text-decoration: none;
	color: var(--gh-green-900);
}

.gh-brand--cream {
	color: var(--gh-cream);
}

.gh-brand__name {
	font-family: var(--gh-font-display);
	font-weight: 500;
	font-size: 24px;
	letter-spacing: -0.01em;
	line-height: 1;
	transition: font-size 160ms ease;
}

.gh-header.is-condensed .gh-brand__name {
	font-size: 19px;
}

.gh-brand__logo {
	max-height: 34px;
	width: auto;
}

.gh-sprout {
	flex: none;
}

.gh-nav {
	min-width: 0;
	flex: 0 1 auto;
}

/* A long menu scrolls inside the nav rather than pushing the page wider. */
.gh-nav__list {
	display: flex;
	align-items: center;
	gap: 26px;
	flex-wrap: nowrap;
	overflow-x: auto;
	scrollbar-width: none;
	-ms-overflow-style: none;
	padding-block: 2px;
}

.gh-nav__list::-webkit-scrollbar {
	display: none;
}

.gh-nav__list a,
.gh-nav .menu-item a {
	display: inline-block;
	padding-bottom: 2px;
	border-bottom: 2px solid transparent;
	font: 500 var(--gh-size-nav) / 1.2 var(--gh-font-ui);
	color: var(--gh-green-900);
	text-decoration: none;
	white-space: nowrap;
	transition: border-color 120ms ease, font-size 160ms ease;
}

.gh-nav a:hover {
	border-bottom-color: color-mix(in srgb, var(--gh-clay-700) 40%, transparent);
}

.gh-nav .current-menu-item > a,
.gh-nav .current_page_item > a,
.gh-nav .current-menu-parent > a,
.gh-nav .current-post-ancestor > a,
.gh-nav .current-category-ancestor > a {
	border-bottom-color: var(--gh-clay-700);
}

.gh-header.is-condensed .gh-nav a {
	font-size: 14px;
}

.gh-header__actions {
	display: flex;
	align-items: center;
	gap: var(--gh-s4);
}

.gh-header__search {
	padding: 0;
	border: 0;
	background: none;
	font: 500 var(--gh-size-nav) / 1.2 var(--gh-font-ui);
	color: var(--gh-ink-muted);
	cursor: pointer;
}

.gh-header__search:hover {
	color: var(--gh-green-900);
}

.gh-header.is-condensed .gh-header__cta {
	padding: 9px 16px;
	font-size: 13px;
}

/* Set by navigation.js when the menu is too long for one line at any width. */
.gh-header.is-nav-overflowing .gh-nav {
	display: none;
}

.gh-header.is-nav-overflowing .gh-burger {
	display: block;
}

.gh-burger {
	display: none;
	width: 44px;
	height: 44px;
	padding: 0;
	border: 0;
	background: none;
	cursor: pointer;
}

.gh-burger__lines {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 5px;
	height: 100%;
}

.gh-burger__lines i {
	display: block;
	width: 20px;
	height: 2px;
	background: var(--gh-green-900);
}

/* ---------------------------------------------------------------- drawer */

.gh-drawer {
	position: fixed;
	inset: 0;
	z-index: 120;
	display: flex;
	flex-direction: column;
	gap: var(--gh-s7);
	padding: var(--gh-s5) var(--gh-gutter) var(--gh-s8);
	background: var(--gh-cream);
	overflow-y: auto;
	transform: translateX(100%);
	transition: transform 240ms ease-out, visibility 0s linear 240ms;
	visibility: hidden;
}

.gh-drawer[hidden] {
	display: flex;
}

.gh-drawer.is-open {
	transform: translateX(0);
	visibility: visible;
	transition: transform 240ms ease-out, visibility 0s;
}

.gh-drawer__head {
	display: flex;
	align-items: center;
	justify-content: space-between;
	min-height: var(--gh-header-h);
}

.gh-drawer__close,
.gh-search-overlay__close {
	width: 44px;
	height: 44px;
	border: 0;
	background: none;
	font-size: 30px;
	line-height: 1;
	cursor: pointer;
}

.gh-drawer__list {
	display: flex;
	flex-direction: column;
	gap: var(--gh-s5);
}

.gh-drawer__list a,
.gh-drawer__nav .gh-nav__list a {
	font-family: var(--gh-font-display);
	font-size: 28px;
	line-height: 1.15;
	text-decoration: none;
	border: 0;
}

.gh-drawer__nav .gh-nav__list {
	flex-direction: column;
	align-items: flex-start;
	gap: var(--gh-s5);
}

.gh-drawer__foot {
	display: flex;
	flex-direction: column;
	gap: var(--gh-s4);
	align-items: flex-start;
}

.gh-drawer__foot .gh-searchform {
	width: 100%;
}

/* ------------------------------------------------------- search overlay */

.gh-search-overlay {
	position: fixed;
	inset: 0;
	z-index: 130;
	background: var(--gh-cream);
	overflow-y: auto;
	opacity: 0;
	visibility: hidden;
	transition: opacity 160ms ease, visibility 0s linear 160ms;
}

.gh-search-overlay[hidden] {
	display: block;
}

.gh-search-overlay.is-open {
	opacity: 1;
	visibility: visible;
	transition: opacity 160ms ease, visibility 0s;
}

.gh-search-overlay__inner {
	padding-block: var(--gh-s7) var(--gh-s9);
}

.gh-search-overlay__close {
	display: block;
	margin-left: auto;
}

.gh-search-overlay .gh-searchform {
	max-width: 100%;
	margin-block: var(--gh-s5) var(--gh-s7);
}

.gh-search-overlay__results {
	display: flex;
	flex-direction: column;
	gap: var(--gh-s4);
	max-width: 720px;
}

.gh-search-overlay__results a {
	display: block;
	padding-bottom: var(--gh-s4);
	border-bottom: 1px solid var(--gh-rule);
	font-family: var(--gh-font-display);
	font-size: 21px;
	line-height: 1.25;
	text-decoration: none;
}

.gh-search-overlay__results a:hover {
	color: var(--gh-clay-700);
}

.gh-search-overlay__note {
	margin: 0;
	color: var(--gh-ink-muted);
	font-size: var(--gh-size-small);
}

/* ------------------------------------------------------------ tap targets */

/* WCAG 2.5.8 asks for 24px on anything that is not an inline link inside a
   sentence. These are all standalone controls, so they get a real box. */
.gh-textlink,
.gh-card__link,
.gh-markets__link,
.gh-mostread__link,
.gh-topic-card__link,
.gh-learn-path__lesson,
.gh-stage__item a,
.gh-result__title a,
.gh-footer-col__list a,
.gh-footer__widgets a,
.gh-toc__link,
.gh-crumbs a,
.gh-facts dd a,
.gh-search-overlay__results a {
	display: inline-block;
	min-height: 24px;
}

.gh-chip,
.gh-ticker {
	min-height: 24px;
}

.gh-header__search {
	padding: 4px 2px;
	min-height: 24px;
}

.gh-toc__summary {
	padding-block: 4px;
}

/* ---------------------------------------------------------------- cards */

.gh-cards {
	display: grid;
	gap: var(--gh-s6);
}

.gh-cards--3 {
	grid-template-columns: repeat(3, minmax(0, 1fr));
}

.gh-card {
	position: relative;
	display: flex;
	flex-direction: column;
	padding: 14px 14px 22px;
	background: var(--gh-white);
	border-radius: var(--gh-r-card);
	min-width: 0;
}

.gh-thumb {
	position: relative;
	display: block;
	overflow: hidden;
	border-radius: var(--gh-r-image);
	background: var(--gh-sage-200);
}

.gh-card__thumb {
	height: 170px;
}

.gh-thumb__img,
.gh-thumb img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 240ms ease-out;
}

.gh-card:hover .gh-thumb__img {
	transform: scale(1.02);
}

.gh-thumb__fallback {
	display: flex;
	width: 100%;
	height: 100%;
	min-height: 120px;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 10px;
	background: var(--gh-sage-200);
	color: var(--gh-green-900);
}

.gh-thumb__fallback-label {
	max-width: 80%;
	font: 600 var(--gh-size-eyebrow) / 1.3 var(--gh-font-ui);
	letter-spacing: 0.1em;
	text-transform: uppercase;
	text-align: center;
	opacity: 0.75;
}

.gh-card__body {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: var(--gh-s3);
	padding-top: var(--gh-s4);
	min-width: 0;
}

.gh-card__chip {
	margin-left: 6px;
}

.gh-card__title {
	padding-inline: 6px;
	font-size: var(--gh-size-card);
	line-height: 1.15;
	letter-spacing: -0.015em;
	text-wrap: pretty;
}

.gh-card__link {
	text-decoration: none;
	border-bottom: 2px solid transparent;
}

.gh-card__link::after {
	content: "";
	position: absolute;
	inset: 0;
	border-radius: inherit;
}

.gh-card:hover .gh-card__link {
	border-bottom-color: var(--gh-clay-700);
}

.gh-card__meta,
.gh-card__excerpt {
	margin: 0;
	padding-inline: 6px;
	color: var(--gh-ink-muted);
}

.gh-card__meta {
	font-size: var(--gh-size-tiny);
}

.gh-card__excerpt {
	font-size: var(--gh-size-body);
}

.gh-card--compact {
	display: grid;
	grid-template-columns: 110px minmax(0, 1fr);
	gap: var(--gh-s4);
	align-items: start;
	padding: 12px;
}

.gh-card--compact .gh-card__thumb {
	height: 110px;
	border-radius: 12px;
}

.gh-card--compact .gh-card__body {
	padding-top: 0;
}

.gh-card--compact .gh-card__title {
	padding-inline: 0;
	font-size: 19px;
}

.gh-card--compact .gh-card__chip,
.gh-card--compact .gh-card__meta {
	margin-left: 0;
	padding-inline: 0;
}

.gh-card--featured {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
	gap: var(--gh-s7);
	align-items: center;
	padding: 14px;
	margin-bottom: var(--gh-s6);
}

.gh-card--featured .gh-card__thumb {
	height: 340px;
}

.gh-card--featured .gh-card__body {
	padding-block: var(--gh-s5);
	padding-right: var(--gh-s5);
}

.gh-card__title--featured {
	padding-inline: 0;
	font-size: 40px;
	line-height: 1.08;
	letter-spacing: -0.02em;
}

.gh-card--featured .gh-card__chip,
.gh-card--featured .gh-card__meta,
.gh-card--featured .gh-card__excerpt {
	margin-left: 0;
	padding-inline: 0;
}

/* ---------------------------------------------------------------- hero */

.gh-hero {
	display: grid;
	grid-template-columns: minmax(0, 1fr) 440px;
	gap: 48px;
	align-items: center;
	padding: 52px 56px 48px;
	background: var(--gh-green-900);
	color: var(--gh-cream);
	border-radius: var(--gh-r-panel);
	margin-inline: calc(-1 * (var(--gh-gutter) - var(--gh-panel-inset)));
}

.gh-hero__eyebrow {
	color: var(--gh-clay-200);
	margin-bottom: var(--gh-s4);
}

.gh-hero__title {
	font-size: var(--gh-size-display);
	line-height: 1;
	letter-spacing: -0.025em;
	margin-bottom: var(--gh-s5);
}

.gh-hero__title a {
	text-decoration: none;
	border-bottom: 2px solid transparent;
}

.gh-hero__title a:hover {
	border-bottom-color: var(--gh-clay-200);
}

.gh-hero__title em {
	font-style: italic;
}

.gh-hero__deck {
	max-width: 560px;
	margin: 0 0 var(--gh-s7);
	font-size: var(--gh-size-lede);
	line-height: 1.55;
	color: var(--gh-cream-80);
}

.gh-hero__foot {
	display: flex;
	align-items: center;
	gap: var(--gh-s6);
	flex-wrap: wrap;
}

.gh-hero__thumb {
	height: 400px;
	border-radius: var(--gh-r-card);
}

.gh-hero__media {
	min-width: 0;
}

.gh-hero__link {
	display: block;
}

.gh-hero .gh-byline__name,
.gh-hero .gh-byline__dates {
	color: var(--gh-cream);
}

.gh-hero .gh-byline__role {
	color: var(--gh-cream-70);
}

.gh-hero .gh-thumb__fallback {
	background: var(--gh-green-700);
	color: var(--gh-cream);
}

/* ---------------------------------------------------------------- byline */

.gh-byline {
	display: flex;
	align-items: center;
	gap: var(--gh-s3);
	min-width: 0;
}

.gh-byline__avatar img {
	display: block;
	border-radius: 50%;
}

.gh-byline__text {
	display: flex;
	flex-direction: column;
	gap: 2px;
	min-width: 0;
}

.gh-byline__name {
	font: 600 var(--gh-size-small) / 1.3 var(--gh-font-ui);
}

.gh-byline__name a {
	text-decoration: none;
}

.gh-byline__name a:hover {
	text-decoration: underline;
}

.gh-byline__role {
	font-weight: 400;
	color: var(--gh-ink-muted);
}

.gh-byline__dates {
	font-size: var(--gh-size-tiny);
	color: var(--gh-ink-muted);
}

/* ------------------------------------------------------- markets column */

.gh-markets {
	display: grid;
	grid-template-columns: minmax(0, 1fr) 380px;
	gap: var(--gh-s6);
	align-items: start;
}

/* With only one panel there is no second column to balance. */
.gh-markets--single {
	grid-template-columns: minmax(0, 1fr);
	max-width: 760px;
}

.gh-card-panel {
	background: var(--gh-white);
	border-radius: var(--gh-r-card);
	padding: 28px 32px 24px;
	min-width: 0;
}

.gh-markets__head {
	display: flex;
	align-items: baseline;
	justify-content: space-between;
	gap: var(--gh-s4);
	margin-bottom: var(--gh-s5);
}

.gh-markets__title,
.gh-mostread__title {
	font-size: 28px;
	line-height: 1.1;
	letter-spacing: -0.02em;
}

.gh-markets__stamp {
	font-size: var(--gh-size-tiny);
	color: var(--gh-ink-muted);
	white-space: nowrap;
}

.gh-markets__row {
	display: grid;
	grid-template-columns: minmax(0, 1fr) auto;
	gap: var(--gh-s5);
	align-items: baseline;
	padding-block: var(--gh-s4);
	border-top: 1px solid var(--gh-rule);
}

.gh-markets__rows > .gh-markets__row:first-child {
	border-top: 0;
	padding-top: 0;
}

.gh-markets__link {
	font-family: var(--gh-font-display);
	font-size: var(--gh-size-list-title);
	line-height: 1.2;
	text-decoration: none;
	border-bottom: 2px solid transparent;
	min-width: 0;
}

.gh-markets__link:hover {
	border-bottom-color: var(--gh-clay-700);
}

.gh-markets__meta {
	font-size: var(--gh-size-tiny);
	color: var(--gh-ink-muted);
	white-space: nowrap;
}

.gh-mostread__rows {
	display: flex;
	flex-direction: column;
	gap: var(--gh-s5);
	margin-top: var(--gh-s5);
}

.gh-mostread__row {
	display: grid;
	grid-template-columns: 34px minmax(0, 1fr);
	gap: var(--gh-s3);
	align-items: baseline;
}

.gh-mostread__num {
	font-family: var(--gh-font-display);
	font-size: 28px;
	line-height: 1;
	color: var(--gh-clay-500);
}

.gh-mostread__link {
	font: 500 var(--gh-size-body) / 1.35 var(--gh-font-ui);
	text-decoration: none;
	border-bottom: 2px solid transparent;
}

.gh-mostread__link:hover {
	border-bottom-color: var(--gh-clay-700);
}

/* ------------------------------------------------------------ learn band */

.gh-learn-band {
	padding: 44px 56px;
	background: var(--gh-sage-200);
	border-radius: var(--gh-r-panel);
	margin-inline: calc(-1 * (var(--gh-gutter) - var(--gh-panel-inset)));
}

.gh-learn-band__head {
	display: flex;
	align-items: baseline;
	justify-content: space-between;
	gap: var(--gh-s5);
	margin-bottom: var(--gh-s8);
}

.gh-learn-band__title {
	font-size: var(--gh-size-section);
	line-height: 1.1;
	letter-spacing: -0.02em;
}

.gh-learn-band__note {
	margin: 0;
	font-size: var(--gh-size-small);
	color: var(--gh-ink-on-sage);
	white-space: nowrap;
}

.gh-learn-path {
	position: relative;
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: var(--gh-s6);
}

/* The connector runs from the centre of circle 1 to the centre of circle 3. */
.gh-learn-path::before {
	content: "";
	position: absolute;
	top: 23px;
	left: calc(100% / 6);
	right: calc(100% / 6);
	height: 2px;
	background: var(--gh-green-25);
}

.gh-learn-path__step {
	position: relative;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: var(--gh-s3);
	min-width: 0;
}

.gh-learn-path__num,
.gh-stage__num {
	position: relative;
	display: flex;
	width: 48px;
	height: 48px;
	align-items: center;
	justify-content: center;
	border-radius: 50%;
	background: var(--gh-green-900);
	color: var(--gh-cream);
	font-family: var(--gh-font-display);
	font-size: 22px;
	line-height: 1;
}

.is-first > .gh-learn-path__num,
.gh-stage.is-first .gh-stage__num {
	background: var(--gh-clay-700);
}

.gh-learn-path__lesson {
	font-family: var(--gh-font-display);
	font-size: var(--gh-size-lesson);
	line-height: 1.2;
	text-decoration: none;
	border-bottom: 2px solid transparent;
}

.gh-learn-path__lesson:hover {
	border-bottom-color: var(--gh-clay-700);
}

/* ---------------------------------------------------------------- topics */

.gh-topics__label {
	margin: 0 0 var(--gh-s4);
	font: 600 var(--gh-size-tiny) / 1 var(--gh-font-ui);
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: var(--gh-green-900);
}

.gh-topics__pills {
	display: flex;
	flex-wrap: wrap;
	gap: var(--gh-s3);
}

.gh-topics__pills .gh-pill {
	padding: 9px 16px;
	font-size: var(--gh-size-small);
}

/* ---------------------------------------------------------------- article */

.gh-article__head {
	max-width: 900px;
	padding-top: 28px;
}

.gh-crumbs {
	margin-bottom: var(--gh-s4);
	font-size: var(--gh-size-tiny);
	color: var(--gh-ink-muted);
}

.gh-crumbs ol {
	display: flex;
	flex-wrap: wrap;
	gap: 6px;
}

.gh-crumbs li + li::before {
	content: "/";
	margin-right: 6px;
	color: var(--gh-rule);
}

.gh-crumbs a {
	color: var(--gh-ink-muted);
	text-decoration: none;
}

.gh-crumbs a:hover {
	color: var(--gh-green-900);
}

.gh-article__chip {
	margin-bottom: var(--gh-s4);
}

.gh-article__title {
	font-size: var(--gh-size-title);
	line-height: 1.02;
	letter-spacing: -0.02em;
}

.gh-article__title em {
	font-style: italic;
}

.gh-article__deck {
	margin: var(--gh-s5) 0 0;
	max-width: 640px;
	font-size: 20px;
	line-height: 1.5;
	color: var(--gh-ink-muted);
}

.gh-article__byline {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: var(--gh-s5);
	flex-wrap: wrap;
	margin-top: var(--gh-s6);
	padding-bottom: var(--gh-s2);
}

.gh-actions {
	display: flex;
	gap: var(--gh-s2);
}

.gh-article__figure {
	margin: var(--gh-s7) auto 0;
}

.gh-article__image {
	display: block;
	width: 100%;
	border-radius: var(--gh-r-card);
	object-fit: cover;
}

.gh-article__caption {
	margin-top: var(--gh-s3);
	font-size: var(--gh-size-tiny);
	color: var(--gh-ink-muted);
}

.gh-article__body {
	display: grid;
	grid-template-columns: var(--gh-well) var(--gh-rail);
	gap: var(--gh-s9);
	justify-content: center;
	padding-top: var(--gh-s8);
}

.gh-article__body--wide {
	grid-template-columns: minmax(0, var(--gh-well));
}

.gh-well {
	min-width: 0;
	max-width: var(--gh-well);
}

/* ------------------------------------------------------------ callouts */

.gh-takeaways {
	padding: 22px 26px;
	background: var(--gh-sage-100);
	border-radius: var(--gh-r-callout);
	margin-bottom: var(--gh-s6);
}

.gh-takeaways__title {
	margin-bottom: var(--gh-s3);
}

.gh-takeaways__list {
	display: flex;
	flex-direction: column;
	gap: var(--gh-s2);
}

.gh-takeaways__list li {
	position: relative;
	padding-left: 18px;
	font-size: var(--gh-size-body);
	line-height: 1.55;
}

.gh-takeaways__list li::before {
	content: "·";
	position: absolute;
	left: 4px;
	color: var(--gh-clay-700);
	font-weight: 700;
}

.gh-firms {
	margin-bottom: var(--gh-s6);
}

.gh-firms__title {
	margin-bottom: var(--gh-s3);
}

.gh-firms__list {
	display: flex;
	flex-wrap: wrap;
	gap: var(--gh-s2);
}

.gh-pill--firm {
	cursor: default;
	gap: 6px;
}

/* .gh-pill is a flex container, which drops whitespace-only text nodes, so the
   separator needs its own spacing rather than the spaces around it. */
.gh-firms__sep {
	margin: 0;
}

.gh-firms__ticker {
	font-weight: 700;
	letter-spacing: 0.04em;
}

.gh-disclosure {
	margin-top: var(--gh-s8);
	padding: 20px 24px;
	border: 1px solid var(--gh-clay-500);
	border-radius: var(--gh-r-callout);
}

.gh-disclosure p {
	margin: 0;
	font-size: var(--gh-size-small);
	line-height: 1.55;
	color: var(--gh-ink-muted);
}

.gh-disclosure__label {
	color: var(--gh-clay-700);
}

.gh-author-card {
	display: grid;
	grid-template-columns: 72px minmax(0, 1fr) auto;
	gap: var(--gh-s5);
	align-items: center;
	margin-top: var(--gh-s6);
	padding: 24px 26px;
	background: var(--gh-white);
	border-radius: var(--gh-r-card);
}

.gh-author-card__avatar img {
	display: block;
	border-radius: 50%;
}

.gh-author-card__name {
	font-size: 24px;
	line-height: 1.2;
}

.gh-author-card__name a {
	text-decoration: none;
}

.gh-author-card__role,
.gh-author-card__bio {
	margin: 6px 0 0;
	font-size: var(--gh-size-small);
	line-height: 1.5;
	color: var(--gh-ink-muted);
}

/* ---------------------------------------------------------------- prose */

.gh-prose {
	font-family: var(--gh-font-display);
	font-size: var(--gh-size-prose);
	line-height: 1.6;
}

.gh-prose > * {
	max-width: 100%;
}

.gh-prose p {
	margin: 0 0 22px;
}

.gh-prose h2 {
	margin: var(--gh-s8) 0 18px;
	font-size: var(--gh-size-h2);
	line-height: 1.12;
	letter-spacing: -0.02em;
	scroll-margin-top: 100px;
}

.gh-prose h3 {
	margin: var(--gh-s7) 0 var(--gh-s3);
	font-size: var(--gh-size-h3);
	font-weight: 500;
	line-height: 1.2;
	letter-spacing: -0.015em;
	scroll-margin-top: 100px;
}

.gh-prose h4 {
	margin: var(--gh-s6) 0 var(--gh-s2);
	font-size: 21px;
	font-weight: 500;
}

.gh-prose a {
	color: var(--gh-green-900);
	text-decoration: none;
	border-bottom: 1px solid var(--gh-clay-500);
}

.gh-prose a:hover {
	border-bottom-width: 2px;
}

.gh-prose ul,
.gh-prose ol {
	margin: 0 0 22px;
	padding: 0;
	display: flex;
	flex-direction: column;
	gap: 10px;
}

.gh-prose ul li,
.gh-prose ol li {
	position: relative;
	padding-left: 30px;
}

.gh-prose ul li::before {
	content: "—";
	position: absolute;
	left: 0;
	color: var(--gh-clay-500);
}

.gh-prose ol {
	counter-reset: gh-ol;
}

.gh-prose ol li::before {
	counter-increment: gh-ol;
	content: counter(gh-ol) ".";
	position: absolute;
	left: 0;
	color: var(--gh-clay-700);
	font-variant-numeric: tabular-nums;
}

.gh-prose blockquote {
	margin: var(--gh-s7) 0;
	padding: 6px 0 6px 26px;
	border-left: 3px solid var(--gh-clay-500);
	font-size: var(--gh-size-pullquote);
	font-style: italic;
	line-height: 1.25;
	letter-spacing: -0.015em;
}

.gh-prose blockquote p:last-child {
	margin-bottom: 0;
}

.gh-prose blockquote cite {
	display: block;
	margin-top: var(--gh-s3);
	font: 400 var(--gh-size-small) / 1.4 var(--gh-font-ui);
	font-style: normal;
	color: var(--gh-ink-muted);
}

.gh-prose figure {
	margin: var(--gh-s7) 0;
}

.gh-prose figure img {
	display: block;
	width: 100%;
	border-radius: var(--gh-r-image);
}

.gh-prose figcaption {
	margin-top: var(--gh-s3);
	font: 400 var(--gh-size-tiny) / 1.5 var(--gh-font-ui);
	color: var(--gh-ink-muted);
}

.gh-prose table {
	width: 100%;
	border-collapse: collapse;
	font-family: var(--gh-font-ui);
	font-size: 15px;
}

.gh-prose figure.wp-block-table,
.gh-prose .wp-block-table {
	overflow-x: auto;
	border: 1px solid var(--gh-rule);
	border-radius: var(--gh-r-table);
}

.gh-prose thead th {
	background: var(--gh-green-900);
	color: var(--gh-cream);
	font: 600 12px / 1.2 var(--gh-font-ui);
	letter-spacing: 0.08em;
	text-transform: uppercase;
	text-align: left;
	padding: 12px 16px;
}

.gh-prose tbody td,
.gh-prose tbody th {
	padding: 12px 16px;
	text-align: left;
	border-top: 1px solid var(--gh-rule);
}

.gh-prose tbody tr:nth-child(even) {
	background: var(--gh-sage-100);
}

.gh-prose code {
	font-size: 0.9em;
	padding: 2px 6px;
	background: var(--gh-sage-100);
	border-radius: var(--gh-r-small);
}

.gh-prose pre {
	overflow-x: auto;
	padding: var(--gh-s5);
	background: var(--gh-sage-100);
	border-radius: var(--gh-r-callout);
}

.gh-prose hr {
	margin: var(--gh-s8) 0;
	border: 0;
	border-top: 1px solid var(--gh-rule);
}

.gh-prose > *:first-child {
	margin-top: 0;
}

.gh-pagelinks {
	margin-top: var(--gh-s6);
	font-family: var(--gh-font-ui);
	font-size: var(--gh-size-small);
}

/* Block styles registered in inc/blocks.php. */
.is-style-gh-callout {
	padding: 22px 26px;
	background: var(--gh-sage-100);
	border-radius: var(--gh-r-callout);
}

.is-style-gh-panel {
	padding: 32px 36px;
	background: var(--gh-green-900);
	color: var(--gh-cream);
	border-radius: var(--gh-r-panel);
}

.is-style-gh-panel a {
	color: var(--gh-cream);
	border-bottom-color: var(--gh-clay-200);
}

.is-style-gh-hairline {
	border-top: 1px solid var(--gh-rule);
	opacity: 1;
}

.is-style-gh-figure img {
	border-radius: var(--gh-r-image);
}

/* ---------------------------------------------------------------- rail */

.gh-rail {
	min-width: 0;
}

.gh-rail__inner {
	position: sticky;
	top: calc(var(--gh-sticky-top) + var(--gh-s5));
	display: flex;
	flex-direction: column;
	gap: var(--gh-s5);
}

.gh-rail-card {
	padding: 20px 22px;
	background: var(--gh-white);
	border-radius: var(--gh-r-callout);
}

.gh-toc__title {
	margin-bottom: var(--gh-s3);
}

.gh-toc__list {
	display: flex;
	flex-direction: column;
	gap: 2px;
}

.gh-toc__link {
	display: block;
	padding: 6px 0 6px 12px;
	border-left: 2px solid transparent;
	font: 400 var(--gh-size-nav) / 1.35 var(--gh-font-ui);
	color: var(--gh-ink-muted);
	text-decoration: none;
	transition: color 120ms ease;
}

.gh-toc__link:hover {
	color: var(--gh-green-900);
}

.gh-toc__item.is-active .gh-toc__link {
	border-left-color: var(--gh-clay-700);
	color: var(--gh-green-900);
	font-weight: 600;
}

.gh-toc--inline {
	display: none;
	margin-bottom: var(--gh-s6);
	padding: 14px 18px;
	border: 1px solid var(--gh-green-30);
	border-radius: var(--gh-r-pill);
}

.gh-toc--inline[open] {
	border-radius: var(--gh-r-callout);
}

.gh-toc__summary {
	cursor: pointer;
	font: 600 var(--gh-size-small) / 1.2 var(--gh-font-ui);
	list-style: none;
}

.gh-toc__summary::-webkit-details-marker {
	display: none;
}

.gh-toc__summary::after {
	content: " ▾";
}

.gh-toc--inline .gh-toc__list {
	margin-top: var(--gh-s4);
	gap: var(--gh-s2);
}

.gh-toc--inline a {
	font-family: var(--gh-font-ui);
	font-size: var(--gh-size-small);
	color: var(--gh-ink-muted);
	text-decoration: none;
}

.gh-topic-card__eyebrow {
	margin-bottom: var(--gh-s2);
}

.gh-topic-card__link {
	font-family: var(--gh-font-display);
	font-size: 22px;
	line-height: 1.2;
	text-decoration: none;
}

.gh-topic-card__meta {
	margin: 6px 0 0;
	font-size: var(--gh-size-small);
	color: var(--gh-ink-muted);
}

/* ---------------------------------------------------------- newsletter */

.gh-newsletter {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(0, 420px);
	gap: var(--gh-s7);
	align-items: center;
	padding: 36px 40px;
	background: var(--gh-sage-200);
	border-radius: var(--gh-r-panel);
	margin-inline: calc(-1 * (var(--gh-gutter) - var(--gh-panel-inset)));
}

.gh-newsletter__title {
	font-size: 30px;
	line-height: 1.1;
	letter-spacing: -0.02em;
}

.gh-newsletter__copy,
.gh-newsletter__setup {
	margin: var(--gh-s2) 0 0;
	font-size: var(--gh-size-small);
	color: var(--gh-ink-on-sage);
}

.gh-subscribe {
	display: flex;
	gap: var(--gh-s2);
	min-width: 0;
}

.gh-subscribe .gh-input {
	flex: 1 1 auto;
	min-width: 0;
}

.gh-newsletter__setup {
	margin: 0;
	font-size: var(--gh-size-tiny);
	color: var(--gh-ink-muted);
}

.gh-newsletter--rail {
	grid-template-columns: minmax(0, 1fr);
	gap: var(--gh-s4);
	padding: 0;
	background: none;
	border-radius: 0;
	margin-inline: 0;
}

.gh-rail-card--news {
	background: var(--gh-sage-200);
}

.gh-newsletter--rail .gh-newsletter__title {
	font-size: 24px;
}

.gh-newsletter--rail .gh-subscribe {
	flex-direction: column;
}

/* ---------------------------------------------------------------- archive */

.gh-archive__head {
	display: grid;
	grid-template-columns: minmax(0, 1fr) 380px;
	gap: 48px;
	align-items: end;
}

.gh-archive__intro .gh-eyebrow {
	margin-bottom: var(--gh-s3);
}

.gh-archive__title {
	font-size: var(--gh-size-display);
	line-height: 1.02;
	letter-spacing: -0.025em;
}

.gh-archive__desc {
	max-width: 640px;
	margin: var(--gh-s5) 0 0;
	font-size: var(--gh-size-lede);
	line-height: 1.55;
	color: var(--gh-ink-muted);
}

.gh-archive__aside {
	padding: 22px 24px;
}

.gh-archive__aside-title {
	margin-bottom: var(--gh-s3);
}

.gh-tickers {
	display: flex;
	flex-wrap: wrap;
	gap: 6px;
	margin-bottom: var(--gh-s4);
}

.gh-ticker {
	display: inline-flex;
	padding: 7px 12px;
	border-radius: var(--gh-r-pill);
	background: var(--gh-sage-200);
	font: 500 var(--gh-size-tiny) / 1 var(--gh-font-ui);
	letter-spacing: 0.04em;
}

.gh-archive__aside-meta {
	margin: 0;
	font-size: var(--gh-size-tiny);
	color: var(--gh-ink-muted);
}

.gh-tabs {
	display: flex;
	flex-wrap: wrap;
	gap: var(--gh-s2);
	border-bottom: 1px solid var(--gh-rule);
	padding-bottom: 0;
}

.gh-tab {
	padding: 10px 18px;
	border-radius: var(--gh-r-pill) var(--gh-r-pill) 0 0;
	font: 400 var(--gh-size-small) / 1.2 var(--gh-font-ui);
	color: var(--gh-ink-muted);
	text-decoration: none;
}

.gh-tab:hover {
	background: var(--gh-sage-200);
	color: var(--gh-green-900);
}

.gh-tab.is-active {
	background: var(--gh-green-900);
	color: var(--gh-cream);
	font-weight: 600;
}

.gh-pagination {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
	gap: var(--gh-s2);
	margin-block: var(--gh-s9);
}

.gh-pagination .page-numbers {
	display: inline-flex;
	min-width: 40px;
	height: 40px;
	align-items: center;
	justify-content: center;
	padding-inline: 12px;
	border-radius: var(--gh-r-pill);
	font: 500 var(--gh-size-small) / 1 var(--gh-font-ui);
	color: var(--gh-green-900);
	text-decoration: none;
	transition: background-color 120ms ease;
}

.gh-pagination a.page-numbers:hover {
	background: var(--gh-sage-200);
}

.gh-pagination .page-numbers.current {
	background: var(--gh-green-900);
	color: var(--gh-cream);
}

.gh-pagination .next,
.gh-pagination .prev {
	border: 1px solid var(--gh-green-30);
}

.gh-empty {
	display: flex;
	flex-direction: column;
	gap: var(--gh-s5);
	align-items: flex-start;
	font-size: var(--gh-size-lede);
}

/* ---------------------------------------------------------------- author */

.gh-author-panel {
	display: grid;
	grid-template-columns: 160px minmax(0, 1fr) 300px;
	gap: var(--gh-s8);
	align-items: center;
	padding: 36px 40px;
	background: var(--gh-white);
	border-radius: var(--gh-r-panel);
}

.gh-author-panel__portrait img {
	display: block;
	width: 160px;
	height: 160px;
	border-radius: 50%;
	object-fit: cover;
}

.gh-author-panel__name {
	margin-top: var(--gh-s3);
	font-size: 52px;
	line-height: 1.05;
	letter-spacing: -0.02em;
}

.gh-author-panel__bio {
	max-width: 600px;
	margin: var(--gh-s4) 0 0;
	font-size: 17px;
	line-height: 1.55;
	color: var(--gh-ink-muted);
}

.gh-facts {
	margin: 0;
}

.gh-facts__row {
	display: flex;
	align-items: baseline;
	justify-content: space-between;
	gap: var(--gh-s4);
	padding-block: var(--gh-s3);
	border-top: 1px solid var(--gh-rule);
}

.gh-facts__row:first-child {
	border-top: 0;
	padding-top: 0;
}

.gh-facts dt {
	font-size: var(--gh-size-tiny);
	color: var(--gh-ink-muted);
}

.gh-facts dd {
	margin: 0;
	font: 600 var(--gh-size-body) / 1 var(--gh-font-ui);
}

.gh-facts dd a {
	text-decoration: none;
	border-bottom: 2px solid var(--gh-clay-700);
}

.gh-author-panel__links {
	display: flex;
	flex-wrap: wrap;
	gap: var(--gh-s2);
	margin-top: var(--gh-s5);
}

/* ---------------------------------------------------------------- learn */

.gh-learn-hero {
	display: grid;
	grid-template-columns: minmax(0, 1fr) 300px;
	gap: var(--gh-s8);
	align-items: center;
	padding: 48px 56px;
	background: var(--gh-sage-200);
	border-radius: var(--gh-r-panel);
	margin-inline: calc(-1 * (var(--gh-gutter) - var(--gh-panel-inset)));
}

.gh-learn-hero__title {
	margin-top: var(--gh-s3);
	font-size: var(--gh-size-display);
	line-height: 1.02;
	letter-spacing: -0.025em;
}

.gh-learn-hero__intro {
	max-width: 620px;
	margin: var(--gh-s5) 0 var(--gh-s7);
	font-size: var(--gh-size-lede);
	line-height: 1.55;
	color: var(--gh-ink-on-sage);
}

.gh-learn-hero__actions {
	display: flex;
	flex-wrap: wrap;
	gap: var(--gh-s3);
}

.gh-learn-hero__mark {
	display: flex;
	justify-content: center;
}

.gh-stages {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: var(--gh-s6);
}

.gh-stage {
	display: flex;
	flex-direction: column;
	gap: var(--gh-s5);
	padding: 28px;
	background: var(--gh-white);
	border-radius: var(--gh-r-card);
	min-width: 0;
}

.gh-stage__head {
	display: flex;
	align-items: center;
	gap: var(--gh-s4);
}

.gh-stage__label {
	margin-bottom: 4px;
}

.gh-stage__meta {
	margin: 0;
	font-size: var(--gh-size-tiny);
	color: var(--gh-ink-muted);
}

.gh-stage__item {
	padding-block: var(--gh-s3);
	border-top: 1px solid var(--gh-rule);
}

.gh-stage__item a {
	font-family: var(--gh-font-display);
	font-size: 20px;
	line-height: 1.25;
	text-decoration: none;
	border-bottom: 2px solid transparent;
}

.gh-stage__item a:hover {
	border-bottom-color: var(--gh-clay-700);
}

.gh-stage__more {
	align-self: flex-start;
	margin-top: auto;
}

.gh-cta-cards {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: var(--gh-s6);
}

.gh-cta-card {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: var(--gh-s3);
	padding: 32px 36px;
	background: var(--gh-white);
	border-radius: var(--gh-r-card);
	min-width: 0;
}

.gh-cta-card--green {
	background: var(--gh-green-900);
	color: var(--gh-cream);
}

.gh-cta-card__title {
	font-size: 30px;
	line-height: 1.1;
	letter-spacing: -0.02em;
}

.gh-cta-card__copy {
	margin: 0 0 var(--gh-s3);
	font-size: var(--gh-size-small);
	color: var(--gh-ink-muted);
}

.gh-cta-card--green .gh-cta-card__copy {
	color: var(--gh-cream-80);
}

/* ---------------------------------------------------------------- search */

.gh-search__head .gh-searchform {
	max-width: 640px;
}

.gh-search__count {
	margin: var(--gh-s4) 0 0;
	font-size: var(--gh-size-small);
	color: var(--gh-ink-muted);
}

.gh-results {
	display: flex;
	flex-direction: column;
}

.gh-result {
	padding-block: var(--gh-s6);
	border-top: 1px solid var(--gh-rule);
}

.gh-result:first-child {
	border-top: 0;
	padding-top: 0;
}

.gh-result__type {
	margin-bottom: var(--gh-s2);
}

.gh-result__title {
	font-size: 22px;
	line-height: 1.2;
}

.gh-result__title a {
	text-decoration: none;
	border-bottom: 2px solid transparent;
}

.gh-result__title a:hover {
	border-bottom-color: var(--gh-clay-700);
}

.gh-result__excerpt,
.gh-result__meta {
	margin: var(--gh-s2) 0 0;
	max-width: 720px;
	font-size: var(--gh-size-small);
	color: var(--gh-ink-muted);
}

/* ---------------------------------------------------------------- 404 */

.gh-404 {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: var(--gh-s4);
	text-align: center;
	padding-block: var(--gh-s9);
}

.gh-404__title {
	font-size: 42px;
	line-height: 1.1;
	letter-spacing: -0.02em;
}

.gh-404__copy {
	max-width: 480px;
	margin: 0;
	color: var(--gh-ink-muted);
}

.gh-404__actions {
	display: flex;
	flex-wrap: wrap;
	gap: var(--gh-s3);
	justify-content: center;
	margin-top: var(--gh-s3);
}

.gh-404__search {
	width: 100%;
	max-width: 520px;
	display: flex;
	justify-content: center;
}

.gh-404 .gh-topics__pills {
	justify-content: center;
}

/* ---------------------------------------------------------------- comments */

.gh-comments {
	margin-top: var(--gh-s9);
	padding-top: var(--gh-s7);
	border-top: 1px solid var(--gh-rule);
}

.gh-comments__title {
	font-size: 28px;
	line-height: 1.1;
	margin-bottom: var(--gh-s5);
}

.gh-comments__list,
.gh-comments__list .children {
	display: flex;
	flex-direction: column;
	gap: var(--gh-s5);
}

.gh-comments__list .children {
	margin-top: var(--gh-s5);
	padding-left: var(--gh-s6);
	border-left: 1px solid var(--gh-rule);
}

.gh-comments .comment-body {
	padding: 20px 22px;
	background: var(--gh-white);
	border-radius: var(--gh-r-callout);
}

.gh-comments .comment-author img {
	border-radius: 50%;
	vertical-align: middle;
	margin-right: var(--gh-s2);
}

.gh-comments .comment-meta {
	font-size: var(--gh-size-tiny);
	color: var(--gh-ink-muted);
}

.gh-comment-form input[type="text"],
.gh-comment-form input[type="email"],
.gh-comment-form input[type="url"],
.gh-comment-form textarea {
	width: 100%;
	padding: 12px 16px;
	border: 1px solid var(--gh-green-30);
	border-radius: var(--gh-r-callout);
	background: var(--gh-white);
	font: 400 var(--gh-size-body) / 1.5 var(--gh-font-ui);
}

.gh-comment-form .form-submit input {
	cursor: pointer;
}

/* --------------------------------------------------------- widget areas */

.gh-widget h2,
.gh-widget h3,
.gh-rail .widget_block h2,
.gh-rail .wp-block-heading {
	font-family: var(--gh-font-ui);
	font-size: var(--gh-size-eyebrow);
	font-weight: 700;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: var(--gh-clay-700);
	margin-bottom: var(--gh-s3);
}

.gh-rail .wp-block-group,
.gh-rail .widget_block {
	font-size: var(--gh-size-small);
}

.gh-footer__widgets {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
	gap: var(--gh-s6);
}

.gh-footer__widgets h2,
.gh-footer__widgets h3,
.gh-footer__widgets .wp-block-heading {
	font-family: var(--gh-font-ui);
	font-size: var(--gh-size-eyebrow);
	font-weight: 700;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: var(--gh-clay-200);
	margin-bottom: var(--gh-s4);
}

.gh-footer__widgets ul {
	display: flex;
	flex-direction: column;
	gap: 10px;
}

.gh-footer__widgets a {
	font-size: var(--gh-size-nav);
	color: var(--gh-cream);
	text-decoration: none;
}

.gh-footer__widgets a:hover {
	text-decoration: underline;
}

/* ------------------------------------------------------- extra block styles */

.gh-prose .is-style-gh-pullquote {
	padding: 6px 0 6px 26px;
	border-left: 3px solid var(--gh-clay-500);
}

.gh-prose .is-style-gh-dash li::before {
	content: "—";
	color: var(--gh-clay-500);
}

.gh-prose .is-style-gh-figures thead th {
	background: var(--gh-green-900);
}

/* ---------------------------------------------------------------- ads */

.gh-ad {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 6px;
	margin-block: var(--gh-s7);
}

.gh-ad--leaderboard {
	margin-block: var(--gh-s5);
}

.gh-ad__label {
	font: 400 10px / 1 var(--gh-font-ui);
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: var(--gh-ink-muted);
}

.gh-ad__unit {
	width: 100%;
}

.gh-ad--rail {
	margin: 0;
}

/* ---------------------------------------------------------------- footer */

.gh-footer {
	margin-top: var(--gh-s9);
	padding-bottom: var(--gh-s6);
}

.gh-footer__panel {
	padding: 48px 36px 28px;
	background: var(--gh-green-900);
	color: var(--gh-cream);
	border-radius: var(--gh-r-panel);
}

.gh-footer__cols {
	display: grid;
	grid-template-columns: 1.4fr 1fr 1fr 1fr;
	gap: 40px;
}

.gh-footer__cols--solo {
	grid-template-columns: 1.4fr 1fr;
}

.gh-footer-brand {
	min-width: 0;
}

.gh-footer__tagline {
	max-width: 340px;
	margin: var(--gh-s4) 0 0;
	font-size: var(--gh-size-nav);
	line-height: 1.55;
	color: var(--gh-cream-70);
}

.gh-footer-col {
	min-width: 0;
}

.gh-footer-col__title {
	margin-bottom: var(--gh-s4);
	color: var(--gh-clay-200);
}

.gh-footer-col__list {
	display: flex;
	flex-direction: column;
	gap: 10px;
}

.gh-footer-col__list a {
	font-size: var(--gh-size-nav);
	text-decoration: none;
	color: var(--gh-cream);
}

.gh-footer-col__list a:hover {
	text-decoration: underline;
}

.gh-footer__widgets {
	margin-top: var(--gh-s7);
}

.gh-footer__bottom {
	display: flex;
	align-items: baseline;
	justify-content: space-between;
	gap: var(--gh-s5);
	flex-wrap: wrap;
	margin-top: var(--gh-s8);
	padding-top: var(--gh-s5);
	border-top: 1px solid var(--gh-cream-15);
}

.gh-footer__copy,
.gh-footer__note {
	margin: 0;
	font-size: var(--gh-size-tiny);
	color: var(--gh-cream-60);
}

/* ---------------------------------------------------------------- 1024-1279 */

@media ( max-width: 1279px ) {
	.gh-hero {
		grid-template-columns: minmax(0, 1fr) 380px;
		padding: 44px 44px 40px;
	}

	.gh-hero__thumb {
		height: 340px;
	}

	.gh-article__body {
		grid-template-columns: minmax(0, var(--gh-well)) var(--gh-rail);
		gap: var(--gh-s7);
	}

	.gh-learn-band,
	.gh-learn-hero {
		padding: 40px;
	}
}

/* ---------------------------------------------------------------- <1024 */

@media ( max-width: 1023px ) {
	.gh-article__body,
	.gh-article__body--wide {
		grid-template-columns: minmax(0, 1fr);
		gap: var(--gh-s8);
		max-width: var(--gh-well);
	}

	.gh-well {
		max-width: 100%;
	}

	.gh-rail__inner {
		position: static;
	}

	.gh-toc--rail {
		display: none;
	}

	.gh-toc--inline {
		display: block;
	}

	.gh-cards--3 {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.gh-markets,
	.gh-archive__head,
	.gh-learn-hero,
	.gh-newsletter {
		grid-template-columns: minmax(0, 1fr);
	}

	.gh-archive__head {
		gap: var(--gh-s6);
		align-items: start;
	}

	.gh-learn-hero__mark {
		display: none;
	}

	.gh-stages,
	.gh-cta-cards {
		grid-template-columns: minmax(0, 1fr);
	}

	.gh-author-panel {
		grid-template-columns: 120px minmax(0, 1fr);
		gap: var(--gh-s6);
		align-items: start;
	}

	.gh-author-panel__portrait img {
		width: 120px;
		height: 120px;
	}

	.gh-author-panel__facts {
		grid-column: 1 / -1;
	}

	.gh-footer__cols,
	.gh-footer__cols--solo {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.gh-ad--rail {
		display: none;
	}
}

/* ---------------------------------------------------------------- <768 */

@media ( max-width: 1279px ) {
	.gh-nav {
		display: none;
	}

	.gh-burger {
		display: block;
	}
}

@media ( max-width: 767px ) {
	.gh-header__search,
	.gh-header__cta {
		display: none;
	}

	.gh-band {
		margin-block: var(--gh-s8);
	}

	.gh-hero {
		grid-template-columns: minmax(0, 1fr);
		gap: var(--gh-s6);
		padding: 24px 24px 28px;
	}

	.gh-hero__media {
		order: -1;
	}

	.gh-hero__thumb {
		height: auto;
		aspect-ratio: 4 / 3;
		border-radius: var(--gh-r-image);
	}

	.gh-hero__deck {
		margin-bottom: var(--gh-s5);
	}

	.gh-hero__foot {
		gap: var(--gh-s4);
	}

	.gh-cards--3 {
		grid-template-columns: minmax(0, 1fr);
	}

	.gh-card--featured {
		grid-template-columns: minmax(0, 1fr);
		gap: var(--gh-s4);
	}

	.gh-card--featured .gh-card__thumb {
		height: auto;
		aspect-ratio: 3 / 2;
	}

	.gh-card--featured .gh-card__body {
		padding: var(--gh-s4) var(--gh-s2) var(--gh-s2);
	}

	.gh-card__title--featured {
		font-size: 28px;
	}

	.gh-card-panel {
		padding: 22px 20px 18px;
	}

	.gh-markets__row {
		grid-template-columns: minmax(0, 1fr);
		gap: 6px;
	}

	.gh-learn-band,
	.gh-learn-hero,
	.gh-newsletter {
		padding: 28px 24px;
	}

	.gh-learn-band__head {
		flex-direction: column;
		align-items: flex-start;
		gap: var(--gh-s2);
		margin-bottom: var(--gh-s6);
	}

	.gh-learn-band__note {
		white-space: normal;
	}

	.gh-learn-path {
		grid-template-columns: minmax(0, 1fr);
		gap: var(--gh-s6);
	}

	.gh-learn-path::before {
		top: 24px;
		bottom: 24px;
		left: 23px;
		right: auto;
		width: 2px;
		height: auto;
	}

	.gh-learn-path__step {
		display: grid;
		grid-template-columns: 48px minmax(0, 1fr);
		grid-template-rows: auto auto;
		column-gap: var(--gh-s4);
		row-gap: 4px;
		align-items: center;
	}

	.gh-learn-path__num {
		grid-row: 1 / span 2;
	}

	.gh-article__head {
		padding-top: var(--gh-s5);
	}

	.gh-article__byline {
		align-items: flex-start;
		flex-direction: column;
		gap: var(--gh-s4);
	}

	.gh-article__figure img {
		aspect-ratio: 3 / 2;
	}

	.gh-article__deck {
		font-size: var(--gh-size-lede);
	}

	.gh-author-card,
	.gh-author-panel {
		grid-template-columns: minmax(0, 1fr);
		text-align: left;
	}

	.gh-author-card {
		padding: 20px;
	}

	.gh-author-panel__name {
		font-size: 34px;
	}

	.gh-prose blockquote {
		padding-left: 18px;
	}

	.gh-footer__panel {
		padding: 32px 24px 24px;
	}

	.gh-footer__cols,
	.gh-footer__cols--solo {
		gap: var(--gh-s6);
	}

	.gh-footer__bottom {
		flex-direction: column;
		gap: var(--gh-s2);
	}

	.gh-searchform {
		flex-wrap: wrap;
	}

	.gh-searchform__input {
		flex-basis: 100%;
	}
}

@media ( max-width: 479px ) {
	.gh-footer__cols,
	.gh-footer__cols--solo {
		grid-template-columns: minmax(0, 1fr);
	}
}

/* ---------------------------------------------------------------- motion */

@media ( prefers-reduced-motion: reduce ) {
	html {
		scroll-behavior: auto;
	}

	*,
	*::before,
	*::after {
		transition-duration: 0.01ms !important;
		animation-duration: 0.01ms !important;
	}

	.gh-card:hover .gh-thumb__img {
		transform: none;
	}
}

/* ---------------------------------------------------------------- print */

@media print {
	.gh-header,
	.gh-footer,
	.gh-rail,
	.gh-ad,
	.gh-actions,
	.gh-band--readnext {
		display: none !important;
	}

	body {
		background: #fff;
	}
}
