:root {
	--ygyp-ink: #071b33;
	--ygyp-teal: #12626a;
	--ygyp-gold: #a57c35;
	--ygyp-coral: #b63f32;
	--ygyp-paper: #fbf8f1;
	--ygyp-soft: #eee8dc;
	--ygyp-muted: #5f6872;
	--ygyp-line: rgba(7, 27, 51, .17);
	--ygyp-serif: Georgia, "Times New Roman", serif;
	--ygyp-sans: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

body.ygyp-journal-active {
	background: var(--ygyp-paper);
	color: var(--ygyp-ink);
}

.ygyp-journal,
.ygyp-journal * {
	box-sizing: border-box;
}

.ygyp-journal {
	width: min(100% - 40px, 1240px);
	margin-inline: auto;
	font-family: var(--ygyp-sans);
}

.ygyp-journal a {
	color: inherit;
	text-decoration-thickness: 1px;
	text-underline-offset: .18em;
}

.screen-reader-text {
	position: absolute !important;
	overflow: hidden;
	clip: rect(1px, 1px, 1px, 1px);
	width: 1px;
	height: 1px;
	padding: 0;
	border: 0;
	margin: -1px;
	white-space: nowrap;
}

.ygyp-masthead {
	padding: clamp(46px, 7vw, 96px) 0 38px;
	border-bottom: 1px solid var(--ygyp-line);
}

.ygyp-masthead-topline {
	display: flex;
	justify-content: space-between;
	gap: 24px;
	padding-bottom: 22px;
	margin-bottom: clamp(38px, 6vw, 76px);
	border-bottom: 1px solid var(--ygyp-ink);
	font-size: 11px;
	font-weight: 700;
	letter-spacing: .25em;
	text-transform: uppercase;
}

.ygyp-masthead-topline span:first-child {
	font-family: var(--ygyp-serif);
	font-size: clamp(22px, 3vw, 38px);
	font-weight: 400;
	letter-spacing: -.02em;
	text-transform: none;
}

.ygyp-masthead h1 {
	max-width: 1050px;
	margin: 0;
	font-family: var(--ygyp-serif);
	font-size: clamp(44px, 7vw, 96px);
	font-weight: 500;
	letter-spacing: -.055em;
	line-height: .98;
}

.ygyp-eyebrow {
	margin: 0 0 14px;
	color: var(--ygyp-gold);
	font-size: 12px;
	font-weight: 800;
	letter-spacing: .2em;
	text-transform: uppercase;
}

.ygyp-deck {
	max-width: 760px;
	margin: 24px 0 0;
	color: var(--ygyp-muted);
	font-family: var(--ygyp-serif);
	font-size: clamp(20px, 2.2vw, 28px);
	font-style: italic;
	line-height: 1.45;
}

.ygyp-section-nav {
	display: flex;
	flex-wrap: wrap;
	gap: 14px 30px;
	margin-top: 42px;
}

.ygyp-section-nav a {
	position: relative;
	font-size: 12px;
	font-weight: 800;
	letter-spacing: .12em;
	text-decoration: none;
	text-transform: uppercase;
}

.ygyp-section-nav a::after {
	position: absolute;
	right: 0;
	bottom: -8px;
	left: 0;
	height: 2px;
	background: var(--ygyp-gold);
	content: "";
	transform: scaleX(0);
	transform-origin: left;
	transition: transform .2s ease;
}

.ygyp-section-nav a:hover::after,
.ygyp-section-nav a[aria-current="page"]::after {
	transform: scaleX(1);
}

.ygyp-feature-section,
.ygyp-latest,
.ygyp-related {
	padding: clamp(52px, 7vw, 92px) 0;
}

.ygyp-section-heading {
	margin-bottom: 32px;
}

.ygyp-section-heading > span {
	display: block;
	margin-bottom: 8px;
	color: var(--ygyp-gold);
	font-size: 11px;
	font-weight: 800;
	letter-spacing: .2em;
	text-transform: uppercase;
}

.ygyp-section-heading h2 {
	margin: 0;
	font-family: var(--ygyp-serif);
	font-size: clamp(34px, 4.5vw, 58px);
	font-weight: 500;
	letter-spacing: -.035em;
	line-height: 1.05;
}

.ygyp-section-heading--compact {
	margin-bottom: 18px;
}

.ygyp-feature-card {
	display: grid;
	grid-template-columns: minmax(0, 1.7fr) minmax(290px, .8fr);
	gap: clamp(28px, 4vw, 64px);
	align-items: center;
}

.ygyp-feature-image {
	display: block;
	overflow: hidden;
	background: #fff;
	box-shadow: 0 18px 52px rgba(7, 27, 51, .12);
	text-decoration: none;
}

.ygyp-feature-image img {
	display: block;
	width: 100%;
	height: auto;
	transition: transform .5s ease;
}

.ygyp-feature-image:hover img {
	transform: scale(1.015);
}

.ygyp-feature-copy h2 {
	margin: 12px 0 18px;
	font-family: var(--ygyp-serif);
	font-size: clamp(32px, 4vw, 54px);
	font-weight: 500;
	letter-spacing: -.04em;
	line-height: 1.04;
}

.ygyp-feature-copy h2 a,
.ygyp-story-card h3 a {
	text-decoration: none;
}

.ygyp-feature-copy p {
	color: var(--ygyp-muted);
	font-size: 17px;
	line-height: 1.7;
}

.ygyp-card-kicker {
	color: var(--ygyp-coral);
	font-size: 11px;
	font-weight: 800;
	letter-spacing: .16em;
	text-transform: uppercase;
}

.ygyp-feature-meta,
.ygyp-card-read {
	color: var(--ygyp-muted);
	font-size: 12px;
	letter-spacing: .04em;
}

.ygyp-feature-meta span {
	padding-inline: 6px;
}

.ygyp-read-story {
	display: inline-flex;
	gap: 12px;
	align-items: center;
	margin-top: 25px;
	padding-bottom: 6px;
	border-bottom: 2px solid var(--ygyp-gold);
	font-size: 12px;
	font-weight: 800;
	letter-spacing: .14em;
	text-decoration: none;
	text-transform: uppercase;
}

.ygyp-latest,
.ygyp-related {
	border-top: 1px solid var(--ygyp-line);
}

.ygyp-story-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 38px 24px;
}

