/* stylelint-disable color-named, no-descending-specificity */
:root {
	--navy: #16324f;
	--ink: #1a1f26;
	--muted: #69727b;
	--paper: #faf9f5;
	--white: #fff;
	--amber: #c8742b;
	--line: #e7e3db;
	--plum: #4a304c;
	--serif: "Noto Serif SC", "Songti SC", simsun, serif;
	--sans: "Noto Sans SC", "Microsoft YaHei", sans-serif;
}

.archive-shell {
	min-height: 774px;
	padding-top: 38px;
}

.archive-heading {
	display: flex;
	justify-content: space-between;
	align-items: end;
	padding: 22px 0 28px;
}

.archive-heading h1 {
	margin: 0 0 3px;
	color: var(--navy);
	font: 700 36px/1.25 var(--serif);
}

.archive-heading p {
	margin: 0;
	color: #66727d;
	font-size: 13px;
}

.sort-tabs {
	display: flex;
	padding: 3px;
	border: 1px solid #e4ded3;
	border-radius: 23px;
	background: #fff;
}

.sort-tabs button {
	min-width: 58px;
	padding: 7px 15px;
	border: 0;
	border-radius: 18px;
	background: transparent;
	color: #69737d;
}

.sort-tabs button.is-active {
	background: var(--navy);
	color: #fff;
	font-weight: 600;
}

.archive-list {
	display: grid;
	gap: 6px;
}

.archive-card {
	display: grid;
	grid-template-columns: 240px minmax(0, 1fr) 64px;
	gap: 28px;
	align-items: center;
	min-height: 184px;
	padding: 17px;
	border: 1px solid #e6e0d5;
	border-radius: 14px;
	background: #fff;
}

