html:has(.tss-guide-hub),
html:has(.tss-guide-post) {
	scroll-behavior: smooth;
}

.tss-guide-hub,
.tss-guide-post,
.tss-guide-hub *,
.tss-guide-post * {
	box-sizing: border-box;
}

.tss-guide-hub,
.tss-guide-post {
	--tss-guide-paper: #fffdf4;
	--tss-guide-paper-warm: #fff7df;
	--tss-guide-sage: #dff4f2;
	--tss-guide-mint: #eef6eb;
	--tss-guide-blue: #dceef8;
	--tss-guide-coral: #ffd7c8;
	--tss-guide-shadow: rgba(16, 16, 16, 0.16);
	--tss-guide-rail: rgba(16, 16, 16, 0.13);
	--tss-guide-text: rgba(16, 16, 16, 0.76);
	--tss-guide-muted: rgba(16, 16, 16, 0.62);
	--tss-guide-line: rgba(16, 16, 16, 0.1);
	position: relative;
	left: 50%;
	width: 100vw;
	max-width: 100vw;
	margin-left: -50vw;
	overflow-x: clip;
	background:
		linear-gradient(180deg, rgba(255, 247, 223, 0.98), rgba(223, 244, 242, 0.58) 42%, rgba(255, 247, 223, 0.96)),
		var(--tss-cream);
	color: var(--tss-black);
	font-family: "Instrument Sans", Arial, sans-serif;
}

.tss-guide-hub a,
.tss-guide-post a {
	color: inherit;
	text-decoration-thickness: 2px;
	text-underline-offset: 3px;
}

.tss-guide-hub__inner,
.tss-guide-post__inner {
	width: min(1160px, calc(100% - 40px));
	margin: 0 auto;
}

@media (min-width: 1200px) {
	body.single-post:has(.tss-guide-post) .site-header__desktop .header-main.tss-sign-header-ready {
		--tss-header-sign-width: clamp(112px, 8vw, 132px);
		--tss-header-sign-slot-width: calc(var(--tss-header-sign-width) + clamp(36px, 3vw, 48px));
	}

	body.single-post:has(.tss-guide-post) .site-header__desktop.headroom--not-top .tss-header-sign,
	body.single-post:has(.tss-guide-post) .site-header__desktop.minimized .tss-header-sign {
		opacity: 0;
		visibility: hidden;
		pointer-events: none;
	}
}

@media (max-width: 1199px) {
	body.single-post:has(.tss-guide-post) .site-header__mobile,
	body.single-post:has(.tss-guide-post) .site-header__mobile .header-mobile-main {
		background: rgba(255, 255, 255, 0.98);
	}

	body.single-post:has(.tss-guide-post) .site-header__mobile .header-logo {
		animation: none;
		transform: none;
	}

	body.single-post:has(.tss-guide-post) .site-header__mobile .header-logo > a {
		filter: drop-shadow(0 4px 8px rgba(16, 16, 16, 0.12));
		transform: translateY(0);
	}

	body.single-post:has(.tss-guide-post) .site-header__mobile .header-logo > a img {
		max-width: clamp(58px, 16vw, 68px);
	}
}

.tss-guide-breadcrumb {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 8px;
	margin-bottom: 20px;
	color: rgba(16, 16, 16, 0.66);
	font-size: 13px;
	font-weight: 750;
	line-height: 1.35;
}

.tss-guide-breadcrumb a {
	color: rgba(16, 16, 16, 0.72);
	text-decoration: none;
}

.tss-guide-breadcrumb a:hover,
.tss-guide-breadcrumb a:focus {
	color: var(--tss-black);
	text-decoration: underline;
}

.tss-guide-stamp {
	position: relative;
	display: inline-flex;
	align-items: center;
	width: fit-content;
	min-height: 32px;
	border: 2px solid var(--tss-black);
	border-radius: 6px;
	padding: 0 11px;
	background: var(--tss-yellow);
	color: var(--tss-black);
	font-size: 12px;
	font-weight: 950;
	letter-spacing: 0;
	line-height: 1;
	text-transform: uppercase;
	box-shadow: 3px 3px 0 var(--tss-black);
	transform: rotate(-1deg);
}

.tss-guide-stamp--small {
	min-height: 28px;
	border-width: 1.5px;
	font-size: 11px;
	box-shadow: 2px 2px 0 var(--tss-black);
}

.tss-guide-hub h1,
.tss-guide-hub h2,
.tss-guide-hub h3,
.tss-guide-post h1,
.tss-guide-post h2,
.tss-guide-post h3 {
	margin: 0;
	color: var(--tss-black);
	font-weight: 950;
	letter-spacing: 0;
	text-wrap: balance;
}