.ygyp-story-card {
	min-width: 0;
}

.ygyp-card-image {
	display: block;
	overflow: hidden;
	margin-bottom: 20px;
	background: var(--ygyp-soft);
	aspect-ratio: 16 / 10;
}

.ygyp-card-image img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform .4s ease;
}

.ygyp-story-card:hover .ygyp-card-image img {
	transform: scale(1.025);
}

.ygyp-story-card h3 {
	margin: 10px 0 12px;
	font-family: var(--ygyp-serif);
	font-size: clamp(24px, 2.5vw, 34px);
	font-weight: 500;
	letter-spacing: -.025em;
	line-height: 1.12;
}

.ygyp-story-card p {
	margin: 0 0 16px;
	color: var(--ygyp-muted);
	font-size: 15px;
	line-height: 1.6;
}

.ygyp-article-shell {
	padding: clamp(42px, 6vw, 80px) 0 clamp(70px, 9vw, 120px);
}

.ygyp-reading-progress {
	position: fixed;
	z-index: 1000;
	top: 0;
	right: 0;
	left: 0;
	height: 3px;
	pointer-events: none;
}

.ygyp-reading-progress span {
	display: block;
	width: 0;
	height: 100%;
	background: var(--ygyp-gold);
}

.ygyp-article-header {
	width: min(100%, 1050px);
	margin: 0 auto 24px;
}

.ygyp-breadcrumb {
	display: flex;
	flex-wrap: wrap;
	gap: 9px;
	align-items: center;
	margin-bottom: 20px;
	color: var(--ygyp-teal);
	font-size: 11px;
	font-weight: 800;
	letter-spacing: .15em;
	text-transform: uppercase;
}

.ygyp-breadcrumb a {
	text-decoration: none;
}