.archive-art {
	position: relative;
	height: 148px;
	overflow: hidden;
	border-radius: 10px;
	background: var(--archive-tone, #244b68);
	color: #fff;
	text-decoration: none;
}

.archive-art img {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.archive-art > span {
	position: absolute;
	right: -3px;
	top: -20px;
	opacity: 0.1;
	font: 700 130px/1 var(--serif);
}

.archive-art > b {
	position: absolute;
	bottom: 12px;
	left: 12px;
	padding: 3px 9px;
	border-radius: 7px;
	background: rgba(255, 255, 255, 0.18);
	font-size: 11px;
}

.archive-copy h2 {
	margin: 0 0 10px;
	font: 600 20px/1.45 var(--serif);
}

.archive-copy h2 a {
	color: var(--ink);
	text-decoration: none;
}

.archive-copy > p {
	margin: 0 0 16px;
	color: #64717e;
	font-size: 13px;
	line-height: 1.8;
}

.archive-meta {
	display: flex;
	gap: 11px;
	align-items: center;
	color: #59636b;
	font-size: 12px;
}

.archive-meta .avatar {
	width: 24px;
	height: 24px;
	background: #2a607d;
	color: #fff;
	font-size: 11px;
}

.archive-meta strong {
	color: #53606a;
}

.archive-meta i {
	color: #baa78e;
	font-style: normal;
}

.card-like {
	display: grid;
	gap: 5px;
	justify-items: center;
	border: 0;
	background: transparent;
	color: #e06f28;
}

.card-like strong {
	color: #53606a;
	font-size: 13px;
}

.pagination {
	display: flex;
	gap: 8px;
	justify-content: center;
	padding: 36px 0 78px;
}

.pagination button {
	min-width: 38px;
	height: 38px;
	padding: 0 13px;
	border: 1px solid #dfd9ce;
	border-radius: 9px;
	background: #fff;
	color: #52606c;
}

.pagination .page-numbers {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 38px;
	height: 38px;
	padding: 0 12px;
	border: 1px solid var(--line);
	border-radius: 9px;
	background: #fff;
	color: #506071;
}

.pagination .page-numbers.current {
	background: var(--navy);
	color: #fff;
}

.pagination button.is-current {
	border-color: var(--navy);
	background: var(--navy);
	color: #fff;
}

.archive-footer {
	padding: 42px 0;
}

.archive-footer .footer-inner {
	align-items: center;
}

@media (max-width: 760px) {

	.archive-shell {
		padding-top: 22px;
	}

	.archive-heading {
		align-items: flex-start;
	}

	.archive-heading h1 {
		font-size: 30px;
	}

	.sort-tabs button {
		min-width: auto;
		padding: 6px 10px;
	}

	.archive-card {
		grid-template-columns: 108px minmax(0, 1fr);
		gap: 14px;
		min-height: 142px;
		padding: 12px;
	}

	.archive-art {
		height: 116px;
	}

	.archive-art > span {
		font-size: 90px;
	}

	.archive-copy h2 {
		font-size: 16px;
	}

	.archive-copy > p {
		display: none;
	}

	.archive-meta {
		flex-wrap: wrap;
		gap: 6px;
	}

	.card-like {
		grid-column: 2;
		grid-row: 2;
		display: flex;
		justify-content: flex-end;
		margin-top: -35px;
	}

	.pagination {
		padding-bottom: 48px;
	}
}

* {
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
}

body.gj-site {
	margin: 0;
	background: var(--paper);
	color: var(--ink);
	font-family: var(--sans);
	font-size: 14px;
	line-height: 1.7;
}

button,
input {
	font: inherit;
}

button,
a {
	color: inherit;
	text-decoration: none;
}

a:hover,
a:focus,
a:active,
a:visited {
	text-decoration: none;
}

button {
	cursor: pointer;
}

.shell {
	width: min(1110px, calc(100% - 48px));
	margin-inline: auto;
}

.skip-link {
	position: fixed;
	left: 16px;
	top: -60px;
	z-index: 1000;
	background: var(--navy);
	color: #fff;
	padding: 10px 16px;
	border-radius: 4px;
}

.skip-link:focus {
	top: 12px;
}

.site-header {
	height: 68px;
	border-bottom: 1px solid var(--line);
	background: rgba(250, 249, 245, 0.96);
	position: relative;
	z-index: 20;
}

.header-inner {
	height: 100%;
	display: flex;
	align-items: center;
	gap: 34px;
}

.brand {
	text-decoration: none;
	display: inline-flex;
	flex-direction: column;
	color: var(--navy);
	line-height: 1;
	white-space: nowrap;
}

.brand strong {
	font: 700 28px/1 var(--serif);
	letter-spacing: 0.08em;
}

.brand span {
	font-size: 8px;
	letter-spacing: 0.32em;
	margin-top: 7px;
	margin-left: 2px;
}

.primary-nav {
	display: flex;
	align-items: center;
	margin-left: auto;
}

.primary-nav-list {
	display: flex;
	align-items: center;
	gap: 4px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.nav-item {
	border: 0;
	background: transparent;
	-webkit-tap-highlight-color: transparent;
	padding: 8px 11px;
	border-radius: 6px;
	color: #384552;
	font-size: 13px;
}

.nav-item:hover,
.nav-item:focus-visible,
.nav-item:active {
	background: transparent;
	color: var(--navy);
}

.nav-item:focus-visible {
	outline: 2px solid #c9bca8;
	outline-offset: 2px;
}

.nav-item.is-active,
.nav-item.is-active:active {
	background: #e4ded3;
	color: var(--navy);
}

.header-actions {
	display: flex;
	align-items: center;
	gap: 10px;
}

.search-box {
	width: 190px;
	height: 36px;
	border: 1px solid #dad7cf;
	border-radius: 20px;
	background: #fff;
	display: flex;
	align-items: center;
	padding: 0 12px;
	color: #70808f;
}

form.search-box {
	margin: 0;
}

.search-heading {
	padding: 18px 0 34px;
}

.search-heading h1 {
	margin: 0 0 20px;
	font: 700 42px/1.15 var(--serif);
	color: var(--navy);
}

.search-heading .search-box {
	width: 100%;
	height: 54px;
	background: #fff;
	border-color: #aeb6bc;
}

.search-heading p {
	margin: 16px 0 0;
	color: #68737c;
}

.search-heading p strong {
	color: #874700;
}

.search-result-card {
	grid-template-columns: 240px 1fr 72px;
}

.search-like {
	align-self: center;
	text-align: center;
	font-weight: 700;
	color: #52606d;
}

.search-empty {
	padding: 56px;
	text-align: center;
	border: 1px solid var(--line);
	border-radius: 12px;
	background: #fff;
}

.search-empty h2 {
	font-family: var(--serif);
	color: var(--navy);
}

.search-empty a {
	display: inline-flex;
	margin-top: 12px;
	padding: 9px 18px;
	border-radius: 8px;
	background: var(--navy);
	color: #fff;
}

.search-box input {
	border: 0;
	outline: 0;
	background: transparent;
	width: 100%;
	min-width: 0;
	padding-left: 7px;
	font-size: 12px;
}

.member-button {
	border: 0;
	border-radius: 18px;
	background: var(--navy);
	color: white;
	padding: 9px 18px;
	font-weight: 600;
}

.user-button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 36px;
	height: 36px;
	border: 0;
	border-radius: 50%;
	background: var(--navy);
	color: white;
	text-decoration: none;
}

.menu-toggle {
	display: none;
}

.hero {
	display: grid;
	grid-template-columns: 51.3% 48.7%;
	height: 420px;
	margin-top: 32px;
	background: #fff;
	border: 1px solid var(--line);
	border-radius: 18px;
	overflow: hidden;
}

.hero-art {
	position: relative;
	background: var(--plum);
	color: #f0e5ec;
	overflow: hidden;
}

.hero-art > span {
	position: absolute;
	font: 700 390px/0.9 var(--serif);
	opacity: 0.12;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
}

.hero-art > b {
	position: absolute;
	left: 34px;
	bottom: 30px;
	padding: 8px 14px;
	border-radius: 18px;
	background: rgba(255, 255, 255, 0.13);
	font-size: 12px;
	letter-spacing: 0.08em;
}

.hero-copy {
	padding: 54px 50px;
	display: flex;
	flex-direction: column;
	justify-content: center;
}

.eyebrow {
	color: var(--amber);
	font-size: 11px;
	letter-spacing: 0.16em;
	font-weight: 700;
	margin: 0 0 20px;
}

.hero h1 {
	font: 700 34px/1.32 var(--serif);
	color: var(--navy);
	margin: 0 0 22px;
}

.hero-copy > p:not(.eyebrow) {
	color: #5d6872;
	margin: 0 0 32px;
	line-height: 1.9;
}

.author-line,
.author-card {
	display: flex;
	align-items: center;
	gap: 12px;
}

.avatar {
	display: grid;
	place-items: center;
	width: 42px;
	height: 42px;
	border-radius: 50%;
	background: #efeae2;
	color: var(--navy);
	font-family: var(--serif);
	font-weight: 700;
	flex: 0 0 auto;
}

.author-line strong,
.author-card strong {
	display: block;
	color: var(--navy);
}

.author-line small,
.author-card small {
	display: block;
	color: #7d858c;
	margin-top: 2px;
}

.content-grid {
	display: grid;
	grid-template-columns: minmax(0, 1fr) 300px;
	gap: 48px;
	margin: 54px 0 72px;
}

.section-heading {
	height: 42px;
	display: flex;
	align-items: start;
	justify-content: space-between;
	border-bottom: 1px solid var(--line);
}

.section-heading h2 {
	font: 600 21px var(--serif);
	color: var(--navy);
	margin: 0;
}

.text-link {
	border: 0;
	background: transparent;
	color: var(--amber);
	font-size: 12px;
	padding: 5px;
}

.article-card {
	display: grid;
	grid-template-columns: 200px 1fr;
	gap: 24px;
	padding: 20px 0;
	border-bottom: 1px solid var(--line);
	min-height: 168px;
}

.article-card[hidden] {
	display: none;
}

.article-art {
	height: 128px;
	border-radius: 8px;
	position: relative;
	overflow: hidden;
	color: white;
}

.article-art span {
	position: absolute;
	font: 700 126px/0.8 var(--serif);
	right: -2px;
	bottom: -7px;
	opacity: 0.17;
}

.article-art b {
	position: absolute;
	left: 14px;
	bottom: 12px;
	font-size: 11px;
	padding: 4px 9px;
	border: 1px solid rgba(255, 255, 255, 0.35);
	border-radius: 12px;
}

.article-art.blue {
	background: #20506c;
}

.article-art.umber {
	background: #7c4d2b;
}

.article-art.plum {
	background: #5b3b58;
}

.article-art.slate {
	background: #425b66;
}

.article-art.ochre {
	background: #896d42;
}

.article-category {
	color: var(--amber) !important;
	font-size: 11px !important;
	margin: 0 0 5px !important;
}

.article-copy h3 {
	font: 600 19px/1.45 var(--serif);
	margin: 0 0 8px;
	color: var(--ink);
}

.article-copy > p {
	margin: 0;
	color: #69727b;
	font-size: 12px;
	line-height: 1.75;
}

.article-meta {
	display: flex;
	gap: 16px;
	margin-top: 12px;
	font-size: 11px;
	color: #8a9197;
}

.article-meta strong {
	color: #505b65;
}

.empty-state {
	padding: 50px;
	text-align: center;
	color: #7c848b;
}

.side-card {
	background: #fff;
	border: 1px solid var(--line);
	border-radius: 10px;
	padding: 24px;
	margin-bottom: 24px;
}

.side-card h3 {
	font: 600 17px var(--serif);
	color: var(--navy);
	margin: 0 0 16px;
	padding-left: 12px;
	border-left: 3px solid var(--amber);
}

.ranking ol {
	list-style: none;
	margin: 0;
	padding: 0;
}

.ranking li {
	display: grid;
	grid-template-columns: 28px 1fr;
	gap: 8px;
	padding: 14px 0;
	border-top: 1px solid #efede8;
}

.ranking li:first-child {
	border-top: 0;
}

.ranking li > span {
	color: var(--amber);
	font: 600 13px var(--serif);
}

.ranking li button {
	border: 0;
	background: none;
	text-align: left;
	padding: 0;
	font: 500 13px/1.55 var(--serif);
}

.author-card {
	padding: 13px 0;
	border-top: 1px solid #efede8;
}

.author-card .avatar {
	width: 36px;
	height: 36px;
}

.author-card > span:nth-child(2) {
	min-width: 0;
	flex: 1;
}

.follow-button {
	border: 1px solid #ccd3d8;
	background: white;
	color: var(--navy);
	border-radius: 15px;
	padding: 4px 10px;
	font-size: 11px;
}

.follow-button[aria-pressed="true"] {
	background: #eeeae1;
	border-color: #eeeae1;
	color: #777;
}

.site-footer {
	border-top: 1px solid var(--line);
	background: #f5f2eb;
	padding: 36px 0;
}

.footer-inner {
	display: grid;
	grid-template-columns: 1fr auto auto;
	align-items: end;
	gap: 50px;
}

.footer-inner .brand strong {
	font-size: 22px;
}

.footer-inner p {
	color: #7b8389;
	font-size: 11px;
	margin: 10px 0 0;
}

.footer-inner nav {
	display: flex;
	gap: 26px;
}

.footer-inner nav a {
	text-decoration: none;
	color: #5e6870;
	font-size: 12px;
}

.membership-dialog {
	border: 1px solid var(--line);
	border-radius: 16px;
	padding: 38px;
	width: min(440px, calc(100% - 32px));
	color: var(--ink);
	box-shadow: 0 24px 80px rgba(22, 50, 79, 0.2);
}

.membership-dialog::backdrop {
	background: rgba(22, 35, 48, 0.42);
}

.membership-dialog h2 {
	font: 700 28px var(--serif);
	color: var(--navy);
}

.membership-actions {
	display: flex;
	gap: 10px;
	margin-top: 24px;
}

.dialog-login,
.dialog-register,
.paywall-login {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 42px;
	padding: 0 20px;
	border-radius: 22px;
	font-weight: 600;
	text-decoration: none;
}

.dialog-login,
.paywall-login {
	background: var(--navy);
	color: #fff;
}

.dialog-register {
	border: 1px solid var(--line);
	color: var(--navy);
}

.article-paywall {
	margin: 36px 0;
	padding: 52px 32px;
	border: 1px solid #dfc58f;
	border-radius: 16px;
	background: #fffaf0;
	text-align: center;
}

.article-paywall .dashicons {
	width: 44px;
	height: 44px;
	font-size: 44px;
	color: #bd7416;
}

.article-paywall h2 {
	margin: 16px 0 8px;
	font: 700 28px var(--serif);
	color: var(--navy);
}

.article-paywall p {
	margin-bottom: 24px;
	color: var(--muted);
}

.article-paywall .member-button {
	margin-left: 8px;
	border: 1px solid #bd7416;
	background: transparent;
	color: #9a5b0c;
}

.member-center {
	padding-top: 64px;
	padding-bottom: 80px;
}

.member-welcome {
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
	gap: 30px;
	padding-bottom: 32px;
}

.member-welcome h1 {
	margin: 6px 0 12px;
	font: 700 44px var(--serif);
	color: var(--navy);
}

.membership-summary {
	display: flex;
	align-items: center;
	gap: 14px;
	min-width: 240px;
	padding: 20px;
	border: 1px solid var(--line);
	border-radius: 14px;
	background: #fff;
}

.membership-summary strong,
.membership-summary a {
	display: block;
}

.membership-summary a {
	margin-top: 4px;
	color: var(--muted);
	font-size: 12px;
	text-decoration: none;
}

.member-stats {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	margin-bottom: 24px;
	border: 1px solid var(--line);
	border-radius: 14px;
	background: #fff;
}

.member-stats div {
	padding: 24px;
	border-right: 1px solid var(--line);
}

.member-stats div:last-child {
	border: 0;
}

.member-stats strong,
.member-stats span {
	display: block;
}

.member-stats strong {
	font: 700 30px var(--serif);
	color: var(--navy);
}

.member-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 24px;
}

.member-panel {
	margin-bottom: 24px;
	padding: 28px;
	border: 1px solid var(--line);
	border-radius: 14px;
	background: #fff;
}

.member-panel h2 {
	margin-top: 0;
	font: 700 24px var(--serif);
	color: var(--navy);
}

.member-list {
	margin: 0;
	padding: 0;
	list-style: none;
}

.member-list li + li {
	border-top: 1px solid var(--line);
}

.member-list a {
	display: block;
	padding: 14px 0;
	color: var(--ink);
	text-decoration: none;
}

.member-list span,
.followed-grid small,
.member-empty {
	display: block;
	margin-top: 5px;
	color: var(--muted);
	font-size: 12px;
}

.followed-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 18px;
}

