:root {
	--stc-ink: #111714;
	--stc-muted: #5f6863;
	--stc-line: #e6ebe7;
	--stc-paper: #fbfcfa;
	--stc-red: #d92727;
	--stc-green: #146b54;
	--stc-gold: #a97824;
	--stc-radius: 8px;
	--stc-max: 1240px;
	--stc-card-shadow: 0 14px 34px rgba(17, 23, 20, .12);
	--stc-soft-shadow: 0 18px 50px rgba(17, 23, 20, .08);
}

* {
	box-sizing: border-box;
}

body {
	margin: 0;
	background: #fff;
	color: var(--stc-ink);
	font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

a {
	color: inherit;
	text-decoration: none;
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
label:focus-visible {
	outline: 3px solid rgba(217, 39, 39, .78);
	outline-offset: 3px;
}

.stc-skip-link {
	background: var(--stc-ink);
	color: #fff;
	font-weight: 800;
	left: 16px;
	padding: 10px 14px;
	position: fixed;
	top: 16px;
	transform: translateY(-140%);
	z-index: 100;
}

.stc-skip-link:focus {
	transform: translateY(0);
}

.stc-header {
	align-items: center;
	background: rgba(255, 255, 255, .96);
	border-bottom: 1px solid rgba(230, 235, 231, .9);
	box-shadow: 0 12px 28px rgba(17, 23, 20, .06);
	color: var(--stc-ink);
	display: flex;
	justify-content: space-between;
	left: 0;
	max-width: none;
	padding: 18px max(32px, calc((100vw - var(--stc-max)) / 2 + 32px));
	position: sticky;
	top: 0;
	transform: none;
	width: 100%;
	z-index: 10;
}

.home .stc-header {
	background: transparent;
	border-bottom: 0;
	box-shadow: none;
	color: #fff;
	left: 50%;
	max-width: var(--stc-max);
	padding: 24px 32px;
	position: absolute;
	transform: translateX(-50%);
}

.stc-brand {
	align-items: center;
	display: inline-flex;
	font-weight: 800;
	gap: 10px;
}

.stc-brand__mark {
	align-items: center;
	background: var(--stc-red);
	border-radius: 4px;
	display: inline-flex;
	font-size: 10px;
	height: 22px;
	justify-content: center;
	letter-spacing: .06em;
	width: 22px;
}

.stc-brand__name {
	font-size: 22px;
	letter-spacing: 0;
}

.stc-nav {
	align-items: center;
	display: flex;
	gap: 26px;
}

.stc-nav__link {
	font-size: 14px;
	font-weight: 700;
	position: relative;
}

.stc-nav__link:hover::after,
.stc-nav__link:focus-visible::after,
.home .stc-nav__link:first-child::after {
	background: currentColor;
	bottom: -6px;
	content: "";
	height: 2px;
	left: 0;
	position: absolute;
	width: 100%;
}

.stc-menu-toggle {
	align-items: center;
	background: #fff;
	border: 1px solid var(--stc-line);
	border-radius: var(--stc-radius);
	color: var(--stc-ink);
	cursor: pointer;
	display: none;
	height: 42px;
	justify-content: center;
	padding: 0;
	width: 42px;
}

.home .stc-menu-toggle {
	-webkit-backdrop-filter: blur(8px);
	backdrop-filter: blur(8px);
	background: rgba(255, 255, 255, .15);
	border: 1px solid rgba(255, 255, 255, .25);
	border-radius: 8px;
	color: #fff;
}

.stc-menu-toggle__line {
	background: currentColor;
	border-radius: 999px;
	display: block;
	height: 2px;
	position: absolute;
	width: 18px;
}

.stc-menu-toggle__line:nth-child(1) {
	transform: translateY(-6px);
}

.stc-menu-toggle__line:nth-child(3) {
	transform: translateY(6px);
}

.screen-reader-text {
	clip: rect(1px, 1px, 1px, 1px);
	clip-path: inset(50%);
	height: 1px;
	overflow: hidden;
	position: absolute;
	white-space: nowrap;
	width: 1px;
}

.stc-hero {
	background:
		linear-gradient(180deg, rgba(5, 15, 18, .28), rgba(5, 15, 18, .03) 40%, rgba(5, 15, 18, .08)),
		linear-gradient(90deg, rgba(5, 15, 18, .56), rgba(5, 15, 18, .16) 48%, transparent),
		url("../images/hero-home.png") center / cover no-repeat,
		linear-gradient(135deg, #12392f, #b76a35 48%, #d9e6ef);
	min-height: clamp(460px, 53vw, 720px);
	position: relative;
}

.stc-hero::after {
	content: "";
	display: none;
	position: absolute;
}

.stc-hero__content {
	color: #fff;
	left: calc((100vw - min(var(--stc-max), 100vw)) / 2 + 32px);
	max-width: 720px;
	position: absolute;
	top: clamp(132px, 14vw, 190px);
	z-index: 1;
}

.stc-hero h1 {
	font-family: Georgia, "Times New Roman", serif;
	font-size: clamp(54px, 7.2vw, 92px);
	letter-spacing: 0;
	line-height: .96;
	margin: 0 0 20px;
}

.stc-hero p {
	font-size: 22px;
	line-height: 1.45;
	margin: 0 0 34px;
}

.stc-button {
	align-items: center;
	border-radius: var(--stc-radius);
	display: inline-flex;
	font-weight: 800;
	gap: 9px;
	justify-content: center;
	min-height: 48px;
	padding: 0 22px;
}

.stc-button--primary {
	background: var(--stc-red);
	color: #fff;
}

.stc-button--secondary {
	background: var(--stc-green);
	color: #fff;
}

.stc-button--gold {
	background: var(--stc-gold);
	color: #fff;
}

.stc-survival,
.stc-section,
.stc-planner,
.stc-ticket-band,
.stc-faq {
	margin: 0 auto;
	max-width: var(--stc-max);
	padding: 32px;
}

.home .stc-survival {
	background: #fff;
	border-bottom: 1px solid rgba(230, 235, 231, .85);
	box-shadow: var(--stc-soft-shadow);
	max-width: none;
	padding: 0 32px;
}

.home .stc-survival h2 {
	clip: rect(1px, 1px, 1px, 1px);
	clip-path: inset(50%);
	height: 1px;
	overflow: hidden;
	position: absolute;
	white-space: nowrap;
	width: 1px;
}

.stc-survival__grid {
	background: #fff;
	border: 1px solid var(--stc-line);
	border-radius: var(--stc-radius);
	display: grid;
	grid-template-columns: repeat(5, 1fr);
}

.home .stc-survival__grid {
	border: 0;
	border-radius: 0;
	margin: 0 auto;
	max-width: var(--stc-max);
}

.stc-survival-card {
	align-items: center;
	display: grid;
	gap: 8px;
	justify-items: center;
	min-height: 126px;
	padding: 18px 12px;
	position: relative;
	text-align: center;
}

.stc-survival-card::after {
	background: var(--stc-line);
	content: "";
	height: 60%;
	position: absolute;
	right: 0;
	top: 20%;
	width: 1px;
}

.stc-survival-card:last-child::after {
	display: none;
}

.stc-survival-card__icon {
	align-items: center;
	background: var(--stc-green);
	border-radius: 999px;
	color: #fff;
	display: inline-flex;
	height: 42px;
	justify-content: center;
	width: 42px;
}

.stc-survival-card__icon svg {
	fill: none;
	height: 24px;
	stroke: currentColor;
	stroke-linecap: round;
	stroke-linejoin: round;
	stroke-width: 2;
	width: 24px;
}

.stc-section__header a,
.stc-planner p,
.stc-ticket-band p,
.stc-footer p,
.stc-footer a {
	color: var(--stc-muted);
	font-size: 14px;
}

.stc-survival-card strong {
	font-size: 14px;
	white-space: nowrap;
}

.stc-section__header {
	align-items: end;
	display: flex;
	justify-content: space-between;
	margin-bottom: 16px;
}

.stc-section__view-all {
	align-items: center;
	color: var(--stc-green);
	display: inline-flex;
	font-size: 13px;
	font-weight: 700;
	gap: 4px;
	text-decoration: none;
}

.stc-section__view-all span {
	font-size: 18px;
	font-weight: 400;
	line-height: 1;
}

.stc-section h2,
.stc-survival h2,
.stc-planner h2,
.stc-ticket-band h2,
.stc-faq h2 {
	font-family: Georgia, "Times New Roman", serif;
	font-size: 34px;
	letter-spacing: 0;
	margin: 0;
}

.stc-card-grid {
	display: grid;
	gap: 14px;
}

.stc-guide-grid-shell {
	position: relative;
}

.stc-guide-grid-reveal {
	display: none;
}

.stc-card-grid--cities {
	grid-template-columns: repeat(4, 1fr);
}

.stc-card-grid--attractions {
	grid-template-columns: repeat(6, 1fr);
}

.stc-image-card {
	border-radius: var(--stc-radius);
	box-shadow: var(--stc-card-shadow);
	color: #fff;
	display: block;
	min-height: 0;
	overflow: hidden;
	padding: 16px;
	position: relative;
}

.stc-card-grid--cities .stc-image-card {
	aspect-ratio: 1 / 1.04;
}

.stc-card-grid--attractions .stc-image-card {
	aspect-ratio: 2 / 3;
	min-height: 0;
}

.stc-image-card__media {
	background: #27463e;
	inset: 0;
	overflow: hidden;
	pointer-events: none;
	position: absolute;
	z-index: 0;
}

.stc-image-card__media img {
	display: block;
	height: 100%;
	object-fit: cover;
	object-position: center;
	transition: transform .35s ease;
	width: 100%;
}

.stc-image-card__media::after {
	background: linear-gradient(to top, rgba(0, 0, 0, .8) 0%, rgba(0, 0, 0, .35) 40%, transparent 100%);
	content: "";
	inset: 0;
	position: absolute;
}

.stc-image-card:hover .stc-image-card__media img {
	transform: scale(1.02);
}

.stc-image-card__link {
	color: #fff;
	display: block;
	inset: 0;
	position: absolute;
	text-decoration: none;
	z-index: 2;
}

.stc-image-card__content {
	bottom: 16px;
	color: #fff;
	display: grid;
	gap: 4px;
	left: 16px;
	position: absolute;
	right: 16px;
	text-shadow: 0 2px 10px rgba(0, 0, 0, .45);
	z-index: 2;
}

.stc-image-card__content strong {
	color: #fff;
	font-family: Georgia, "Times New Roman", serif;
	font-size: clamp(20px, 1.8vw, 24px);
	line-height: 1.05;
	text-shadow: 0 2px 8px rgba(0, 0, 0, .65);
}

.stc-image-card__content span {
	color: rgba(255, 255, 255, .86);
	font-size: 11px;
	line-height: 1.2;
}

.stc-card-grid--cities .stc-image-card__content span {
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.stc-card-grid--attractions .stc-image-card__content {
	bottom: 14px;
	gap: 3px;
	left: 12px;
	right: 12px;
}

.stc-card-grid--attractions .stc-image-card__content strong {
	font-size: clamp(16px, 1.3vw, 18px);
	line-height: 1.08;
}

.stc-card-grid--attractions .stc-image-card__content span {
	font-size: 10px;
}

.stc-image-card__tag {
	-webkit-backdrop-filter: blur(8px);
	backdrop-filter: blur(8px);
	background: rgba(0, 0, 0, .45);
	border: 1px solid rgba(255, 255, 255, .18);
	border-radius: 6px;
	color: #fff;
	font-size: 11px;
	font-weight: 700;
	left: 10px;
	line-height: 1;
	padding: 4px 8px;
	position: absolute;
	top: 10px;
	z-index: 3;
}

.stc-planner,
.stc-ticket-band {
	align-items: center;
	background: #eef6f2;
	border: 1px solid var(--stc-line);
	border-radius: var(--stc-radius);
	display: grid;
	gap: 16px;
	margin-bottom: 16px;
	margin-top: 16px;
	min-height: 126px;
	overflow: hidden;
	padding: 24px;
	position: relative;
}

.stc-planner {
	grid-template-columns: minmax(260px, 1.15fr) minmax(250px, 1fr) minmax(130px, .55fr);
}

.stc-planner > * {
	position: relative;
	z-index: 1;
}

.stc-planner__intro {
	align-items: center;
	display: grid;
	gap: 16px;
	grid-template-columns: 78px 1fr;
}

.stc-planner__icon {
	align-items: center;
	color: var(--stc-green);
	display: inline-flex;
	height: 72px;
	justify-content: center;
	width: 72px;
}

.stc-planner__icon svg {
	fill: none;
	height: 68px;
	stroke: currentColor;
	stroke-linecap: round;
	stroke-linejoin: round;
	stroke-width: 2;
	width: 68px;
}

.stc-planner__partner {
	border-left: 1px solid rgba(20, 107, 84, .18);
	display: grid;
	gap: 8px;
	padding-left: 24px;
}

.stc-planner__partner > span {
	color: var(--stc-muted);
	font-size: 12px;
}

.stc-planner strong {
	color: #2474e8;
	font-size: 34px;
	line-height: 1;
}

.stc-planner h2 {
	color: var(--stc-green);
	font-family: inherit;
	font-size: 19px;
	line-height: 1.15;
	text-transform: uppercase;
}

.stc-planner__partner .stc-button {
	border-radius: 8px;
	justify-self: start;
	min-height: 44px;
	padding: 0 14px;
}

.stc-affiliate-disclosure {
	color: #8c9ba5 !important;
	font-size: 11px !important;
	line-height: 1.4;
	margin: 0;
}

.stc-planner__art {
	align-self: stretch;
	background: url("../images/planner-art.png") right center / contain no-repeat;
	display: block;
	min-height: 86px;
	opacity: .08;
}

.stc-planner--page {
	margin-bottom: 32px;
	margin-top: 24px;
}

.stc-ticket-band {
	background: #fff6e8;
	border-color: #efd8b4;
	grid-template-columns: minmax(340px, 1.35fr) minmax(250px, .9fr) minmax(210px, auto);
}

.stc-ticket-band__intro {
	align-items: center;
	display: grid;
	gap: 14px;
	grid-template-columns: 80px 1fr;
}

.stc-ticket-band__icon {
	background: url("../images/ticket-art.png") center / contain no-repeat;
	display: block;
	height: 72px;
	width: 80px;
}

.stc-ticket-band > * {
	position: relative;
	z-index: 1;
}

.stc-ticket-band h2 {
	color: var(--stc-gold);
	font-family: inherit;
	font-size: 16px;
	line-height: 1.2;
	text-transform: uppercase;
}

.stc-ticket-band__steps {
	border-left: 1px solid rgba(169, 120, 36, .22);
	display: grid;
	gap: 16px;
	padding-left: 24px;
}

.stc-ticket-band__steps p {
	align-items: center;
	display: grid;
	gap: 10px;
	grid-template-columns: 24px 1fr;
	margin: 0;
}

.stc-ticket-band__action {
	display: grid;
	gap: 8px;
}

.stc-ticket-band__step-icon {
	color: #c98b24;
	display: inline-flex;
	height: 22px;
	width: 22px;
}

.stc-ticket-band__step-icon svg {
	fill: none;
	height: 22px;
	stroke: currentColor;
	stroke-linecap: round;
	stroke-linejoin: round;
	stroke-width: 1.8;
	width: 22px;
}

.stc-ticket-band__steps strong {
	color: var(--stc-ink);
	font-size: 12px;
	line-height: 1.25;
	white-space: nowrap;
}

.stc-ticket-band__action {
	justify-items: end;
}

.stc-ticket-band__action .stc-button {
	border-radius: 8px;
	font-size: 12px;
	min-height: 44px;
	padding: 0 14px;
	white-space: nowrap;
}

.stc-ticket-band__trust {
	color: #8c9ba5;
	font-size: 11px;
	line-height: 1.4;
	margin: 0;
}

.stc-faq__grid {
	display: grid;
	column-gap: 32px;
	grid-template-columns: repeat(2, 1fr);
}

.stc-faq details {
	border: 0;
	border-bottom: 1px solid #e8ece9;
}

.stc-faq summary {
	align-items: center;
	cursor: pointer;
	display: grid;
	font-size: 16px;
	font-weight: 600;
	gap: 14px;
	grid-template-columns: minmax(0, 1fr) 18px;
	line-height: 1.4;
	list-style: none;
	min-height: 58px;
	padding: 16px 0;
}

.stc-faq summary::-webkit-details-marker {
	display: none;
}

.stc-faq__chevron {
	color: var(--stc-green);
	fill: none;
	height: 18px;
	stroke: currentColor;
	stroke-linecap: round;
	stroke-linejoin: round;
	stroke-width: 1.8;
	transition: transform .24s ease;
	width: 18px;
}

.stc-faq details[open] .stc-faq__chevron {
	transform: rotate(180deg);
}

.stc-faq__answer {
	display: grid;
	gap: 10px;
	padding: 0 32px 16px 0;
}

.stc-faq__answer p {
	color: #4a5568;
	line-height: 1.6;
	margin: 0;
}

.stc-faq__answer-link {
	color: var(--stc-green);
	font-size: 13px;
	font-weight: 800;
	justify-self: start;
}

.stc-faq--page {
	padding-bottom: 40px;
	padding-top: 24px;
}

.stc-faq--page .stc-faq__grid {
	align-items: start;
	column-gap: 40px;
}

.stc-main {
	padding-top: 0;
}

.stc-content {
	margin: 0 auto;
	max-width: 920px;
	padding: 72px 32px;
}

.stc-content__header {
	margin-bottom: 32px;
}

.stc-content__header h1 {
	font-family: Georgia, "Times New Roman", serif;
	font-size: 44px;
	letter-spacing: 0;
	margin: 0 0 12px;
}

.stc-page-hero,
.stc-page-section {
	margin: 0 auto;
	max-width: var(--stc-max);
	padding: 72px 32px 24px;
}

.stc-page-hero {
	display: grid;
	gap: 14px;
	padding-bottom: 40px;
}

.stc-page-hero--visual {
	background:
		linear-gradient(90deg, rgba(255, 255, 255, .98), rgba(255, 255, 255, .88) 55%, rgba(255, 255, 255, .56)),
		var(--stc-page-hero-image, url("../images/guide-card-bg.png")) right center / auto 100% no-repeat;
	border-bottom: 1px solid var(--stc-line);
	max-width: none;
	padding: 86px max(32px, calc((100vw - var(--stc-max)) / 2 + 32px)) 52px;
}

.stc-page-hero--survival-kit {
	--stc-page-hero-image: url("../images/card-beijing.png");
}

.stc-page-hero--city-guides {
	--stc-page-hero-image: url("../images/card-shanghai.png");
}

.stc-page-hero--attraction-guides {
	--stc-page-hero-image: url("../images/card-forbidden-city.png");
}

.stc-page-hero--planner {
	--stc-page-hero-image: url("../images/planner-art.png");
	background-color: #eef6f2;
}

.stc-page-hero--tools {
	--stc-page-hero-image: url("../images/ticket-art.png");
	background-color: #fff6e8;
}

.stc-page-hero--faq {
	--stc-page-hero-image: url("../images/card-hangzhou.png");
}

.stc-page-hero p {
	color: var(--stc-green);
	font-size: 13px;
	font-weight: 800;
	letter-spacing: .08em;
	margin: 0;
	text-transform: uppercase;
}

.stc-page-hero h1 {
	font-family: Georgia, "Times New Roman", serif;
	font-size: clamp(44px, 6vw, 74px);
	letter-spacing: 0;
	line-height: 1;
	margin: 0;
}

.stc-page-hero span {
	color: var(--stc-muted);
	font-size: 20px;
	line-height: 1.5;
	max-width: 680px;
}

.stc-page-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	margin-top: 6px;
}

.stc-page-actions button {
	background: var(--stc-green);
	border: 0;
	border-radius: var(--stc-radius);
	color: #fff;
	cursor: pointer;
	font: inherit;
	font-weight: 800;
	min-height: 42px;
	padding: 0 16px;
}

.stc-page-section {
	padding-top: 24px;
}

.stc-link-grid {
	display: grid;
	gap: 18px;
	grid-template-columns: repeat(3, 1fr);
}

.stc-link-grid--five {
	grid-template-columns: repeat(5, 1fr);
}

.stc-info-card {
	background: #fff;
	border: 1px solid var(--stc-line);
	border-radius: var(--stc-radius);
	box-shadow: 0 10px 28px rgba(17, 23, 20, .05);
	display: grid;
	gap: 12px;
	min-height: 190px;
	padding: 24px;
}

.stc-info-card h2 {
	font-size: 22px;
	letter-spacing: 0;
	margin: 0;
}

.stc-info-card p,
.stc-feature-panel p,
.stc-entry-content {
	color: var(--stc-muted);
	line-height: 1.6;
	margin: 0;
}

.home .stc-section h2,
.home .stc-faq h2 {
	font-size: 26px;
}

.stc-single--attraction-guide,
.stc-single--city-guide,
.stc-single--survival-kit {
	display: grid;
	gap: 30px;
}

.stc-attraction-guide__hero,
.stc-city-guide__hero,
.stc-survival-kit__hero {
	background:
		linear-gradient(90deg, rgba(255,255,255,.98), rgba(255,255,255,.9) 58%, rgba(255,255,255,.64)),
		var(--stc-article-hero-image, url("../images/guide-card-bg.png")) right center / auto 100% no-repeat,
		#fff;
	border: 1px solid var(--stc-line);
	border-radius: var(--stc-radius);
	box-shadow: var(--stc-soft-shadow);
	display: grid;
	gap: 12px;
	padding: 30px;
}

.stc-single--attraction-guide {
	--stc-article-hero-image: url("../images/card-forbidden-city.png");
}

.stc-single--city-guide {
	--stc-article-hero-image: url("../images/card-beijing.png");
}

.stc-single--survival-kit {
	--stc-article-hero-image: url("../images/card-hangzhou.png");
}

.stc-attraction-guide__eyebrow,
.stc-attraction-guide__meta,
.stc-city-guide__eyebrow,
.stc-city-guide__meta,
.stc-survival-kit__eyebrow,
.stc-survival-kit__meta {
	color: var(--stc-green);
	font-size: 13px;
	font-weight: 800;
	letter-spacing: .08em;
	margin: 0;
	text-transform: uppercase;
}

.stc-attraction-guide__hero h1,
.stc-city-guide__hero h1,
.stc-survival-kit__hero h1 {
	font-family: Georgia, "Times New Roman", serif;
	font-size: clamp(42px, 6vw, 72px);
	letter-spacing: 0;
	line-height: 1;
	margin: 0;
}

.stc-attraction-guide__deck,
.stc-city-guide__deck,
.stc-survival-kit__deck {
	color: var(--stc-muted);
	font-size: 20px;
	line-height: 1.5;
	margin: 0;
	max-width: 720px;
}

.stc-attraction-guide__layout,
.stc-city-guide__layout,
.stc-survival-kit__layout {
	align-items: start;
	display: grid;
	gap: 26px;
	grid-template-columns: minmax(0, 1fr) 300px;
}

.stc-entry-content--guide {
	background: #fff;
	border: 1px solid var(--stc-line);
	border-radius: var(--stc-radius);
	box-shadow: 0 10px 30px rgba(17, 23, 20, .05);
	color: var(--stc-ink);
	padding: 32px;
}

.stc-entry-content--guide > *:first-child {
	margin-top: 0;
}

.stc-entry-content--guide h2 {
	color: var(--stc-ink);
	font-family: Georgia, "Times New Roman", serif;
	font-size: 30px;
	letter-spacing: 0;
	line-height: 1.15;
	margin: 34px 0 12px;
}

.stc-entry-content--guide p,
.stc-entry-content--guide li {
	color: var(--stc-muted);
	font-size: 17px;
	line-height: 1.7;
}

.stc-guide-quick-facts {
	background: #f3f8f5;
	border-bottom: 1px solid #dce8e1;
	border-top: 1px solid #dce8e1;
	display: grid;
	gap: 18px;
	margin: 28px -32px 30px;
	padding: 24px 32px;
}

.stc-guide-quick-facts h2,
.stc-guide-warning h2,
.stc-guide-route h2 {
	margin-top: 0;
}

.stc-guide-facts-grid {
	display: grid;
	gap: 18px;
	grid-template-columns: repeat(2, minmax(0, 1fr));
}

.stc-guide-fact {
	border-top: 1px solid rgba(20, 107, 84, .18);
	display: grid;
	gap: 5px;
	padding-top: 12px;
}

.stc-guide-fact p {
	margin: 0;
}

.stc-guide-fact strong {
	color: var(--stc-ink);
	font-size: 14px;
	letter-spacing: .06em;
	text-transform: uppercase;
}

.stc-guide-warning {
	background: #fff9ee;
	border-left: 4px solid var(--stc-gold);
	margin: 28px 0;
	padding: 18px 20px;
}

.stc-guide-warning p:last-child,
.stc-guide-route ol:last-child {
	margin-bottom: 0;
}

.stc-guide-route {
	border-top: 1px solid var(--stc-line);
	margin-top: 34px;
	padding-top: 26px;
}

.stc-guide-route ol {
	counter-reset: stc-route-step;
	display: grid;
	gap: 12px;
	list-style: none;
	padding-left: 0;
}

.stc-guide-route li {
	align-items: start;
	counter-increment: stc-route-step;
	display: grid;
	gap: 10px;
	grid-template-columns: 32px 1fr;
}

.stc-guide-route li::before {
	align-items: center;
	background: var(--stc-green);
	border-radius: 999px;
	color: #fff;
	content: counter(stc-route-step);
	display: inline-flex;
	font-size: 14px;
	font-weight: 800;
	height: 32px;
	justify-content: center;
	line-height: 1;
	width: 32px;
}

.stc-attraction-guide__sidebar,
.stc-city-guide__sidebar,
.stc-survival-kit__sidebar {
	display: grid;
	gap: 16px;
	position: sticky;
	top: 110px;
}

.stc-guide-toc {
	background: #fff;
	border: 1px solid var(--stc-line);
	border-radius: var(--stc-radius);
	display: grid;
	gap: 12px;
	padding: 18px;
}

.stc-guide-toc--mobile {
	display: none;
}

.stc-guide-toc h2 {
	font-size: 16px;
	letter-spacing: 0;
	margin: 0;
}

.stc-guide-toc ol {
	display: grid;
	gap: 8px;
	list-style: none;
	margin: 0;
	padding: 0;
}

.stc-guide-toc a {
	color: var(--stc-muted);
	display: block;
	font-size: 14px;
	font-weight: 750;
	line-height: 1.4;
}

.stc-guide-toc a:hover,
.stc-guide-toc a:focus-visible {
	color: var(--stc-red);
}

.stc-attraction-guide__checklist {
	background: #fff6e8;
	border: 1px solid #efd8b4;
	border-radius: var(--stc-radius);
	display: grid;
	gap: 16px;
	padding: 20px;
}

.stc-city-guide__checklist {
	background: #eef6f2;
	border: 1px solid #cfe2d9;
	border-radius: var(--stc-radius);
	display: grid;
	gap: 16px;
	padding: 20px;
}

.stc-survival-kit__checklist {
	background: #fff1ef;
	border: 1px solid #f1cbc7;
	border-radius: var(--stc-radius);
	display: grid;
	gap: 16px;
	padding: 20px;
}

.stc-attraction-guide__checklist h2,
.stc-city-guide__checklist h2,
.stc-survival-kit__checklist h2 {
	font-size: 18px;
	letter-spacing: 0;
	margin: 0;
}

.stc-attraction-guide__checklist ul,
.stc-city-guide__checklist ul,
.stc-survival-kit__checklist ul {
	display: grid;
	gap: 12px;
	list-style: none;
	margin: 0;
	padding: 0;
}

.stc-attraction-guide__checklist li,
.stc-city-guide__checklist li,
.stc-survival-kit__checklist li {
	border-top: 1px solid rgba(169, 120, 36, .25);
	display: grid;
	gap: 3px;
	padding-top: 12px;
}

.stc-city-guide__checklist li {
	border-top-color: rgba(20, 107, 84, .22);
}

.stc-survival-kit__checklist li {
	border-top-color: rgba(217, 39, 39, .2);
}

.stc-attraction-guide__checklist li:first-child,
.stc-city-guide__checklist li:first-child,
.stc-survival-kit__checklist li:first-child {
	border-top: 0;
	padding-top: 0;
}

.stc-attraction-guide__checklist span,
.stc-city-guide__checklist span,
.stc-survival-kit__checklist span {
	color: var(--stc-ink);
	font-weight: 800;
}

.stc-attraction-guide__checklist small,
.stc-city-guide__checklist small,
.stc-survival-kit__checklist small {
	color: var(--stc-muted);
	line-height: 1.45;
}

.stc-attraction-guide__footer,
.stc-city-guide__footer,
.stc-survival-kit__footer {
	border-top: 1px solid var(--stc-line);
	padding-top: 22px;
}

.stc-attraction-guide__footer a,
.stc-city-guide__footer a,
.stc-survival-kit__footer a {
	color: var(--stc-green);
	font-weight: 800;
}

.search-form {
	display: flex;
	gap: 10px;
	margin-top: 18px;
	max-width: 620px;
}

.search-form label {
	flex: 1;
}

.search-field {
	border: 1px solid var(--stc-line);
	border-radius: var(--stc-radius);
	font: inherit;
	min-height: 46px;
	padding: 0 12px;
	width: 100%;
}

.search-submit {
	background: var(--stc-green);
	border: 0;
	border-radius: var(--stc-radius);
	color: #fff;
	cursor: pointer;
	font: inherit;
	font-weight: 800;
	min-height: 46px;
	padding: 0 18px;
}

.stc-feature-panel {
	align-items: center;
	background: #eef6f2;
	border: 1px solid var(--stc-line);
	border-radius: var(--stc-radius);
	display: grid;
	gap: 24px;
	grid-template-columns: 1fr auto;
	padding: 28px;
}

.stc-feature-panel--gold {
	background: #fff6e8;
	grid-template-columns: 1fr 2fr;
}

.stc-feature-panel--gold .stc-ticket-tool {
	grid-column: 1 / -1;
}

.stc-feature-panel h2 {
	font-family: Georgia, "Times New Roman", serif;
	font-size: 34px;
	letter-spacing: 0;
	margin: 0 0 8px;
}

.stc-post-list {
	display: grid;
	gap: 18px;
	grid-template-columns: repeat(auto-fit, minmax(min(100%, 280px), 1fr));
}

.stc-post-card {
	background: #fff;
	border: 1px solid var(--stc-line);
	border-radius: var(--stc-radius);
	overflow: hidden;
}

.stc-post-card__link {
	display: grid;
	gap: 14px;
	min-height: 100%;
	padding: 22px;
}

.stc-post-card__media {
	aspect-ratio: 4 / 5;
	display: block;
	margin: -22px -22px 0;
	overflow: hidden;
}

.stc-post-card__image {
	display: block;
	height: 100%;
	object-fit: cover;
	object-position: center;
	width: 100%;
}

.stc-post-card__meta {
	align-items: center;
	color: var(--stc-muted);
	display: flex;
	flex-wrap: wrap;
	font-size: 13px;
	font-weight: 700;
	gap: 10px;
	line-height: 1.4;
}

.stc-post-card__type {
	background: #eef6f2;
	border: 1px solid #cfe0d8;
	border-radius: 999px;
	color: var(--stc-green);
	display: inline-flex;
	padding: 5px 9px;
}

.stc-post-card--attraction-guide .stc-post-card__type {
	background: #fff6e8;
	border-color: #ead7b9;
	color: var(--stc-gold);
}

.stc-post-card--survival-kit .stc-post-card__type {
	background: #fff1ef;
	border-color: #f1cbc7;
	color: var(--stc-red);
}

.stc-post-card h2 {
	font-size: 22px;
	line-height: 1.2;
	margin: 0;
}

.stc-post-card p,
.stc-content__header p {
	color: var(--stc-muted);
	line-height: 1.6;
	margin: 0;
}

.stc-post-card__cta {
	align-self: end;
	color: var(--stc-red);
	font-size: 14px;
	font-weight: 800;
}

.stc-latest-guides {
	display: grid;
	gap: 22px;
}

.stc-latest-guides__header {
	align-items: end;
	display: flex;
	gap: 18px;
	justify-content: space-between;
}

.stc-latest-guides__header p {
	color: var(--stc-red);
	font-size: 13px;
	font-weight: 800;
	letter-spacing: .08em;
	margin: 0 0 6px;
	text-transform: uppercase;
}

.stc-latest-guides__header h2 {
	font-family: Georgia, "Times New Roman", serif;
	font-size: 34px;
	letter-spacing: 0;
	margin: 0;
}

.stc-latest-guides__header a {
	color: var(--stc-green);
	font-weight: 800;
	white-space: nowrap;
}

.stc-latest-guides__empty {
	background: #fff;
	border: 1px dashed #cfe0d8;
	border-radius: var(--stc-radius);
	color: var(--stc-muted);
	margin: 0;
	padding: 20px;
}

.stc-footer {
	background: #0d1714;
	color: #fff;
	padding: 0 max(32px, calc((100vw - var(--stc-max)) / 2 + 32px));
}

.stc-footer__inner {
	display: grid;
	gap: 48px;
	grid-template-columns: 2.15fr 1fr 1fr 1fr 1.25fr;
	padding: 48px 0 34px;
}

.stc-footer__brand p {
	color: #8a9c94;
	line-height: 1.55;
	max-width: 260px;
}

.stc-footer h2 {
	color: #fff;
	font-size: 14px;
	font-weight: 700;
	letter-spacing: .04em;
	margin: 0 0 12px;
	text-transform: uppercase;
}

.stc-footer a {
	color: #9eb0a7;
	display: block;
	margin: 0;
}

.stc-footer__column a {
	line-height: 1.4;
	padding: 6px 0;
	text-decoration: none;
}

.stc-footer .stc-brand--footer {
	color: #fff;
	display: inline-flex;
}

.stc-footer__column a:hover,
.stc-footer__column a:focus-visible {
	color: #fff;
}

.stc-footer__socials {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	margin-top: 22px;
}

.stc-footer__social {
	align-items: center;
	background: rgba(255, 255, 255, .08);
	border-radius: 50%;
	color: #fff;
	display: inline-flex;
	height: 36px;
	justify-content: center;
	width: 36px;
}

.stc-footer__social svg {
	fill: none;
	height: 18px;
	stroke: currentColor;
	stroke-linecap: round;
	stroke-linejoin: round;
	stroke-width: 1.8;
	width: 18px;
}

.stc-footer__bottom {
	align-items: center;
	border-top: 1px solid rgba(255, 255, 255, .08);
	display: flex;
	flex-wrap: wrap;
	gap: 16px;
	justify-content: space-between;
	padding: 18px 0 22px;
}

.stc-footer__bottom p {
	color: #8a9c94;
	margin: 0;
}

.stc-footer__legal {
	display: flex;
	gap: 18px;
}

.stc-footer__legal a {
	font-size: 13px;
	padding: 6px 0;
	text-decoration: none;
}

.stc-footer__legal a:hover,
.stc-footer__legal a:focus-visible {
	color: #fff;
}

.stc-footer__seal {
	align-items: center;
	background: var(--stc-red);
	border-radius: 4px;
	color: #fff;
	display: inline-flex;
	font-size: 10px;
	font-weight: 800;
	height: 28px;
	justify-content: center;
	letter-spacing: .06em;
	width: 28px;
}

@media (max-width: 840px) {
	.stc-section__header {
		align-items: flex-start;
		flex-direction: column;
	}

	.stc-latest-guides__header {
		align-items: flex-start;
		flex-direction: column;
	}

	.stc-header {
		align-items: center;
		display: grid;
		grid-template-columns: 1fr auto;
		padding: 18px 20px;
	}

	.home .stc-header {
		left: 0;
		max-width: none;
		padding: 18px 20px;
		transform: none;
	}

	.stc-menu-toggle {
		display: inline-flex;
		position: relative;
	}

	.stc-nav {
		background: rgba(255, 255, 255, .98);
		border: 1px solid var(--stc-line);
		border-radius: var(--stc-radius);
		box-shadow: var(--stc-soft-shadow);
		color: var(--stc-ink);
		display: none;
		grid-column: 1 / -1;
		grid-template-columns: 1fr;
		gap: 12px;
		margin-top: 14px;
		padding: 16px;
		width: 100%;
	}

	.home .stc-nav {
		background: rgba(15, 21, 19, .94);
		border-color: rgba(255, 255, 255, .14);
		color: #fff;
	}

	.stc-header.is-menu-open .stc-nav {
		display: grid;
	}

	.stc-header.is-menu-open .stc-menu-toggle__line:nth-child(1) {
		transform: rotate(45deg);
	}

	.stc-header.is-menu-open .stc-menu-toggle__line:nth-child(2) {
		opacity: 0;
	}

	.stc-header.is-menu-open .stc-menu-toggle__line:nth-child(3) {
		transform: rotate(-45deg);
	}

	.stc-link-grid,
	.stc-link-grid--five,
	.stc-feature-panel,
	.stc-feature-panel--gold,
	.stc-planner,
	.stc-ticket-band,
	.stc-faq__grid,
	.stc-footer__inner {
		grid-template-columns: 1fr;
	}

	.home .stc-hero {
		background:
			linear-gradient(to top, rgba(0, 0, 0, .7) 0%, rgba(0, 0, 0, .3) 50%, rgba(0, 0, 0, .1) 100%),
			url("../images/hero-home.png") 62% center / cover no-repeat,
			linear-gradient(135deg, #12392f, #b76a35 48%, #d9e6ef);
		height: 75vh;
		max-height: 580px;
		min-height: 480px;
	}

	.home .stc-hero__content {
		bottom: 44px;
		left: 20px;
		max-width: 320px;
		right: 20px;
		top: auto;
	}

	.home .stc-hero h1 {
		font-size: 32px;
		line-height: 1.15;
		margin-bottom: 14px;
	}

	.home .stc-hero p {
		color: rgba(255, 255, 255, .9);
		font-size: 13px;
		margin-bottom: 20px;
	}

	.home .stc-hero .stc-button--primary {
		background: #c84832;
		border-radius: 10px;
		box-shadow: 0 4px 16px rgba(0, 0, 0, .18);
		font-size: 14px;
		font-weight: 600;
		height: 46px;
		min-height: 46px;
		transition: opacity .16s ease, transform .16s ease;
	}

	.home .stc-hero .stc-button--primary:active {
		opacity: .92;
		transform: scale(.97);
	}

	.home .stc-section,
	.home .stc-faq {
		padding: 30px 20px;
	}

	.home .stc-section__header,
	.home .stc-faq .stc-section__header {
		align-items: center;
		flex-direction: row;
		gap: 12px;
	}

	.home .stc-section h2,
	.home .stc-faq h2 {
		font-size: 24px;
	}

	.home .stc-section__header a {
		font-size: 13px;
		white-space: nowrap;
	}

	.home .stc-section__header .stc-section__view-all {
		color: var(--stc-green);
	}

	.home .stc-survival {
		background: #f9faf9;
		border-bottom: 1px solid #eef2f0;
		box-shadow: none;
		padding: 0;
	}

	.home .stc-survival__grid {
		background: #f9faf9;
		gap: 4px;
		grid-template-columns: repeat(5, minmax(0, 1fr));
		overflow: visible;
		padding: 16px 8px;
	}

	.home .stc-survival-card {
		gap: 6px;
		grid-template-rows: 40px auto;
		min-height: 68px;
		min-width: 0;
		padding: 0 2px;
		transition: opacity .16s ease, transform .16s ease;
	}

	.home .stc-survival-card::after {
		display: none;
	}

	.home .stc-survival-card:active {
		opacity: .85;
		transform: scale(.95);
	}

	.home .stc-survival-card__icon {
		background: rgba(20, 83, 45, .08);
		color: #14532d;
		height: 40px;
		width: 40px;
	}

	.home .stc-survival-card__icon svg {
		height: 21px;
		width: 21px;
	}

	.home .stc-survival-card strong {
		color: #2d3748;
		font-size: 11px;
		font-weight: 500;
		line-height: 1.2;
		overflow: hidden;
		text-align: center;
		text-overflow: ellipsis;
		white-space: nowrap;
		width: 100%;
	}

	.stc-card-grid--cities,
	.stc-card-grid--attractions,
	.stc-page-primary .stc-card-grid--cities,
	.stc-page-primary .stc-card-grid--attractions {
		gap: 12px;
		grid-auto-flow: row;
		grid-template-columns: repeat(2, minmax(0, 1fr));
		overflow: visible;
		padding-bottom: 0;
		transition: max-height .5s ease;
	}

	.stc-card-grid--cities .stc-image-card,
	.stc-card-grid--attractions .stc-image-card {
		aspect-ratio: 3 / 4;
		border-radius: 14px;
	}

	.stc-card-grid--cities .stc-image-card__content span,
	.stc-card-grid--attractions .stc-image-card__content span {
		color: rgba(255, 255, 255, .85);
		font-size: 12px;
	}

	.stc-js .stc-guide-grid-shell.is-ready .stc-card-grid {
		max-height: var(--stc-guide-collapsed-height);
		overflow: hidden;
	}

	.stc-js .stc-guide-grid-shell.is-ready.is-expanded .stc-card-grid {
		max-height: var(--stc-guide-expanded-height);
	}

	.stc-js .stc-guide-grid-shell.is-ready .stc-guide-grid-reveal {
		align-items: center;
		display: flex;
		justify-content: center;
		margin-top: 12px;
		max-height: 44px;
		opacity: 1;
		overflow: hidden;
		transition: margin .3s ease, max-height .3s ease, opacity .24s ease, visibility .24s ease;
		visibility: visible;
	}

	.stc-js .stc-guide-grid-shell.is-ready.is-expanded .stc-guide-grid-reveal {
		margin-top: 0;
		max-height: 0;
		opacity: 0;
		visibility: hidden;
	}

	.stc-guide-grid-reveal button {
		-webkit-backdrop-filter: blur(10px);
		align-items: center;
		backdrop-filter: blur(10px);
		background: rgba(255, 255, 255, .82);
		border: 1px solid rgba(17, 111, 83, .2);
		border-radius: 999px;
		box-shadow: 0 2px 8px rgba(0, 0, 0, .06);
		color: var(--stc-green);
		cursor: pointer;
		display: inline-flex;
		font: inherit;
		font-size: 12px;
		font-weight: 800;
		gap: 5px;
		justify-content: center;
		min-height: 38px;
		padding: 0 16px;
		transition: opacity .16s ease, transform .16s ease;
	}

	.stc-guide-grid-reveal button:active {
		opacity: .9;
		transform: scale(.96);
	}

	.stc-guide-grid-reveal__chevron {
		fill: none;
		height: 16px;
		stroke: currentColor;
		stroke-linecap: round;
		stroke-linejoin: round;
		stroke-width: 2;
		width: 16px;
	}

	.stc-page-hero--visual {
		background:
			linear-gradient(180deg, rgba(255, 255, 255, .98), rgba(255, 255, 255, .94)),
			var(--stc-page-hero-image, url("../images/guide-card-bg.png")) right top / 220px auto no-repeat;
		padding: 62px 24px 38px;
	}

	.stc-planner,
	.stc-ticket-band {
		gap: 16px;
		margin-left: 20px;
		margin-right: 20px;
		padding: 20px;
	}

	.stc-planner--page {
		margin-bottom: 28px;
		margin-top: 24px;
	}

	.stc-faq--page {
		padding: 24px 20px 32px;
	}

	.stc-planner__intro {
		gap: 14px;
		grid-template-columns: 58px 1fr;
	}

	.stc-planner__intro h2 {
		font-size: 18px;
		line-height: 1.2;
		margin-bottom: 6px;
	}

	.stc-planner__intro p {
		font-size: 13px;
		line-height: 1.35;
		margin: 0;
	}

	.stc-planner__icon {
		height: 54px;
		width: 54px;
	}

	.stc-planner__icon svg {
		height: 52px;
		width: 52px;
	}

	.stc-planner__partner {
		border-left: 0;
		border-top: 1px solid rgba(20, 107, 84, .18);
		gap: 3px;
		padding: 14px 0 0;
	}

	.stc-planner__partner > span {
		font-size: 11px;
		line-height: 1.3;
	}

	.stc-planner__partner strong {
		line-height: 1.05;
	}

	.stc-planner__partner p {
		line-height: 1.4;
		margin: 6px 0 0;
	}

	.stc-planner strong {
		font-size: 30px;
	}

	.stc-planner__art {
		bottom: 16px;
		height: 82px;
		min-height: 0;
		opacity: .08;
		position: absolute;
		right: 12px;
		width: 150px;
	}

	.stc-planner__partner > * {
		max-width: 230px;
	}

	.stc-planner__partner .stc-button {
		font-size: 12px;
		white-space: nowrap;
	}

	.stc-ticket-band__intro {
		gap: 12px;
		grid-template-columns: 62px 1fr;
	}

	.stc-ticket-band__icon {
		height: 54px;
		width: 62px;
	}

	.stc-ticket-band h2 {
		font-size: 16px;
		line-height: 1.15;
		margin-bottom: 6px;
		white-space: normal;
	}

	.stc-ticket-band__intro p {
		font-size: 13px;
		line-height: 1.35;
		margin: 0;
	}

	.stc-ticket-band__steps {
		border-left: 0;
		border-top: 1px solid rgba(169, 120, 36, .22);
		gap: 14px;
		grid-template-columns: repeat(2, minmax(0, 1fr));
		padding: 14px 0 0;
	}

	.stc-ticket-band__steps strong {
		display: block;
		line-height: 1.25;
	}

	.stc-ticket-band__action {
		justify-items: stretch;
	}

	.stc-ticket-band__action p {
		line-height: 1.4;
		margin: 6px 0 0;
	}

	.stc-ticket-band__action .stc-button {
		width: 100%;
	}

	.stc-footer {
		padding: 0 20px;
	}

	.stc-footer__inner {
		gap: 22px 28px;
		grid-template-columns: repeat(2, minmax(0, 1fr));
		padding: 32px 0 24px;
	}

	.stc-footer__brand {
		grid-column: 1 / -1;
	}

	.stc-footer__bottom {
		align-items: center;
		flex-direction: column;
		justify-content: center;
		text-align: center;
	}

	.stc-attraction-guide__layout,
	.stc-city-guide__layout,
	.stc-survival-kit__layout {
		grid-template-columns: 1fr;
	}

	.stc-guide-toc--desktop {
		display: none;
	}

	.stc-guide-toc--mobile {
		display: grid;
		gap: 10px;
		padding: 14px 16px;
	}

	.stc-guide-toc--mobile ol {
		display: flex;
		gap: 8px;
		overflow-x: auto;
		overflow-y: hidden;
		padding-bottom: 4px;
		scroll-snap-type: x proximity;
		scrollbar-width: none;
	}

	.stc-guide-toc--mobile ol::-webkit-scrollbar {
		display: none;
	}

	.stc-guide-toc--mobile li {
		flex: 0 0 auto;
		scroll-snap-align: start;
	}

	.stc-guide-toc--mobile a {
		background: #f3f8f5;
		border: 1px solid #dce8e1;
		border-radius: 6px;
		color: var(--stc-green);
		font-size: 12px;
		padding: 8px 10px;
		white-space: nowrap;
	}

	.stc-attraction-guide__hero,
	.stc-city-guide__hero,
	.stc-survival-kit__hero,
	.stc-entry-content--guide {
		padding: 24px;
	}

	.stc-guide-quick-facts {
		margin-left: -24px;
		margin-right: -24px;
		padding: 22px 24px;
	}

	.stc-guide-facts-grid {
		grid-template-columns: 1fr;
	}

	.stc-attraction-guide__sidebar,
	.stc-city-guide__sidebar,
	.stc-survival-kit__sidebar {
		position: static;
	}

	.search-form {
		flex-direction: column;
		max-width: none;
	}

	.search-submit {
		width: 100%;
	}
}

@media (min-width: 600px) and (max-width: 840px) {
	.stc-footer__inner {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.stc-footer__brand {
		grid-column: 1 / -1;
	}
}

/* Generic CMS-driven article shell and Parent Theme utility fallback. */
.stc-article-hero {
	background: #17221d center / cover no-repeat;
	border-radius: var(--stc-radius);
	color: #fff;
	min-height: 420px;
	overflow: visible;
	padding: 32px;
	position: relative;
}

.stc-article-hero--attraction { background-image: linear-gradient(90deg, rgba(7,17,13,.92), rgba(7,17,13,.28)), url("../images/card-forbidden-city.png"); }
.stc-article-hero--city { background-image: linear-gradient(90deg, rgba(7,17,13,.92), rgba(7,17,13,.28)), url("../images/card-beijing.png"); }
.stc-article-hero--survival { background-image: linear-gradient(90deg, rgba(7,17,13,.92), rgba(7,17,13,.28)), url("../images/card-hangzhou.png"); }

.stc-article-hero__media {
	border-radius: inherit;
	inset: 0;
	overflow: hidden;
	position: absolute;
}

.stc-article-hero__media::after {
	background: linear-gradient(90deg, rgba(7,17,13,.92), rgba(7,17,13,.28));
	content: "";
	inset: 0;
	position: absolute;
}

.stc-article-hero__image {
	height: 100%;
	object-fit: cover;
	width: 100%;
}

.stc-article-hero__content {
	display: flex;
	flex-direction: column;
	height: 100%;
	justify-content: end;
	max-width: 720px;
	position: relative;
}

.stc-article-hero__eyebrow,
.stc-article-hero__meta {
	font-size: 13px;
	font-weight: 800;
	letter-spacing: .08em;
	margin: 0;
	text-transform: uppercase;
}

.stc-article-hero h1 {
	color: #fff;
	font-family: Georgia, "Times New Roman", serif;
	font-size: clamp(42px, 6vw, 72px);
	line-height: 1;
	margin: 12px 0;
}

.stc-article-hero__deck {
	color: rgba(255,255,255,.84);
	font-size: 18px;
	line-height: 1.55;
	margin: 0 0 12px;
}

.stc-article-layout--with-toc {
	align-items: start;
	display: grid;
	gap: 26px;
	grid-template-columns: minmax(0, 1fr) 300px;
}

.stc-article-sidebar {
	position: sticky;
	top: 110px;
}

.stc-article-hero__utilities {
	margin-top: 18px;
	max-width: 340px;
}

.stc-share {
	position: relative;
}

.stc-share__trigger {
	align-items: center;
	background: rgba(255,255,255,.12);
	border: 1px solid rgba(255,255,255,.34);
	border-radius: 12px;
	color: #fff;
	cursor: pointer;
	display: grid;
	gap: 10px;
	grid-template-columns: 40px 1fr auto;
	min-height: 64px;
	padding: 8px 10px;
	text-align: left;
	width: 100%;
}

.stc-share__trigger-icon,
.stc-share__close {
	align-items: center;
	display: inline-flex;
	height: 40px;
	justify-content: center;
	width: 40px;
}

.stc-share svg {
	fill: none;
	height: 19px;
	stroke: currentColor;
	stroke-width: 1.8;
	width: 19px;
}

.stc-share__trigger-copy {
	display: grid;
}

.stc-share__trigger-copy small {
	color: rgba(255,255,255,.68);
}

.stc-share__panel {
	background: #fff;
	border: 1px solid var(--stc-line);
	border-radius: 14px;
	box-shadow: 0 20px 50px rgba(7,17,13,.24);
	color: var(--stc-ink);
	display: grid;
	gap: 12px;
	margin-top: 8px;
	padding: 18px;
	position: absolute;
	width: min(390px, calc(100vw - 40px));
	z-index: 20;
}

.stc-share__panel[hidden] { display: none; }
.stc-share__panel-heading { align-items: start; display: flex; justify-content: space-between; }
.stc-share__panel-heading > div { display: grid; }
.stc-share__panel-heading span { color: var(--stc-green); font-size: 11px; font-weight: 800; text-transform: uppercase; }
.stc-share__panel-heading strong { font-size: 21px; }
.stc-share__close { background: #f1f4f2; border: 0; border-radius: 999px; cursor: pointer; }
.stc-share__panel-copy, .stc-share__status { color: var(--stc-muted); font-size: 13px; margin: 0; }
.stc-share__channels { display: grid; gap: 8px; grid-template-columns: 1fr 1fr; }
.stc-share__channel { border: 1px solid var(--stc-line); border-radius: 10px; color: var(--stc-ink); min-height: 46px; padding: 12px; }
.stc-share__channel span { margin-right: 8px; }
.stc-share__copy-row { display: grid; gap: 8px; grid-template-columns: 1fr auto; }
.stc-share__copy-row input { border: 1px solid var(--stc-line); border-radius: 8px; min-width: 0; padding: 10px; }
.stc-share__copy { background: var(--stc-green); border: 0; border-radius: 8px; color: #fff; font-weight: 800; min-height: 44px; padding: 0 14px; }
.stc-share__clipboard-proxy { height: 1px; left: -9999px; position: fixed; width: 1px; }

@media (max-width: 840px) {
	.stc-article-layout--with-toc { grid-template-columns: 1fr; }
	.stc-article-sidebar { display: none; }
}