.ygyp-visible-title {
	max-width: 1000px;
	margin: 0 0 20px;
	font-family: var(--ygyp-serif);
	font-size: clamp(45px, 6vw, 82px);
	font-weight: 500;
	letter-spacing: -.052em;
	line-height: .98;
}

.ygyp-article-meta {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	align-items: center;
	color: var(--ygyp-muted);
	font-size: 12px;
	letter-spacing: .04em;
}

.ygyp-featured-artwork {
	width: min(100%, 980px);
	margin: 30px auto clamp(48px, 7vw, 82px);
	background: #fff;
	box-shadow: 0 20px 60px rgba(7, 27, 51, .13);
}

.ygyp-featured-artwork img {
	display: block;
	width: 100%;
	height: auto;
}

.ygyp-audio-card {
	display: grid;
	grid-template-columns: auto minmax(220px, 1fr) minmax(280px, .9fr);
	gap: 22px;
	align-items: center;
	width: min(100%, 920px);
	margin: -30px auto clamp(54px, 7vw, 82px);
	padding: 24px 28px;
	border: 1px solid var(--ygyp-line);
	background: #fff;
	box-shadow: 0 12px 38px rgba(7, 27, 51, .07);
}

.ygyp-audio-mark {
	display: grid;
	place-items: center;
	width: 48px;
	height: 48px;
	border-radius: 50%;
	background: var(--ygyp-gold);
	color: #fff;
	font-size: 16px;
	text-indent: 2px;
}

.ygyp-audio-copy > span {
	color: var(--ygyp-coral);
	font-size: 10px;
	font-weight: 800;
	letter-spacing: .17em;
	text-transform: uppercase;
}

.ygyp-audio-copy h2 {
	margin: 3px 0 2px;
	font-family: var(--ygyp-serif);
	font-size: clamp(22px, 2.4vw, 30px);
	font-weight: 500;
	letter-spacing: -.025em;
}

.ygyp-audio-copy p {
	margin: 0;
	color: var(--ygyp-muted);
	font-size: 13px;
	line-height: 1.45;
}

.ygyp-audio-player .mejs-container,
.ygyp-audio-player audio {
	width: 100% !important;
}

.ygyp-article-layout {
	display: grid;
	grid-template-columns: 150px minmax(0, 760px);
	gap: clamp(35px, 5vw, 70px);
	justify-content: center;
	align-items: start;
}

.ygyp-article-rail {
	position: sticky;
	top: 80px;
	display: flex;
	flex-direction: column;
	gap: 12px;
	padding-top: 7px;
	font-size: 12px;
}

.ygyp-article-rail a,
.ygyp-copy-link {
	width: fit-content;
	padding: 0;
	border: 0;
	background: transparent;
	color: var(--ygyp-muted);
	font: inherit;
	text-decoration: none;
	cursor: pointer;
}

.ygyp-article-rail a:hover,
.ygyp-copy-link:hover {
	color: var(--ygyp-ink);
	text-decoration: underline;
}

.ygyp-rail-label {
	margin-bottom: 4px;
	color: var(--ygyp-gold);
	font-size: 10px;
	font-weight: 800;
	letter-spacing: .18em;
	text-transform: uppercase;
}

.ygyp-article-content {
	min-width: 0;
	font-family: var(--ygyp-sans);
	font-size: clamp(18px, 1.55vw, 20px);
	line-height: 1.82;
}

.ygyp-article-content > p:first-of-type {
	font-family: var(--ygyp-serif);
	font-size: clamp(23px, 2.4vw, 30px);
	line-height: 1.55;
}

.ygyp-article-content > p:first-of-type::first-letter {
	float: left;
	margin: .08em .1em 0 0;
	color: var(--ygyp-gold);
	font-family: var(--ygyp-serif);
	font-size: 4.2em;
	line-height: .72;
}

.ygyp-article-content h2 {
	margin: 2.2em 0 .65em;
	font-family: var(--ygyp-serif);
	font-size: clamp(32px, 4vw, 48px);
	font-weight: 500;
	letter-spacing: -.035em;
	line-height: 1.08;
}