.followed-grid > div {
	display: grid;
	grid-template-columns: auto 1fr;
	align-items: center;
	column-gap: 10px;
}

.followed-grid small {
	grid-column: 2;
	margin: 0;
}

.dialog-close {
	position: absolute;
	right: 14px;
	top: 10px;
	border: 0;
	background: none;
	font-size: 24px;
	color: #69727b;
}

@media (max-width: 980px) {

	.header-inner {
		gap: 16px;
	}

	.primary-nav {
		display: none;
		position: absolute;
		left: 24px;
		right: 24px;
		top: 78px;
		background: #fff;
		border: 1px solid var(--line);
		border-radius: 10px;
		padding: 12px;
		box-shadow: 0 15px 40px rgba(22, 50, 79, 0.12);
	}

	.primary-nav.is-open {
		display: block;
	}

	.primary-nav-list {
		display: grid;
		grid-template-columns: repeat(4, 1fr);
	}

	.menu-toggle {
		display: block;
		margin-left: auto;
		border: 1px solid var(--line);
		background: white;
		border-radius: 18px;
		padding: 7px 14px;
	}

	.header-actions .search-box {
		width: 150px;
	}

	.content-grid {
		grid-template-columns: 1fr 270px;
		gap: 28px;
	}
}

@media (max-width: 760px) {

	.shell {
		width: min(calc(100% - 32px), 560px);
	}

	.site-header {
		height: 72px;
	}

	.brand strong {
		font-size: 23px;
	}

	.brand span {
		font-size: 7px;
	}

	.header-actions .search-box,
	.header-actions .user-button {
		display: none;
	}

	.member-button {
		padding: 8px 13px;
		font-size: 12px;
	}

	.hero {
		grid-template-columns: 38% 62%;
		height: 390px;
		margin-top: 20px;
		border-radius: 12px;
	}

	.hero-art > span {
		font-size: 210px;
	}

	.hero-art > b {
		left: 14px;
		bottom: 16px;
		font-size: 9px;
		padding: 5px 8px;
	}

	.hero-copy {
		padding: 28px 22px;
	}

	.eyebrow {
		font-size: 9px;
		margin-bottom: 12px;
	}

	.hero h1 {
		font-size: 24px;
		margin-bottom: 14px;
	}

	.hero-copy > p:not(.eyebrow) {
		font-size: 11px;
		line-height: 1.65;
		margin-bottom: 18px;
	}

	.avatar {
		width: 34px;
		height: 34px;
	}

	.author-line small {
		font-size: 9px;
	}

	.content-grid {
		grid-template-columns: 1fr;
		margin-top: 36px;
	}

	.article-card {
		grid-template-columns: 118px 1fr;
		gap: 16px;
		min-height: 144px;
	}

	.article-art {
		height: 104px;
	}

	.article-copy h3 {
		font-size: 16px;
	}

	.article-copy > p {
		display: none;
	}

	.article-meta {
		flex-direction: column;
		gap: 0;
		margin-top: 7px;
	}

	.footer-inner {
		grid-template-columns: 1fr;
		gap: 24px;
		align-items: start;
	}

	.footer-inner nav {
		flex-wrap: wrap;
	}

	.primary-nav {
		top: 64px;
	}

	.primary-nav-list {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (max-width: 420px) {

	.header-actions .member-button {
		display: none;
	}

	.hero {
		grid-template-columns: 34% 66%;
		height: 400px;
	}

	.hero-copy {
		padding: 22px 16px;
	}

	.hero h1 {
		font-size: 21px;
	}

	.article-card {
		grid-template-columns: 96px 1fr;
	}

	.article-art {
		height: 96px;
	}

	.side-card {
		padding: 20px;
	}
}

@media (max-width: 760px) {

	.search-heading h1 {
		font-size: 34px;
	}

	.search-result-card {
		grid-template-columns: 118px 1fr;
	}

	.search-result-card .search-like {
		display: none;
	}

	.search-empty {
		padding: 36px 20px;
	}
}

.article-copy h3 a {
	color: inherit;
	text-decoration: none;
}

.article-copy h3 a:hover {
	color: var(--amber);
}

.article-shell {
	padding-top: 28px;
}

.breadcrumbs {
	display: flex;
	gap: 9px;
	align-items: center;
	color: #5a646c;
	font-size: 12px;
}

.breadcrumbs a {
	color: inherit;
	text-decoration: none;
}

.article-header {
	max-width: 900px;
	padding: 52px 0 42px;
}

.article-kicker {
	margin: 0 0 16px;
	color: #743912;
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 0.12em;
}

.article-header h1 {
	max-width: 850px;
	margin: 0 0 22px;
	color: var(--navy);
	font: 700 46px/1.25 var(--serif);
}

.article-deck {
	max-width: 760px;
	margin: 0 0 30px;
	color: #4f5b65;
	font-size: 17px;
	line-height: 1.9;
}

.article-byline {
	display: flex;
	gap: 12px;
	align-items: center;
}

.article-byline > span:nth-child(2) {
	margin-right: auto;
}

.article-byline strong,
.article-byline small {
	display: block;
}

.article-byline strong {
	color: var(--navy);
}

.article-byline small,
.read-time {
	color: #59636b;
	font-size: 11px;
}

.save-button,
.share-button,
.like-button {
	min-height: 36px;
	padding: 7px 15px;
	border: 1px solid #cdd2d5;
	border-radius: 18px;
	background: #fff;
	color: var(--navy);
}

.save-button[aria-pressed="true"],
.like-button[aria-pressed="true"] {
	border-color: var(--navy);
	background: var(--navy);
	color: #fff;
}

.article-layout {
	display: grid;
	grid-template-columns: minmax(0, 760px) 270px;
	gap: 72px;
	align-items: start;
}

.article-summary {
	margin: 28px 0 0;
	padding: 22px 26px;
	border: 1px solid #e5ded2;
	border-left: 4px solid #a86417;
	border-radius: 10px;
	background: #fbf8f2;
}

.article-summary h2,
.article-summary p {
	margin: 0;
}

.article-summary h2 {
	margin-bottom: 8px;
	font-size: 18px;
}

.article-summary p {
	color: #43515e;
	line-height: 1.75;
}

.article-body {
	color: #303942;
	font-family: var(--serif);
	font-size: 16px;
	line-height: 2;
}

.article-hero-art {
	position: relative;
	height: 390px;
	margin-bottom: 38px;
	overflow: hidden;
	border-radius: 12px;
	background: #20506c;
	color: #fff;
}

.article-featured-image {
	margin: 0 0 34px;
}

.article-featured-image img {
	display: block;
	width: 100%;
	height: auto;
	max-height: 520px;
	object-fit: cover;
	border-radius: 10px;
}

.article-hero-art span {
	position: absolute;
	right: 34px;
	bottom: -56px;
	opacity: 0.13;
	font: 700 360px/1 var(--serif);
}

.article-hero-art b {
	position: absolute;
	bottom: 34px;
	left: 36px;
	font-family: var(--sans);
	font-size: 11px;
	letter-spacing: 0.2em;
}

.article-body .lead {
	padding-left: 22px;
	border-left: 3px solid var(--amber);
	color: var(--navy);
	font-size: 19px;
	font-weight: 600;
}

.article-body h2 {
	margin: 46px 0 16px;
	color: var(--navy);
	font: 700 27px/1.4 var(--serif);
}

.article-body p {
	margin: 0 0 23px;
}

.article-body blockquote {
	margin: 36px 0;
	padding: 24px 30px;
	border: 0;
	border-radius: 8px;
	background: #f0ece3;
	color: var(--navy);
	font-size: 20px;
}

.insight-panel {
	margin: 32px 0;
	padding: 24px 28px;
	border: 1px solid #ded8cc;
	border-radius: 9px;
	background: #fff;
}

.insight-panel strong {
	color: #743912;
}

.insight-panel ul {
	margin-bottom: 0;
}

.article-aside {
	position: sticky;
	top: 28px;
}

.toc,
.author-profile {
	margin-bottom: 22px;
	padding: 24px;
	border: 1px solid var(--line);
	border-radius: 10px;
	background: #fff;
}

.toc h2,
.author-profile h2 {
	margin: 0 0 16px;
	color: var(--navy);
	font: 600 17px var(--serif);
}

.toc h2 {
	padding-left: 12px;
	border-left: 3px solid var(--amber);
}

.toc a {
	display: block;
	padding: 10px 0;
	border-bottom: 1px solid #efede8;
	color: #505b64;
	font-size: 12px;
	text-decoration: none;
}

.toc a:last-child {
	border-bottom: 0;
}

.author-profile {
	text-align: center;
}

.author-profile .avatar {
	margin: 0 auto 10px;
}

.author-profile p {
	color: #59636b;
	font-size: 12px;
}

.author-profile .follow-button {
	padding: 7px 18px;
}

.article-end {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-top: 50px;
	padding: 24px 0;
	border-top: 1px solid var(--line);
	border-bottom: 1px solid var(--line);
	font-family: var(--sans);
}

.article-sources {
	margin-top: 28px;
	padding-top: 22px;
	border-top: 1px solid #e4dfd5;
}

.article-sources h2 {
	font-size: 20px;
}

.article-sources ol {
	padding-left: 22px;
}

.article-sources a {
	color: #365b78;
	text-decoration: none;
	word-break: break-all;
}

.toc .toc-level-3 {
	padding-left: 14px;
	font-size: 13px;
}

.article-end div {
	display: flex;
	gap: 8px;
	align-items: center;
}

.article-end a {
	padding: 4px 10px;
	border-radius: 14px;
	background: #eeeae1;
	color: #4f5961;
	font-size: 11px;
	text-decoration: none;
}

.related {
	margin: 72px 0;
}

.related-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 22px;
	padding-top: 22px;
}

.related-grid > a {
	display: grid;
	color: var(--navy);
	text-decoration: none;
}

.related-grid .article-art {
	height: 130px;
	margin-bottom: 13px;
	background: #20506c;
}

.related-grid strong {
	font: 600 16px/1.5 var(--serif);
}

.related-grid small {
	margin-top: 5px;
	color: #59636b;
}

.copy-toast {
	position: fixed;
	right: 24px;
	bottom: 24px;
	z-index: 50;
	padding: 10px 16px;
	border-radius: 20px;
	background: var(--navy);
	color: #fff;
}

@media (max-width: 900px) {

	.article-layout {
		grid-template-columns: minmax(0, 1fr) 230px;
		gap: 32px;
	}
}

@media (max-width: 760px) {

	.article-header {
		padding: 36px 0 28px;
	}

	.article-header h1 {
		font-size: 33px;
	}

	.article-deck {
		font-size: 14px;
	}

	.article-byline {
		flex-wrap: wrap;
	}

	.article-byline > span:nth-child(2) {
		width: calc(100% - 50px);
		margin-right: 0;
	}

	.article-layout {
		display: flex;
		flex-direction: column;
		gap: 36px;
	}

	.article-aside {
		position: static;
		order: -1;
		width: 100%;
	}

	.toc {
		padding: 18px;
	}

	.article-hero-art {
		height: 260px;
	}

	.article-body {
		font-size: 15px;
	}

	.article-body .lead {
		font-size: 17px;
	}

	.related-grid {
		grid-template-columns: 1fr;
	}

	.member-welcome {
		align-items: stretch;
		flex-direction: column;
	}

	.member-welcome h1 {
		font-size: 36px;
	}

	.member-stats,
	.member-grid,
	.followed-grid {
		grid-template-columns: 1fr 1fr;
	}

	.member-stats div:nth-child(2) {
		border-right: 0;
	}

	.member-stats div:nth-child(-n+2) {
		border-bottom: 1px solid var(--line);
	}
}

@media (prefers-reduced-motion: reduce) {

	html {
		scroll-behavior: auto;
	}
}

.eyebrow,
.text-link,
.article-category,
.ranking li > span {
	color: #8a4719 !important;
}

.hero-copy > p:not(.eyebrow),
.article-copy > p {
	color: #505b64;
}

.author-line small,
.author-card small,
.article-meta,
.footer-inner p {
	color: #505b64;
}

@media (max-width: 420px) {

	.header-actions .member-button {
		display: block;
	}
}