.tss-guide-hub__hero,
.tss-guide-post__hero {
	position: relative;
	isolation: isolate;
	padding: 42px 0 34px;
	background:
		repeating-linear-gradient(90deg, rgba(16, 16, 16, 0.035) 0 1px, transparent 1px 34px),
		linear-gradient(180deg, #fff9e8, #fff3c8 72%, rgba(255, 247, 223, 0.1));
	border-bottom: 2px solid rgba(16, 16, 16, 0.13);
}

.tss-guide-hub__hero::before,
.tss-guide-post__hero::before {
	content: "";
	position: absolute;
	right: max(22px, calc((100vw - 1160px) / 2));
	bottom: 18px;
	z-index: -1;
	width: 210px;
	height: 74px;
	border-top: 2px dashed rgba(16, 16, 16, 0.22);
	border-bottom: 2px dashed rgba(16, 16, 16, 0.14);
	border-radius: 999px;
	transform: rotate(-7deg);
	pointer-events: none;
}

.tss-guide-hub__hero-grid,
.tss-guide-post__hero-grid {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(300px, 380px);
	gap: 24px;
	align-items: end;
}

.tss-guide-hub__intro,
.tss-guide-post__title-block {
	min-width: 0;
}

.tss-guide-hub__intro h1,
.tss-guide-post__title-block h1 {
	max-width: 820px;
	margin-top: 16px;
	font-size: 56px;
	line-height: 0.96;
}

.tss-guide-hub__intro p,
.tss-guide-post__title-block p {
	max-width: 740px;
	margin: 16px 0 0;
	color: var(--tss-ink-soft);
	font-size: 17px;
	font-weight: 650;
	line-height: 1.55;
}

.tss-guide-search {
	display: grid;
	grid-template-columns: minmax(0, 1fr) auto;
	gap: 10px;
	max-width: 700px;
	margin-top: 22px;
	padding: 8px;
	border: 2px solid var(--tss-black);
	border-radius: 9px;
	background: var(--tss-guide-paper);
	box-shadow: 5px 5px 0 rgba(16, 16, 16, 0.12);
}

.tss-guide-search input[type="search"] {
	min-width: 0;
	min-height: 48px;
	border: 1px solid rgba(16, 16, 16, 0.18);
	border-radius: 6px;
	padding: 0 14px;
	background: #ffffff;
	color: var(--tss-black);
	font-size: 15px;
	font-weight: 700;
	line-height: 1.2;
}

.tss-guide-search button,
.tss-guide-handoff > a,
.tss-guide-empty a {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 48px;
	border: 2px solid var(--tss-black);
	border-radius: 999px;
	padding: 0 18px;
	background: var(--tss-black);
	color: #ffffff;
	font-size: 14px;
	font-weight: 900;
	line-height: 1;
	text-decoration: none;
	white-space: nowrap;
	box-shadow: 3px 3px 0 rgba(16, 16, 16, 0.16);
	transition: transform 150ms ease, box-shadow 150ms ease, background-color 150ms ease, color 150ms ease;
}

.tss-guide-search button:hover,
.tss-guide-search button:focus,
.tss-guide-handoff > a:hover,
.tss-guide-handoff > a:focus,
.tss-guide-empty a:hover,
.tss-guide-empty a:focus {
	background: var(--tss-yellow);
	color: var(--tss-black);
	transform: translateY(-1px);
	box-shadow: 5px 5px 0 rgba(16, 16, 16, 0.18);
}

.tss-guide-hub__desk-card,
.tss-guide-post__docket {
	position: relative;
	min-width: 0;
	border: 2px solid var(--tss-black);
	border-radius: 9px;
	padding: 22px;
	background:
		linear-gradient(180deg, rgba(223, 244, 242, 0.88), rgba(255, 253, 244, 0.98)),
		var(--tss-guide-paper);
	box-shadow: 7px 7px 0 var(--tss-black);
}

.tss-guide-hub__desk-card::before,
.tss-guide-post__docket::before {
	content: "";
	position: absolute;
	top: 12px;
	right: 14px;
	width: 52px;
	height: 18px;
	border-top: 2px solid rgba(16, 16, 16, 0.22);
	border-bottom: 2px solid rgba(16, 16, 16, 0.16);
	border-radius: 999px;
	transform: rotate(8deg);
}

.tss-guide-hub__desk-card > span,
.tss-guide-post__docket > span,
.tss-guide-rail-card > span,
.tss-guide-side-card > span,
.tss-guide-answer > span,
.tss-guide-handoff span {
	display: inline-flex;
	width: fit-content;
	margin-bottom: 10px;
	border: 1px solid rgba(16, 16, 16, 0.18);
	border-radius: 999px;
	padding: 5px 9px;
	background: rgba(255, 214, 51, 0.54);
	color: var(--tss-black);
	font-size: 11px;
	font-weight: 900;
	line-height: 1;
	text-transform: uppercase;
}

.tss-guide-hub__desk-card strong,
.tss-guide-post__docket strong {
	display: block;
	max-width: 260px;
	color: var(--tss-black);
	font-size: 29px;
	font-weight: 950;
	line-height: 1;
}

.tss-guide-hub__desk-card p,
.tss-guide-post__docket p {
	margin: 12px 0 0;
	color: var(--tss-ink-soft);
	font-size: 14px;
	font-weight: 700;
	line-height: 1.45;
}

.tss-guide-hub__desk-card ul,
.tss-guide-rail-card ul {
	display: grid;
	gap: 9px;
	margin: 16px 0 0;
	padding: 0;
	list-style: none;
}

.tss-guide-hub__desk-card li,
.tss-guide-rail-card li {
	position: relative;
	padding-left: 22px;
	color: var(--tss-black);
	font-size: 13px;
	font-weight: 750;
	line-height: 1.35;
}

.tss-guide-hub__desk-card li::before,
.tss-guide-rail-card li::before {
	content: "";
	position: absolute;
	top: 0.45em;
	left: 0;
	width: 10px;
	height: 10px;
	border: 2px solid var(--tss-black);
	border-radius: 50%;
	background: var(--tss-yellow);
}

.tss-guide-hub__desk-card a,
.tss-guide-rail-card a,
.tss-guide-side-card a,
.tss-guide-handoff a {
	font-weight: 900;
}

.tss-guide-routes {
	padding: 28px 0 24px;
	background: rgba(255, 253, 244, 0.68);
}

.tss-guide-routes__heading {
	display: flex;
	align-items: end;
	justify-content: space-between;
	gap: 16px;
	margin-bottom: 16px;
}

.tss-guide-routes__heading h2,
.tss-guide-hub__posts-head h2,
.tss-guide-related__head h2 {
	font-size: 30px;
	line-height: 1;
}

.tss-guide-routes__grid {
	display: grid;
	grid-template-columns: repeat(6, minmax(0, 1fr));
	gap: 10px;
}

.tss-guide-route {
	position: relative;
	display: flex;
	min-width: 0;
	min-height: 182px;
	flex-direction: column;
	overflow: hidden;
	border: 2px solid rgba(16, 16, 16, 0.88);
	border-radius: 8px;
	padding: 14px;
	background: var(--tss-guide-paper);
	color: var(--tss-black);
	text-decoration: none;
	box-shadow: 3px 3px 0 rgba(16, 16, 16, 0.12);
	transition: transform 150ms ease, box-shadow 150ms ease, background-color 150ms ease;
}

.tss-guide-route::before {
	content: "";
	position: absolute;
	top: -10px;
	left: 18px;
	width: 28px;
	height: 20px;
	border: 2px solid var(--tss-black);
	border-radius: 0 0 5px 5px;
	background: var(--tss-yellow);
}

.tss-guide-route:hover,
.tss-guide-route:focus {
	background: #ffffff;
	color: var(--tss-black);
	text-decoration: none;
	box-shadow: 6px 6px 0 rgba(16, 16, 16, 0.16);
	transform: translateY(-2px);
}

.tss-guide-route span {
	margin-top: 16px;
	color: var(--tss-ink-soft);
	font-size: 11px;
	font-weight: 950;
	line-height: 1;
	text-transform: uppercase;
}

.tss-guide-route strong {
	display: block;
	margin-top: 8px;
	font-size: 19px;
	font-weight: 950;
	line-height: 1.02;
	text-wrap: balance;
}

.tss-guide-route small {
	display: block;
	margin-top: 9px;
	color: var(--tss-ink-soft);
	font-size: 12px;
	font-weight: 650;
	line-height: 1.35;
}

.tss-guide-route--already-landed,
.tss-guide-pass--already-landed .tss-guide-pass__visual,
.tss-guide-mini-pass--already-landed a {
	background: linear-gradient(180deg, var(--tss-guide-blue), #fffdf4);
}

.tss-guide-route--choosing-data,
.tss-guide-pass--choosing-data .tss-guide-pass__visual,
.tss-guide-mini-pass--choosing-data a {
	background: linear-gradient(180deg, #fff0a3, #fffdf4);
}

.tss-guide-route--phone-checks,
.tss-guide-pass--phone-checks .tss-guide-pass__visual,
.tss-guide-mini-pass--phone-checks a {
	background: linear-gradient(180deg, var(--tss-guide-sage), #fffdf4);
}

.tss-guide-route--roaming-comparison,
.tss-guide-pass--roaming-comparison .tss-guide-pass__visual,
.tss-guide-mini-pass--roaming-comparison a {
	background: linear-gradient(180deg, var(--tss-guide-coral), #fffdf4);
}

.tss-guide-route--destination-guides,
.tss-guide-pass--destination-guides .tss-guide-pass__visual,
.tss-guide-mini-pass--destination-guides a {
	background: linear-gradient(180deg, var(--tss-guide-mint), #fffdf4);
}

.tss-guide-hub__body {
	padding: 34px 0 62px;
}

.tss-guide-hub__layout {
	display: grid;
	grid-template-columns: minmax(236px, 280px) minmax(0, 1fr);
	gap: 28px;
	align-items: start;
}

.tss-guide-hub__rail,
.tss-guide-post__side {
	position: sticky;
	top: 96px;
	display: grid;
	gap: 14px;
	min-width: 0;
}

.tss-guide-rail-card,
.tss-guide-side-card,
.tss-guide-toc {
	min-width: 0;
	border: 1.5px solid rgba(16, 16, 16, 0.18);
	border-radius: 8px;
	padding: 17px;
	background: rgba(255, 253, 244, 0.92);
	box-shadow: 2px 2px 0 rgba(16, 16, 16, 0.08);
}

.tss-guide-rail-card h2,
.tss-guide-side-card h2 {
	font-size: 21px;
	line-height: 1.05;
}

.tss-guide-rail-card > a,
.tss-guide-side-card--links a {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 8px;
	min-height: 38px;
	border-top: 1px solid rgba(16, 16, 16, 0.1);
	padding: 10px 0;
	color: var(--tss-black);
	font-size: 13px;
	font-weight: 850;
	text-decoration: none;
}

.tss-guide-rail-card > a::after,
.tss-guide-side-card--links a::after,
.tss-guide-pass__cta::after {
	content: "";
	flex: 0 0 auto;
	width: 18px;
	height: 18px;
	border-top: 2px solid currentColor;
	border-right: 2px solid currentColor;
	transform: rotate(45deg) translate(-2px, 2px);
}

.tss-guide-rail-card > a:hover,
.tss-guide-rail-card > a:focus,
.tss-guide-side-card--links a:hover,
.tss-guide-side-card--links a:focus {
	text-decoration: underline;
}

.tss-guide-hub__posts {
	min-width: 0;
}

.tss-guide-hub__posts-head,
.tss-guide-related__head {
	display: flex;
	align-items: end;
	justify-content: space-between;
	gap: 14px;
	margin-bottom: 16px;
}

.tss-guide-card-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 16px;
}

.tss-guide-pass {
	min-width: 0;
}

.tss-guide-pass--featured {
	grid-column: 1 / -1;
}

.tss-guide-pass a {
	position: relative;
	display: grid;
	grid-template-columns: 172px minmax(0, 1fr);
	min-height: 100%;
	overflow: hidden;
	border: 2px solid var(--tss-black);
	border-radius: 8px;
	background: var(--tss-guide-paper);
	color: var(--tss-black);
	text-decoration: none;
	box-shadow: 4px 4px 0 rgba(16, 16, 16, 0.12);
	transition: transform 150ms ease, box-shadow 150ms ease;
}

.tss-guide-pass--featured a {
	grid-template-columns: minmax(220px, 0.44fr) minmax(0, 1fr);
	min-height: 278px;
}

.tss-guide-pass a:hover,
.tss-guide-pass a:focus {
	color: var(--tss-black);
	text-decoration: none;
	box-shadow: 7px 7px 0 rgba(16, 16, 16, 0.18);
	transform: translateY(-2px);
}

.tss-guide-pass__visual {
	position: relative;
	display: flex;
	min-width: 0;
	flex-direction: column;
	justify-content: flex-end;
	gap: 9px;
	border-right: 2px solid var(--tss-black);
	padding: 18px;
	background: linear-gradient(180deg, var(--tss-yellow), #fffdf4);
}

.tss-guide-pass__visual::before {
	content: "";
	position: absolute;
	top: 18px;
	left: 18px;
	width: 34px;
	height: 24px;
	border: 2px solid var(--tss-black);
	border-radius: 5px;
	background:
		radial-gradient(circle at 8px 50%, #fffdf4 0 3px, transparent 3.5px),
		var(--tss-yellow);
	box-shadow: 3px 3px 0 rgba(16, 16, 16, 0.14);
	transform: rotate(-6deg);
}

.tss-guide-pass__visual::after {
	content: "";
	position: absolute;
	right: 16px;
	bottom: 20px;
	width: 56px;
	height: 1px;
	border-top: 2px dashed rgba(16, 16, 16, 0.28);
	transform: rotate(-11deg);
}

.tss-guide-pass__visual span {
	position: relative;
	z-index: 1;
	font-size: 11px;
	font-weight: 950;
	line-height: 1;
	text-transform: uppercase;
}

.tss-guide-pass__visual strong {
	position: relative;
	z-index: 1;
	max-width: 100%;
	overflow-wrap: anywhere;
	font-size: 26px;
	font-weight: 950;
	line-height: 0.92;
	text-transform: uppercase;
}

.tss-guide-pass--featured .tss-guide-pass__visual strong {
	font-size: 40px;
}

.tss-guide-pass__body {
	display: flex;
	min-width: 0;
	flex-direction: column;
	padding: 20px;
}

.tss-guide-pass__meta,
.tss-guide-post__meta {
	display: flex;
	flex-wrap: wrap;
	gap: 7px;
	margin-bottom: 12px;
}

.tss-guide-pass__meta span,
.tss-guide-pass__meta time,
.tss-guide-post__meta span,
.tss-guide-post__meta time {
	display: inline-flex;
	align-items: center;
	min-height: 26px;
	border: 1px solid rgba(16, 16, 16, 0.16);
	border-radius: 999px;
	padding: 0 8px;
	background: rgba(255, 247, 223, 0.76);
	color: var(--tss-ink-soft);
	font-size: 11px;
	font-weight: 850;
	line-height: 1;
}

.tss-guide-pass__body > strong {
	display: block;
	min-width: 0;
	color: var(--tss-black);
	font-size: 24px;
	font-weight: 950;
	line-height: 1.04;
	text-wrap: balance;
}

.tss-guide-pass--featured .tss-guide-pass__body > strong {
	font-size: 34px;
	line-height: 0.99;
}

.tss-guide-pass__body small {
	display: block;
	margin-top: 10px;
	color: var(--tss-ink-soft);
	font-size: 14px;
	font-weight: 650;
	line-height: 1.45;
}

.tss-guide-pass__cta {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 10px;
	border-top: 1px solid rgba(16, 16, 16, 0.12);
	margin-top: auto;
	padding-top: 14px;
	color: var(--tss-black);
	font-size: 13px;
	font-weight: 950;
	line-height: 1;
}

.tss-guide-pagination {
	margin-top: 30px;
}

.tss-guide-pagination ul {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 8px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.tss-guide-pagination .page-numbers {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 42px;
	min-height: 42px;
	border: 1.5px solid rgba(16, 16, 16, 0.16);
	border-radius: 999px;
	padding: 0 13px;
	background: rgba(255, 253, 244, 0.88);
	color: var(--tss-black);
	font-size: 13px;
	font-weight: 850;
	line-height: 1;
	text-decoration: none;
}

.tss-guide-pagination .page-numbers.current {
	border-color: var(--tss-black);
	background: var(--tss-black);
	color: #ffffff;
}

.tss-guide-empty {
	border: 2px solid var(--tss-black);
	border-radius: 8px;
	padding: 30px;
	background: var(--tss-guide-paper);
	text-align: center;
	box-shadow: 5px 5px 0 rgba(16, 16, 16, 0.13);
}

.tss-guide-empty span {
	display: inline-flex;
	margin-bottom: 10px;
	border: 1px solid rgba(16, 16, 16, 0.18);
	border-radius: 999px;
	padding: 5px 9px;
	background: var(--tss-yellow);
	font-size: 11px;
	font-weight: 950;
	text-transform: uppercase;
}

.tss-guide-empty h2 {
	font-size: 30px;
	line-height: 1;
}

.tss-guide-empty p {
	max-width: 520px;
	margin: 12px auto 18px;
	color: var(--tss-ink-soft);
	font-size: 15px;
	font-weight: 650;
	line-height: 1.5;
}

.tss-guide-post__hero {
	padding-top: clamp(58px, 6vw, 82px);
	padding-bottom: 42px;
}

.tss-guide-post__title-block h1 {
	max-width: 760px;
	font-size: clamp(42px, 4.7vw, 54px);
	line-height: 1.03;
}

.tss-guide-post__meta {
	margin-top: 18px;
	margin-bottom: 0;
}

.tss-guide-post__docket {
	align-self: stretch;
}

.tss-guide-post__docket dl {
	display: grid;
	gap: 10px;
	margin: 16px 0 0;
}

.tss-guide-post__docket div {
	display: grid;
	grid-template-columns: 86px minmax(0, 1fr);
	gap: 10px;
	border-top: 1px solid rgba(16, 16, 16, 0.12);
	padding-top: 10px;
}

.tss-guide-post__docket dt,
.tss-guide-post__docket dd {
	margin: 0;
	font-size: 13px;
	line-height: 1.35;
}

.tss-guide-post__docket dt {
	color: rgba(16, 16, 16, 0.62);
	font-weight: 900;
	text-transform: uppercase;
}

.tss-guide-post__docket dd {
	min-width: 0;
	color: var(--tss-black);
	font-weight: 750;
	overflow-wrap: anywhere;
}

.tss-guide-post__quick {
	padding: 28px 0 0;
	background: rgba(255, 253, 244, 0.72);
}

.tss-guide-answer {
	position: relative;
	overflow: hidden;
	border: 1.5px solid rgba(16, 16, 16, 0.84);
	border-radius: 9px;
	padding: 24px 28px 25px;
	background:
		linear-gradient(90deg, var(--tss-yellow) 0 7px, transparent 7px),
		var(--tss-guide-paper);
	box-shadow: 4px 4px 0 rgba(16, 16, 16, 0.1);
}

.tss-guide-answer::after {
	content: "";
	position: absolute;
	top: 0;
	right: 22px;
	bottom: 0;
	width: 1px;
	border-left: 2px dashed rgba(16, 16, 16, 0.16);
}

.tss-guide-answer h2 {
	font-size: 31px;
	line-height: 1.04;
}

.tss-guide-answer p {
	max-width: 72ch;
	margin: 12px 0 0;
	color: var(--tss-guide-text);
	font-size: 17px;
	font-weight: 650;
	line-height: 1.64;
}

.tss-guide-post__body {
	padding: 26px 0 48px;
}

.tss-guide-post__layout {
	display: grid;
	grid-template-columns: minmax(220px, 280px) minmax(0, 740px);
	gap: 34px;
	align-items: start;
	justify-content: center;
}

.tss-guide-toc {
	display: grid;
	gap: 4px;
}

.tss-guide-toc > span {
	display: block;
	margin-bottom: 8px;
	color: var(--tss-black);
	font-size: 12px;
	font-weight: 950;
	line-height: 1;
	text-transform: uppercase;
}

.tss-guide-toc__item {
	display: block;
	border-left: 3px solid transparent;
	padding: 8px 0 8px 10px;
	color: var(--tss-guide-muted);
	font-size: 13px;
	font-weight: 750;
	line-height: 1.25;
	text-decoration: none;
}

.tss-guide-toc__item--level-3 {
	margin-left: 10px;
	font-size: 12px;
	font-weight: 750;
}

.tss-guide-toc__item:hover,
.tss-guide-toc__item:focus {
	border-color: var(--tss-yellow);
	color: var(--tss-black);
	text-decoration: underline;
}

.tss-guide-side-card {
	background:
		linear-gradient(180deg, rgba(255, 214, 51, 0.15), rgba(255, 253, 244, 0.96)),
		var(--tss-guide-paper);
}

.tss-guide-side-card p {
	margin: 0;
	color: var(--tss-guide-text);
	font-size: 13px;
	font-weight: 650;
	line-height: 1.52;
}

.tss-guide-article {
	min-width: 0;
	border: 1.5px solid rgba(16, 16, 16, 0.82);
	border-radius: 9px;
	padding: 38px 46px 42px;
	background: linear-gradient(180deg, rgba(255, 253, 244, 0.98), #fffffb);
	box-shadow: 4px 4px 0 rgba(16, 16, 16, 0.08);
	color: var(--tss-black);
}

.tss-guide-article > * {
	max-width: 66ch;
}

.tss-guide-article > table,
.tss-guide-article > figure,
.tss-guide-article > .wp-block-table,
.tss-guide-article > .wp-block-image,
.tss-guide-article > .wp-block-gallery {
	max-width: none;
}

.tss-guide-article > *:first-child {
	margin-top: 0;
}

.tss-guide-article h2,
.tss-guide-article h3 {
	position: relative;
	scroll-margin-top: 150px;
}

.tss-guide-article h2 {
	border-top: 1px solid var(--tss-guide-line);
	margin: 34px 0 16px;
	padding-top: 30px;
	font-size: 32px;
	line-height: 1.09;
}

.tss-guide-article h2:first-child {
	border-top: 0;
	padding-top: 0;
}

.tss-guide-article h2::before {
	content: "";
	display: inline-block;
	width: 20px;
	height: 16px;
	border: 2px solid var(--tss-black);
	border-radius: 4px;
	margin-right: 9px;
	background: var(--tss-yellow);
	box-shadow: 1px 1px 0 rgba(16, 16, 16, 0.14);
	vertical-align: 0.05em;
	transform: rotate(-4deg);
}

.tss-guide-article h3 {
	margin: 26px 0 10px;
	font-size: 23px;
	line-height: 1.16;
}

.tss-guide-article p,
.tss-guide-article li {
	color: rgba(16, 16, 16, 0.7);
	font-size: 16px;
	font-weight: 500;
	line-height: 1.8;
}

.tss-guide-article p {
	margin: 0 0 20px;
}

.tss-guide-article strong {
	color: var(--tss-black);
	font-weight: 820;
}

.tss-guide-article ul,
.tss-guide-article ol {
	display: grid;
	gap: 9px;
	margin: 16px 0 28px;
	border: 1px solid rgba(16, 16, 16, 0.08);
	border-radius: 8px;
	padding: 16px 20px 16px 34px;
	background: rgba(255, 250, 229, 0.58);
}

.tss-guide-article li::marker {
	color: var(--tss-black);
	font-weight: 900;
}

.tss-guide-article a {
	color: var(--tss-black);
	font-weight: 850;
	text-decoration-color: rgba(16, 16, 16, 0.32);
}

.tss-guide-article a:hover,
.tss-guide-article a:focus {
	text-decoration-color: var(--tss-black);
}

.tss-guide-article blockquote,
.tss-guide-article .wp-block-quote {
	position: relative;
	border: 1.5px solid rgba(16, 16, 16, 0.78);
	border-radius: 8px;
	margin: 28px 0;
	padding: 20px 22px 20px 26px;
	background: var(--tss-guide-sage);
	box-shadow: 3px 3px 0 rgba(16, 16, 16, 0.1);
}

.tss-guide-article blockquote::before,
.tss-guide-article .wp-block-quote::before {
	content: "Desk note";
	position: absolute;
	top: -15px;
	left: 18px;
	border: 2px solid var(--tss-black);
	border-radius: 999px;
	padding: 5px 9px;
	background: var(--tss-yellow);
	color: var(--tss-black);
	font-size: 10px;
	font-weight: 950;
	line-height: 1;
	text-transform: uppercase;
}

.tss-guide-article blockquote p,
.tss-guide-article .wp-block-quote p {
	color: var(--tss-black);
	font-weight: 650;
}

.tss-guide-article table {
	display: block;
	width: 100%;
	overflow-x: auto;
	border-collapse: collapse;
	margin: 22px 0;
	background: #ffffff;
}

.tss-guide-article th,
.tss-guide-article td {
	border: 1px solid rgba(16, 16, 16, 0.18);
	padding: 10px 12px;
	text-align: left;
	vertical-align: top;
}

.tss-guide-article th {
	background: var(--tss-yellow);
	color: var(--tss-black);
	font-size: 13px;
	font-weight: 950;
}

.tss-guide-article td {
	color: var(--tss-ink-soft);
	font-size: 14px;
	font-weight: 650;
	line-height: 1.45;
}

.tss-guide-post__handoff {
	padding: 0 0 34px;
}

.tss-guide-handoff {
	display: grid;
	grid-template-columns: minmax(0, 1fr) auto;
	gap: 20px;
	align-items: center;
	border: 1.5px solid rgba(16, 16, 16, 0.82);
	border-radius: 9px;
	padding: 24px;
	background:
		linear-gradient(90deg, var(--tss-yellow) 0 8px, transparent 8px),
		linear-gradient(180deg, #fffdf4, #eaf7f5);
	box-shadow: 4px 4px 0 rgba(16, 16, 16, 0.1);
}

.tss-guide-handoff h2 {
	font-size: 30px;
	line-height: 1;
}

.tss-guide-handoff p {
	max-width: 780px;
	margin: 10px 0 0;
	color: var(--tss-ink-soft);
	font-size: 15px;
	font-weight: 650;
	line-height: 1.55;
}

.tss-guide-post__related {
	padding: 10px 0 64px;
}

.tss-guide-related__grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 14px;
}

.tss-guide-mini-pass a {
	position: relative;
	display: flex;
	min-height: 176px;
	flex-direction: column;
	justify-content: flex-end;
	overflow: hidden;
	border: 2px solid var(--tss-black);
	border-radius: 8px;
	padding: 18px;
	background: var(--tss-guide-paper);
	color: var(--tss-black);
	text-decoration: none;
	box-shadow: 4px 4px 0 rgba(16, 16, 16, 0.12);
	transition: transform 150ms ease, box-shadow 150ms ease;
}

.tss-guide-mini-pass a::before {
	content: "";
	position: absolute;
	top: 16px;
	left: 16px;
	width: 34px;
	height: 22px;
	border: 2px solid var(--tss-black);
	border-radius: 4px;
	background: var(--tss-yellow);
	box-shadow: 2px 2px 0 rgba(16, 16, 16, 0.12);
	transform: rotate(-4deg);
}

.tss-guide-mini-pass a:hover,
.tss-guide-mini-pass a:focus {
	color: var(--tss-black);
	text-decoration: none;
	box-shadow: 7px 7px 0 rgba(16, 16, 16, 0.18);
	transform: translateY(-2px);
}

.tss-guide-mini-pass span {
	color: var(--tss-ink-soft);
	font-size: 11px;
	font-weight: 950;
	line-height: 1;
	text-transform: uppercase;
}

.tss-guide-mini-pass strong {
	display: block;
	margin-top: 8px;
	font-size: 22px;
	font-weight: 950;
	line-height: 1.04;
	text-wrap: balance;
}

.tss-guide-mini-pass small {
	display: block;
	margin-top: 8px;
	color: var(--tss-ink-soft);
	font-size: 12px;
	font-weight: 800;
	line-height: 1;
}

@media (max-width: 1120px) {
	.tss-guide-routes__grid {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}

	.tss-guide-route {
		min-height: 154px;
	}
}

@media (max-width: 980px) {
	.tss-guide-hub__hero-grid,
	.tss-guide-post__hero-grid,
	.tss-guide-hub__layout,
	.tss-guide-post__layout {
		grid-template-columns: 1fr;
	}

	.tss-guide-hub__rail,
	.tss-guide-post__side {
		position: static;
	}

	.tss-guide-hub__rail {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.tss-guide-post__side {
		order: 1;
	}

	.tss-guide-article {
		order: 2;
	}

	.tss-guide-toc {
		display: block;
		overflow-x: auto;
		white-space: nowrap;
	}

	.tss-guide-toc > span,
	.tss-guide-toc__item {
		display: inline-flex;
		align-items: center;
		vertical-align: middle;
	}

	.tss-guide-toc > span {
		margin-right: 8px;
		margin-bottom: 0;
	}

	.tss-guide-toc__item,
	.tss-guide-toc__item--level-3 {
		border-left: 0;
		border-bottom: 3px solid transparent;
		margin-left: 0;
		padding: 8px 10px;
		white-space: nowrap;
	}

	.tss-guide-toc__item:hover,
	.tss-guide-toc__item:focus {
		border-color: var(--tss-yellow);
	}

	.tss-guide-related__grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (max-width: 760px) {
	.tss-guide-hub__inner,
	.tss-guide-post__inner {
		width: min(100% - 28px, 1160px);
	}

	.tss-guide-hub__hero,
	.tss-guide-post__hero {
		padding: 30px 0 28px;
	}

	.tss-guide-hub__hero::before,
	.tss-guide-post__hero::before {
		display: none;
	}

	.tss-guide-hub__intro h1,
	.tss-guide-post__title-block h1 {
		font-size: 40px;
		line-height: 1.05;
	}

	.tss-guide-hub__intro p,
	.tss-guide-post__title-block p,
	.tss-guide-answer p {
		font-size: 16px;
	}

	.tss-guide-search {
		grid-template-columns: 1fr;
	}

	.tss-guide-search button {
		width: 100%;
	}

	.tss-guide-routes__heading,
	.tss-guide-hub__posts-head,
	.tss-guide-related__head {
		display: grid;
		justify-content: stretch;
	}

	.tss-guide-routes__grid,
	.tss-guide-card-grid,
	.tss-guide-hub__rail,
	.tss-guide-related__grid {
		grid-template-columns: 1fr;
	}

	.tss-guide-pass a,
	.tss-guide-pass--featured a {
		grid-template-columns: 1fr;
		min-height: 0;
	}

	.tss-guide-pass__visual {
		min-height: 138px;
		border-right: 0;
		border-bottom: 2px solid var(--tss-black);
	}

	.tss-guide-pass--featured .tss-guide-pass__visual strong,
	.tss-guide-pass__visual strong {
		font-size: 30px;
	}

	.tss-guide-pass--featured .tss-guide-pass__body > strong,
	.tss-guide-pass__body > strong {
		font-size: 25px;
		line-height: 1.03;
	}

	.tss-guide-post__docket div {
		grid-template-columns: 1fr;
		gap: 3px;
	}

	.tss-guide-answer {
		padding: 21px 20px;
	}

	.tss-guide-answer::after {
		display: none;
	}

	.tss-guide-answer h2,
	.tss-guide-routes__heading h2,
	.tss-guide-hub__posts-head h2,
	.tss-guide-related__head h2,
	.tss-guide-handoff h2 {
		font-size: 28px;
		line-height: 1.02;
	}

	.tss-guide-article {
		padding: 26px 20px;
	}

	.tss-guide-article h2 {
		font-size: 30px;
		line-height: 1.05;
	}

	.tss-guide-article h3 {
		font-size: 22px;
	}

	.tss-guide-article p,
	.tss-guide-article li {
		font-size: 15.5px;
		line-height: 1.68;
	}

	.tss-guide-handoff {
		grid-template-columns: 1fr;
	}

	.tss-guide-handoff > a {
		width: 100%;
	}
}

@media (max-width: 430px) {
	.tss-guide-hub__inner,
	.tss-guide-post__inner {
		width: min(100% - 22px, 1160px);
	}

	.tss-guide-hub__intro h1,
	.tss-guide-post__title-block h1 {
		font-size: 34px;
	}

	.tss-guide-hub__desk-card,
	.tss-guide-post__docket,
	.tss-guide-rail-card,
	.tss-guide-side-card,
	.tss-guide-toc,
	.tss-guide-pass__body,
	.tss-guide-mini-pass a {
		padding: 16px;
	}

	.tss-guide-route {
		min-height: 142px;
	}

	.tss-guide-pass__meta span,
	.tss-guide-pass__meta time,
	.tss-guide-post__meta span,
	.tss-guide-post__meta time {
		max-width: 100%;
	}

	.tss-guide-article {
		padding: 22px 16px;
	}

	.tss-guide-article h2 {
		font-size: 27px;
	}
}

@media (prefers-reduced-motion: reduce) {
	.tss-guide-route,
	.tss-guide-pass a,
	.tss-guide-mini-pass a,
	.tss-guide-search button,
	.tss-guide-handoff > a,
	.tss-guide-empty a {
		transition: none;
	}
}