.ygyp-article-content h2::before {
	display: block;
	width: 58px;
	height: 4px;
	margin-bottom: 20px;
	background: var(--ygyp-gold);
	content: "";
}

.ygyp-article-content h3 {
	margin: 1.8em 0 .6em;
	font-family: var(--ygyp-serif);
	font-size: clamp(26px, 3vw, 36px);
	line-height: 1.15;
}

.ygyp-article-content p,
.ygyp-article-content ul,
.ygyp-article-content ol {
	margin-top: 0;
	margin-bottom: 1.35em;
}

.ygyp-article-content strong {
	color: var(--ygyp-ink);
}

.ygyp-article-content blockquote,
.ygyp-article-content .wp-block-quote {
	position: relative;
	margin: clamp(40px, 7vw, 72px) -70px;
	padding: 8px 0 8px 46px;
	border: 0;
	border-left: 4px solid var(--ygyp-gold);
	color: var(--ygyp-ink);
	font-family: var(--ygyp-serif);
	font-size: clamp(30px, 4vw, 48px);
	font-style: italic;
	line-height: 1.2;
}

.ygyp-article-content blockquote p {
	margin: 0;
}

.ygyp-article-content figure.wp-block-image,
.ygyp-article-content .wp-block-image {
	width: min(860px, calc(100vw - 40px));
	max-width: none;
	margin: clamp(42px, 7vw, 78px) 0 clamp(42px, 7vw, 78px) 50%;
	transform: translateX(-50%);
}

.ygyp-article-content figure.wp-block-image img,
.ygyp-article-content .wp-block-image img {
	display: block;
	width: 100%;
	height: auto;
	box-shadow: 0 14px 42px rgba(7, 27, 51, .1);
}

.ygyp-article-content figcaption {
	margin-top: 12px;
	color: var(--ygyp-muted);
	font-size: 13px;
	font-style: italic;
	line-height: 1.5;
	text-align: left;
}

.ygyp-article-content hr,
.ygyp-article-content .wp-block-separator {
	width: 80px;
	margin: 58px auto;
	border: 0;
	border-top: 1px solid var(--ygyp-gold);
}

.ygyp-article-content .wp-block-button__link {
	padding: 15px 24px;
	border-radius: 0;
	background: var(--ygyp-ink);
	color: #fff;
	font-size: 12px;
	font-weight: 800;
	letter-spacing: .12em;
	text-transform: uppercase;
}

.ygyp-related {
	width: min(100%, 1100px);
	margin: clamp(70px, 9vw, 120px) auto 0;
}

.navigation.pagination {
	margin-top: 48px;
}

.navigation.pagination .nav-links {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	justify-content: center;
}

.navigation.pagination .page-numbers {
	padding: 9px 13px;
	border: 1px solid var(--ygyp-line);
	text-decoration: none;
}

.navigation.pagination .current {
	border-color: var(--ygyp-ink);
	background: var(--ygyp-ink);
	color: #fff;
}

@media (max-width: 900px) {
	.ygyp-feature-card {
		grid-template-columns: 1fr;
	}

	.ygyp-feature-copy {
		max-width: 720px;
	}

	.ygyp-story-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.ygyp-article-layout {
		grid-template-columns: 1fr;
		max-width: 760px;
		margin-inline: auto;
	}

	.ygyp-article-rail {
		position: static;
		flex-direction: row;
		flex-wrap: wrap;
		gap: 12px 22px;
		padding-bottom: 20px;
		border-bottom: 1px solid var(--ygyp-line);
	}

	.ygyp-rail-label {
		width: 100%;
	}

	.ygyp-article-content blockquote,
	.ygyp-article-content .wp-block-quote {
		margin-inline: 0;
	}

	.ygyp-audio-card {
		grid-template-columns: auto 1fr;
	}

	.ygyp-audio-player {
		grid-column: 1 / -1;
	}
}

@media (max-width: 640px) {
	.ygyp-journal {
		width: min(100% - 28px, 1240px);
	}

	.ygyp-masthead-topline {
		display: block;
	}

	.ygyp-masthead-topline span {
		display: block;
	}

	.ygyp-masthead-topline span:last-child {
		margin-top: 12px;
		font-size: 9px;
	}

	.ygyp-section-nav {
		display: grid;
		grid-template-columns: 1fr 1fr;
		gap: 18px;
	}

	.ygyp-story-grid {
		grid-template-columns: 1fr;
	}

	.ygyp-featured-artwork {
		width: calc(100% + 12px);
		margin-left: -6px;
		box-shadow: 0 10px 32px rgba(7, 27, 51, .11);
	}

	.ygyp-audio-card {
		grid-template-columns: 1fr;
		margin-top: -18px;
		padding: 22px;
	}

	.ygyp-audio-mark {
		width: 42px;
		height: 42px;
	}

	.ygyp-featured-artwork img,
	.ygyp-article-content figure.wp-block-image img,
	.ygyp-article-content .wp-block-image img {
		cursor: zoom-in;
	}

	.ygyp-article-content figure.wp-block-image,
	.ygyp-article-content .wp-block-image {
		width: calc(100vw - 20px);
	}

	.ygyp-article-content blockquote,
	.ygyp-article-content .wp-block-quote {
		padding-left: 25px;
	}
}

@media (prefers-reduced-motion: reduce) {
	.ygyp-journal *,
	.ygyp-journal *::before,
	.ygyp-journal *::after {
		scroll-behavior: auto !important;
		transition: none !important;
	}
}

.ygyp-lightbox {
	position: fixed;
	z-index: 99999;
	inset: 0;
	display: grid;
	place-items: center;
	padding: 18px;
	background: rgba(5, 16, 30, .94);
	cursor: zoom-out;
}

.ygyp-lightbox img {
	max-width: 96vw;
	max-height: 92vh;
	object-fit: contain;
}

.ygyp-lightbox[hidden] {
	display: none;
}

/* v1.2.0 — canonical Journal hub + artwork-led featured story */
.ygyp-journal-wordmark {
	font-family: var(--ygyp-serif);
	font-size: clamp(22px, 3vw, 38px);
	font-weight: 400;
	letter-spacing: -.02em;
	line-height: 1;
	text-decoration: none;
	text-transform: none;
}

.ygyp-feature-card--artwork-led {
	display: block;
}

.ygyp-feature-card--artwork-led .ygyp-feature-kicker {
	display: inline-block;
	margin: 0 0 14px;
	color: var(--ygyp-teal);
	font-size: 11px;
	font-weight: 800;
	letter-spacing: .15em;
	text-decoration: none;
	text-transform: uppercase;
}

.ygyp-feature-card--artwork-led .ygyp-feature-image {
	width: 100%;
	box-shadow: 0 18px 52px rgba(7, 27, 51, .12);
}

.ygyp-feature-footer {
	display: flex;
	gap: 24px;
	align-items: flex-start;
	justify-content: space-between;
	padding-top: 18px;
}

.ygyp-feature-footer-copy {
	min-width: 0;
	max-width: 760px;
}

.ygyp-feature-footer h3 {
	margin: 0 0 10px;
	font-family: var(--ygyp-serif);
	font-size: clamp(28px, 3.5vw, 44px);
	font-weight: 500;
	letter-spacing: -.035em;
	line-height: 1.06;
}

.ygyp-feature-footer h3 a {
	text-decoration: none;
}

.ygyp-feature-footer p {
	margin: 0;
	color: var(--ygyp-muted);
	font-size: 16px;
	line-height: 1.65;
}

.ygyp-feature-footer .ygyp-read-story {
	flex: 0 0 auto;
	margin-top: 0;
}

.ygyp-empty-state {
	margin: 0;
	padding: 26px 0;
	border-top: 1px solid var(--ygyp-line);
	border-bottom: 1px solid var(--ygyp-line);
	color: var(--ygyp-muted);
	font-family: var(--ygyp-serif);
	font-size: 19px;
	font-style: italic;
}

@media (max-width: 640px) {
	.ygyp-feature-footer {
		flex-direction: column;
		gap: 12px;
	}

	.ygyp-feature-footer .ygyp-read-story {
		margin-top: 4px;
	}
}
