/*
 * TechKatta — visual system
 * -------------------------------------------------------------
 * Devanagari-first. The structural motif is the शिरोरेषा: the line
 * every Marathi word hangs from. Section heads, cards and the brand
 * mark all hang from that same 2px rule, in ink — never decoration.
 * Marigold is the only accent, spent on scores, active states and
 * hover. Article prose is set in a serif so opening a story feels
 * like sitting down to read, not scrolling a feed.
 */

/* ============================================================
   1. Tokens
   ============================================================ */
:root {
	color-scheme: light;

	/* Ink — deep wada green, not corporate navy */
	--tk-ink: #0f2a22;
	--tk-ink-2: #1d4438;
	--tk-ink-3: #2e5a4b;

	/* Interactive */
	--tk-teal: #0c6a5a;
	--tk-teal-dark: #075144;
	--tk-teal-soft: #e3f0ec;

	/* Signature accent */
	--tk-gold: #e39b1f;
	--tk-gold-dark: #b97a10;
	--tk-gold-soft: #fbefd8;

	/* Hot / warnings */
	--tk-clay: #be5030;
	--tk-clay-soft: #fbeae4;

	/* Surfaces */
	--tk-paper: #f4f6f3;
	--tk-surface: #ffffff;
	--tk-surface-2: #fafbf9;
	--tk-line: #e1e6df;
	--tk-line-strong: #ccd4ca;

	/* Text */
	--tk-text: #39463f;
	--tk-muted: #6b7a72;
	--tk-faint: #93a09a;

	/* Shape */
	--tk-r-sm: 8px;
	--tk-r: 14px;
	--tk-r-lg: 20px;
	--tk-shadow-sm: 0 1px 2px rgba(15, 42, 34, .06);
	--tk-shadow: 0 10px 30px -12px rgba(15, 42, 34, .18);
	--tk-shadow-lg: 0 24px 60px -20px rgba(15, 42, 34, .28);

	/* Metrics */
	--tk-container: 1200px;
	--tk-read: 720px;
	--tk-logo-max: 210px;
	--tk-footer-logo-max: 190px;
	--tk-header-h: 68px;

	/* Type */
	--tk-ui: "Anek Devanagari", system-ui, -apple-system, "Segoe UI", sans-serif;
	--tk-serif: "Noto Serif Devanagari", "Iowan Old Style", Georgia, serif;

	--tk-t: 170ms cubic-bezier(.4, 0, .2, 1);
}

/* ============================================================
   2. Base
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; }

html {
	scroll-behavior: smooth;
	scroll-padding-top: calc(var(--tk-header-h) + 24px);
	-webkit-text-size-adjust: 100%;
}

body {
	margin: 0;
	background: var(--tk-paper);
	color: var(--tk-text);
	font-family: var(--tk-ui);
	font-size: 17px;
	font-weight: 400;
	line-height: 1.65;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}
body.tk-no-scroll { overflow: hidden; }

img, svg, video, iframe { max-width: 100%; }
img { height: auto; display: block; }
figure { margin: 0; }
button, input, textarea, select { font: inherit; color: inherit; }
button { cursor: pointer; background: none; border: 0; padding: 0; }
[hidden] { display: none !important; }
::selection { background: var(--tk-gold-soft); color: var(--tk-ink); }

a { color: var(--tk-teal); text-decoration-thickness: 1px; text-underline-offset: 3px; }
a:hover { color: var(--tk-teal-dark); }

h1, h2, h3, h4, h5, h6 {
	margin: 0 0 .55em;
	color: var(--tk-ink);
	font-family: var(--tk-ui);
	font-weight: 700;
	line-height: 1.22;
	letter-spacing: -.005em;
}
p { margin: 0 0 1em; }
p:last-child { margin-bottom: 0; }

:focus-visible {
	outline: 3px solid var(--tk-gold);
	outline-offset: 2px;
	border-radius: 3px;
}

.tk-container {
	width: min(calc(100% - 36px), var(--tk-container));
	margin-inline: auto;
}
.tk-site-main { min-height: 50vh; }
.tk-icon { display: inline-flex; flex: 0 0 auto; vertical-align: middle; }
.tk-icon svg { display: block; }

.screen-reader-text,
.tk-skip:not(:focus) {
	position: absolute !important;
	width: 1px !important;
	height: 1px !important;
	padding: 0 !important;
	margin: -1px !important;
	overflow: hidden !important;
	clip: rect(0, 0, 0, 0) !important;
	white-space: nowrap !important;
	border: 0 !important;
}
.tk-skip:focus {
	position: fixed;
	inset: 12px auto auto 12px;
	z-index: 999;
	padding: 10px 18px;
	background: var(--tk-ink);
	color: #fff;
	border-radius: var(--tk-r-sm);
	font-weight: 600;
}

/* ============================================================
   3. Shirorekha — the signature device
   ============================================================ */
.tk-head {
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
	gap: 24px;
	margin: 0 0 26px;
	padding-top: 14px;
	border-top: 2px solid var(--tk-ink);
}
.tk-head-copy { min-width: 0; }
.tk-eyebrow {
	display: flex;
	align-items: center;
	gap: 7px;
	margin: 0 0 4px;
	color: var(--tk-teal);
	font-size: 13px;
	font-weight: 700;
	letter-spacing: .04em;
	line-height: 1.4;
}
.tk-eyebrow::before {
	content: "";
	width: 14px;
	height: 2px;
	background: var(--tk-gold);
	flex: 0 0 auto;
}
.tk-head h2,
.tk-head-title {
	margin: 0;
	font-size: clamp(23px, 2.5vw, 31px);
	font-weight: 700;
	letter-spacing: -.015em;
}
.tk-more {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	flex: 0 0 auto;
	padding-bottom: 4px;
	color: var(--tk-ink);
	font-size: 15px;
	font-weight: 600;
	text-decoration: none;
	border-bottom: 2px solid transparent;
	transition: border-color var(--tk-t), color var(--tk-t);
}
.tk-more:hover { color: var(--tk-teal); border-bottom-color: var(--tk-gold); }
.tk-more .tk-icon { transition: transform var(--tk-t); }
.tk-more:hover .tk-icon { transform: translateX(3px); }

/* On dark bands the rule and text invert */
.tk-dark .tk-head { border-top-color: rgba(255, 255, 255, .35); }
.tk-dark .tk-head h2 { color: #fff; }
.tk-dark .tk-eyebrow { color: var(--tk-gold); }
.tk-dark .tk-more { color: #fff; }
.tk-dark .tk-more:hover { color: var(--tk-gold); }

/* ============================================================
   4. Top bar
   ============================================================ */
.tk-topbar {
	background: var(--tk-ink);
	color: rgba(255, 255, 255, .82);
	font-size: 13.5px;
}
.tk-topbar-inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	min-height: 38px;
	padding-block: 6px;
}
.tk-topbar-text {
	display: flex;
	align-items: center;
	gap: 8px;
	min-width: 0;
	overflow: hidden;
	white-space: nowrap;
	text-overflow: ellipsis;
}
.tk-topbar-text .tk-icon { color: var(--tk-gold); }
.tk-topbar-menu { flex: 0 0 auto; margin-left: auto; }
.tk-topbar-list {
	display: flex;
	align-items: center;
	gap: 18px;
	margin: 0;
	padding: 0;
	list-style: none;
}
.tk-topbar-list a {
	color: rgba(255, 255, 255, .78);
	text-decoration: none;
	white-space: nowrap;
	transition: color var(--tk-t);
}
.tk-topbar-list a:hover { color: var(--tk-gold); }
.tk-social {
	display: flex;
	align-items: center;
	gap: 4px;
	flex: 0 0 auto;
}
.tk-social a {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 30px;
	height: 30px;
	border-radius: 999px;
	color: rgba(255, 255, 255, .78);
	transition: background var(--tk-t), color var(--tk-t);
}
.tk-social a:hover { background: rgba(255, 255, 255, .12); color: #fff; }

/* ============================================================
   5. Header
   ============================================================ */
.tk-header {
	position: sticky;
	top: 0;
	z-index: 60;
	background: var(--tk-surface);
	border-bottom: 1px solid var(--tk-line);
	transition: box-shadow var(--tk-t);
}
.tk-header.is-stuck { box-shadow: 0 6px 24px -14px rgba(15, 42, 34, .35); }

.tk-header-inner {
	display: flex;
	align-items: center;
	gap: 20px;
	min-height: var(--tk-header-h);
}

.tk-brand {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	flex: 0 0 auto;
	margin-right: auto;
	color: var(--tk-ink);
	text-decoration: none;
}
.tk-brand-mark {
	display: grid;
	place-items: center;
	width: 38px;
	height: 38px;
	border-radius: 10px;
	background: var(--tk-ink);
	color: #fff;
	font-size: 17px;
	font-weight: 600;
	line-height: 1;
	/* the mark hangs from its own shirorekha */
	box-shadow: inset 0 3px 0 var(--tk-gold);
	padding-top: 3px;
}
.tk-brand-text { display: grid; line-height: 1.15; }
.tk-brand-text strong {
	font-size: 20px;
	font-weight: 700;
	letter-spacing: -.02em;
}
.tk-brand-text small {
	color: var(--tk-muted);
	font-size: 12px;
	font-weight: 500;
}
.tk-brand-logo img { max-width: var(--tk-logo-max); height: auto; }

.tk-nav { display: flex; align-items: center; gap: 22px; }

.tk-menu {
	display: flex;
	align-items: center;
	gap: 2px;
	margin: 0;
	padding: 0;
	list-style: none;
}
.tk-menu li { position: relative; }
.tk-menu > li > a {
	display: block;
	padding: 8px 11px;
	border-radius: var(--tk-r-sm);
	color: var(--tk-ink);
	font-size: 15.5px;
	font-weight: 600;
	text-decoration: none;
	white-space: nowrap;
	transition: background var(--tk-t), color var(--tk-t);
}
.tk-menu > li > a:hover { background: var(--tk-teal-soft); color: var(--tk-teal-dark); }
.tk-menu > li.current-menu-item > a,
.tk-menu > li.current-menu-parent > a,
.tk-menu > li.current-menu-ancestor > a { color: var(--tk-teal-dark); }
.tk-menu > li.current-menu-item > a::after,
.tk-menu > li.current-menu-parent > a::after,
.tk-menu > li.current-menu-ancestor > a::after {
	content: "";
	display: block;
	height: 2px;
	margin-top: 5px;
	background: var(--tk-gold);
}

/* Dropdown */
.tk-menu .sub-menu {
	position: absolute;
	top: calc(100% + 8px);
	left: 0;
	z-index: 5;
	min-width: 230px;
	margin: 0;
	padding: 8px;
	list-style: none;
	background: var(--tk-surface);
	border: 1px solid var(--tk-line);
	border-top: 2px solid var(--tk-ink);
	border-radius: var(--tk-r);
	box-shadow: var(--tk-shadow);
	opacity: 0;
	visibility: hidden;
	transform: translateY(-6px);
	transition: opacity var(--tk-t), transform var(--tk-t), visibility var(--tk-t);
}
.tk-menu li:hover > .sub-menu,
.tk-menu li:focus-within > .sub-menu {
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
}
.tk-menu .sub-menu a {
	display: block;
	padding: 8px 10px;
	border-radius: var(--tk-r-sm);
	color: var(--tk-text);
	font-size: 15px;
	font-weight: 500;
	text-decoration: none;
	transition: background var(--tk-t), color var(--tk-t);
}
.tk-menu .sub-menu a:hover { background: var(--tk-surface-2); color: var(--tk-teal-dark); }
.tk-menu .menu-item-has-children > a { display: flex; align-items: center; gap: 4px; }
.tk-menu .menu-item-has-children > a::before {
	content: "";
	order: 2;
	width: 6px;
	height: 6px;
	border-right: 1.8px solid currentColor;
	border-bottom: 1.8px solid currentColor;
	transform: translateY(-2px) rotate(45deg);
	opacity: .5;
}

.tk-nav-tools { display: flex; align-items: center; gap: 8px; }
.tk-icon-btn {
	display: inline-grid;
	place-items: center;
	width: 38px;
	height: 38px;
	border-radius: var(--tk-r-sm);
	border: 1px solid var(--tk-line);
	color: var(--tk-ink);
	background: var(--tk-surface);
	transition: border-color var(--tk-t), background var(--tk-t);
}
.tk-icon-btn:hover { border-color: var(--tk-ink); background: var(--tk-surface-2); }

.tk-nav-cta {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	padding: 9px 15px;
	border-radius: var(--tk-r-sm);
	background: var(--tk-ink);
	color: #fff;
	font-size: 15px;
	font-weight: 600;
	text-decoration: none;
	white-space: nowrap;
	transition: background var(--tk-t);
}
.tk-nav-cta:hover { background: var(--tk-teal-dark); color: #fff; }

.tk-menu-toggle {
	display: none;
	align-items: center;
	gap: 7px;
	padding: 8px 13px;
	border: 1px solid var(--tk-line);
	border-radius: var(--tk-r-sm);
	color: var(--tk-ink);
	font-size: 15px;
	font-weight: 600;
}

/* Header search drawer */
.tk-header-search {
	border-top: 1px solid var(--tk-line);
	background: var(--tk-surface);
	padding-block: 14px;
}
.tk-header-search .tk-container {
	display: flex;
	align-items: center;
	gap: 12px;
}
.tk-header-search .tk-search-form { flex: 1; }

.tk-search-form { display: flex; gap: 8px; }
.tk-search-form label {
	display: flex;
	align-items: center;
	gap: 9px;
	flex: 1;
	min-width: 0;
	padding: 0 14px;
	background: var(--tk-surface);
	border: 1px solid var(--tk-line-strong);
	border-radius: var(--tk-r-sm);
	color: var(--tk-muted);
	transition: border-color var(--tk-t);
}
.tk-search-form label:focus-within { border-color: var(--tk-ink); }
.tk-search-field {
	flex: 1;
	min-width: 0;
	padding: 11px 0;
	border: 0;
	background: none;
	color: var(--tk-ink);
	outline: none;
}
.tk-search-submit {
	padding: 11px 20px;
	border-radius: var(--tk-r-sm);
	background: var(--tk-ink);
	color: #fff;
	font-weight: 600;
	transition: background var(--tk-t);
}
.tk-search-submit:hover { background: var(--tk-teal-dark); }

/* ============================================================
   6. Sections
   ============================================================ */
.tk-section { padding-block: clamp(38px, 5vw, 62px); }
.tk-section + .tk-section { padding-top: 0; }
.tk-section.tk-dark + .tk-section,
.tk-section + .tk-section.tk-dark { padding-top: clamp(38px, 5vw, 62px); }
.tk-dark { background: var(--tk-ink); color: rgba(255, 255, 255, .8); }

.tk-empty {
	padding: 46px 26px;
	text-align: center;
	background: var(--tk-surface);
	border: 1px dashed var(--tk-line-strong);
	border-radius: var(--tk-r);
}
.tk-empty h2 { font-size: 21px; }
.tk-empty p { margin: 0; color: var(--tk-muted); }

/* ============================================================
   7. Lead block (home hero)
   ============================================================ */
.tk-lead { padding-block: clamp(28px, 4vw, 44px) 0; }
.tk-lead-grid {
	display: grid;
	grid-template-columns: minmax(0, 1.55fr) minmax(0, 1fr);
	gap: 34px;
	align-items: start;
}

.tk-lead-main {
	display: grid;
	gap: 20px;
	background: var(--tk-surface);
	border: 1px solid var(--tk-line);
	border-radius: var(--tk-r-lg);
	overflow: hidden;
	box-shadow: var(--tk-shadow-sm);
}
.tk-lead-media {
	display: block;
	aspect-ratio: 16 / 9;
	background: var(--tk-surface-2);
	overflow: hidden;
}
.tk-lead-media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 500ms cubic-bezier(.4, 0, .2, 1);
}
.tk-lead-main:hover .tk-lead-media img { transform: scale(1.03); }
.tk-lead-body { padding: 0 26px 26px; }
.tk-lead-title {
	margin: 10px 0 12px;
	font-size: clamp(25px, 3vw, 36px);
	font-weight: 700;
	letter-spacing: -.02em;
	line-height: 1.18;
}
.tk-lead-title a { color: inherit; text-decoration: none; }
.tk-lead-title a:hover { color: var(--tk-teal-dark); }
.tk-lead-deck {
	margin: 0 0 16px;
	color: var(--tk-muted);
	font-size: 17px;
	line-height: 1.6;
}

.tk-kicker {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	padding: 4px 10px 4px 0;
	color: var(--tk-teal);
	font-size: 13px;
	font-weight: 700;
	letter-spacing: .03em;
	text-decoration: none;
	border-top: 2px solid var(--tk-gold);
}
.tk-kicker:hover { color: var(--tk-ink); }

.tk-meta {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 6px 14px;
	color: var(--tk-muted);
	font-size: 14px;
}
.tk-meta > span { display: inline-flex; align-items: center; gap: 5px; }
.tk-meta .tk-icon { color: var(--tk-faint); }
.tk-meta strong { color: var(--tk-text); font-weight: 600; }

/* Rail of recent stories beside the lead */
.tk-rail {
	display: grid;
	background: var(--tk-surface);
	border: 1px solid var(--tk-line);
	border-top: 2px solid var(--tk-ink);
	border-radius: 0 0 var(--tk-r) var(--tk-r);
	padding: 4px 18px 8px;
}
.tk-rail-head {
	display: flex;
	align-items: baseline;
	justify-content: space-between;
	gap: 12px;
	padding: 12px 0 6px;
}
.tk-rail-head p {
	margin: 0;
	color: var(--tk-teal);
	font-size: 13px;
	font-weight: 700;
	letter-spacing: .04em;
}
.tk-rail-head a {
	font-size: 13.5px;
	font-weight: 600;
	color: var(--tk-muted);
	text-decoration: none;
}
.tk-rail-head a:hover { color: var(--tk-teal); }

.tk-rail-item {
	display: grid;
	grid-template-columns: 72px minmax(0, 1fr);
	gap: 14px;
	align-items: center;
	padding: 14px 0;
	border-top: 1px solid var(--tk-line);
	text-decoration: none;
	color: inherit;
}
.tk-rail-item:first-of-type { border-top: 0; }
.tk-rail-media {
	aspect-ratio: 1 / 1;
	border-radius: 10px;
	overflow: hidden;
	background: var(--tk-surface-2);
	display: grid;
	place-items: center;
	color: var(--tk-faint);
}
.tk-rail-media img { width: 100%; height: 100%; object-fit: cover; }
.tk-rail-body { min-width: 0; }
.tk-rail-body small {
	display: block;
	margin-bottom: 2px;
	color: var(--tk-teal);
	font-size: 12.5px;
	font-weight: 700;
}
.tk-rail-body strong {
	display: block;
	color: var(--tk-ink);
	font-size: 16px;
	font-weight: 600;
	line-height: 1.35;
	transition: color var(--tk-t);
}
.tk-rail-item:hover .tk-rail-body strong { color: var(--tk-teal-dark); }
.tk-rail-body span {
	display: block;
	margin-top: 3px;
	color: var(--tk-faint);
	font-size: 13px;
}

/* ============================================================
   8. Article cards
   ============================================================ */
.tk-grid { display: grid; gap: 22px; }
.tk-grid-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.tk-grid-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.tk-grid-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }

.tk-card {
	position: relative;
	display: flex;
	flex-direction: column;
	background: var(--tk-surface);
	border: 1px solid var(--tk-line);
	border-radius: var(--tk-r);
	overflow: hidden;
	transition: transform var(--tk-t), box-shadow var(--tk-t), border-color var(--tk-t);
}
/* the shirorekha slides in on hover */
.tk-card::before {
	content: "";
	position: absolute;
	inset: 0 auto auto 0;
	z-index: 2;
	height: 3px;
	width: 0;
	background: var(--tk-gold);
	transition: width 260ms cubic-bezier(.4, 0, .2, 1);
}
.tk-card:hover {
	transform: translateY(-3px);
	border-color: var(--tk-line-strong);
	box-shadow: var(--tk-shadow);
}
.tk-card:hover::before { width: 100%; }
.tk-card:focus-within::before { width: 100%; }

.tk-card-media {
	position: relative;
	display: block;
	aspect-ratio: 16 / 10;
	background: var(--tk-surface-2);
	overflow: hidden;
}
.tk-card-media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 450ms cubic-bezier(.4, 0, .2, 1);
}
.tk-card:hover .tk-card-media img { transform: scale(1.04); }
.tk-card-fallback {
	position: absolute;
	inset: 0;
	display: grid;
	place-items: center;
	color: rgba(255, 255, 255, .9);
	background: linear-gradient(140deg, var(--tk-ink) 0%, var(--tk-ink-3) 100%);
}
.tk-card-tag {
	position: absolute;
	left: 10px;
	bottom: 10px;
	z-index: 2;
	padding: 4px 10px;
	border-radius: 999px;
	background: rgba(255, 255, 255, .94);
	color: var(--tk-ink);
	font-size: 12.5px;
	font-weight: 700;
	backdrop-filter: blur(4px);
}
.tk-card-score {
	position: absolute;
	right: 10px;
	top: 10px;
	z-index: 2;
	display: inline-flex;
	align-items: center;
	gap: 3px;
	padding: 4px 9px;
	border-radius: 999px;
	background: var(--tk-gold);
	color: var(--tk-ink);
	font-size: 13px;
	font-weight: 700;
}

.tk-card-body {
	display: flex;
	flex-direction: column;
	flex: 1;
	gap: 8px;
	padding: 16px 18px 18px;
}
.tk-card-title {
	margin: 0;
	font-size: 19px;
	font-weight: 600;
	line-height: 1.34;
	letter-spacing: -.008em;
}
.tk-card-title a {
	color: inherit;
	text-decoration: none;
}
/* whole card clickable, keyboard-safe */
.tk-card-title a::after {
	content: "";
	position: absolute;
	inset: 0;
	z-index: 1;
}
.tk-card:hover .tk-card-title a { color: var(--tk-teal-dark); }
.tk-card-excerpt {
	margin: 0;
	color: var(--tk-muted);
	font-size: 15px;
	line-height: 1.6;
}
.tk-card-foot {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 10px;
	margin-top: auto;
	padding-top: 12px;
	border-top: 1px solid var(--tk-line);
	color: var(--tk-faint);
	font-size: 13.5px;
}
.tk-card-foot span { display: inline-flex; align-items: center; gap: 5px; }
.tk-card-action { color: var(--tk-teal); font-weight: 600; }
.tk-card-action .tk-icon { transition: transform var(--tk-t); }
.tk-card:hover .tk-card-action .tk-icon { transform: translateX(3px); }

/* Cards on the dark band */
.tk-dark .tk-card {
	background: var(--tk-ink-2);
	border-color: rgba(255, 255, 255, .12);
}
.tk-dark .tk-card:hover { border-color: rgba(255, 255, 255, .3); box-shadow: none; }
.tk-dark .tk-card-title { color: #fff; }
.tk-dark .tk-card:hover .tk-card-title a { color: var(--tk-gold); }
.tk-dark .tk-card-excerpt { color: rgba(255, 255, 255, .62); }
.tk-dark .tk-card-foot {
	border-top-color: rgba(255, 255, 255, .12);
	color: rgba(255, 255, 255, .5);
}
.tk-dark .tk-card-action { color: var(--tk-gold); }
.tk-dark .tk-card-media { background: var(--tk-ink-3); }

/* Wide card: section lead on archives */
.tk-card-wide {
	grid-column: 1 / -1;
	flex-direction: row;
	align-items: stretch;
}
.tk-card-wide .tk-card-media {
	flex: 0 0 46%;
	aspect-ratio: auto;
}
.tk-card-wide .tk-card-body {
	justify-content: center;
	padding: 26px 28px;
	gap: 10px;
}
.tk-card-wide .tk-card-title { font-size: clamp(21px, 2.2vw, 27px); }
.tk-card-wide .tk-card-excerpt { font-size: 16px; }

/* ============================================================
   9. Topic tiles
   ============================================================ */
.tk-topic-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 20px;
}

/* A section index card. The name is the loudest thing on it; colour is a
   1px accent for wayfinding, not a poster treatment. */
.tk-topic {
	--tk-tile: 12, 106, 90;
	display: flex;
	flex-direction: column;
	padding: 20px 22px 18px;
	background: var(--tk-surface);
	border: 1px solid var(--tk-line);
	border-top: 2px solid var(--tk-ink);   /* shirorekha */
	border-radius: 0 0 var(--tk-r) var(--tk-r);
	transition: border-top-color var(--tk-t), box-shadow var(--tk-t), transform var(--tk-t);
}
.tk-topic:hover {
	border-top-color: rgb(var(--tk-tile));
	box-shadow: var(--tk-shadow);
	transform: translateY(-2px);
}

.tk-topic-mobile         { --tk-tile: 12, 106, 90; }
.tk-topic-laptop-pc      { --tk-tile: 30, 90, 116; }
.tk-topic-tips-tricks    { --tk-tile: 176, 118, 20; }
.tk-topic-gadgets        { --tk-tile: 104, 70, 128; }
.tk-topic-apps-internet  { --tk-tile: 178, 76, 45; }
.tk-topic-tech-news      { --tk-tile: 15, 42, 34; }

.tk-topic-top {
	display: flex;
	align-items: center;
	gap: 11px;
	margin-bottom: 10px;
}
.tk-topic-icon {
	display: grid;
	place-items: center;
	flex: 0 0 auto;
	width: 38px;
	height: 38px;
	border-radius: 9px;
	background: rgba(var(--tk-tile), .09);
	color: rgb(var(--tk-tile));
}
.tk-topic-name {
	margin: 0;
	font-size: 21px;
	font-weight: 700;
	line-height: 1.25;
}
.tk-topic-name a { color: var(--tk-ink); text-decoration: none; }
.tk-topic:hover .tk-topic-name a { color: rgb(var(--tk-tile)); }

.tk-topic-desc {
	margin: 0 0 14px;
	color: var(--tk-muted);
	font-size: 14.5px;
	line-height: 1.6;
}

.tk-topic-subs {
	display: flex;
	flex-wrap: wrap;
	gap: 6px;
	margin: 0 0 16px;
	padding: 0;
	list-style: none;
}
.tk-topic-subs a {
	display: inline-block;
	padding: 4px 10px;
	background: var(--tk-surface-2);
	border: 1px solid var(--tk-line);
	border-radius: 999px;
	color: var(--tk-text);
	font-size: 13px;
	text-decoration: none;
	transition: background var(--tk-t), border-color var(--tk-t), color var(--tk-t);
}
.tk-topic-subs a:hover {
	background: rgba(var(--tk-tile), .08);
	border-color: rgba(var(--tk-tile), .35);
	color: rgb(var(--tk-tile));
}

.tk-topic-go {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	margin-top: auto;
	padding-top: 12px;
	border-top: 1px solid var(--tk-line);
	color: rgb(var(--tk-tile));
	font-size: 14px;
	font-weight: 600;
	text-decoration: none;
}
.tk-topic-go .tk-icon { transition: transform var(--tk-t); }
.tk-topic:hover .tk-topic-go .tk-icon { transform: translateX(3px); }

/* ============================================================
   10. Split section (buying guides)
   ============================================================ */
.tk-split {
	display: grid;
	grid-template-columns: minmax(0, .8fr) minmax(0, 1.6fr);
	gap: 40px;
	align-items: start;
}
.tk-split-copy { position: sticky; top: calc(var(--tk-header-h) + 24px); }
.tk-split-copy h2 {
	margin: 0 0 10px;
	font-size: clamp(24px, 2.6vw, 32px);
	letter-spacing: -.02em;
}
.tk-split-copy > p {
	color: var(--tk-muted);
	font-size: 16px;
}
.tk-inline-links { display: grid; gap: 8px; margin-top: 18px; }
.tk-inline-links a {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 10px;
	padding: 12px 14px;
	background: var(--tk-surface);
	border: 1px solid var(--tk-line);
	border-radius: var(--tk-r-sm);
	color: var(--tk-ink);
	font-size: 15px;
	font-weight: 600;
	text-decoration: none;
	transition: border-color var(--tk-t), transform var(--tk-t);
}
.tk-inline-links a:hover {
	border-color: var(--tk-ink);
	transform: translateX(3px);
	color: var(--tk-teal-dark);
}

/* ============================================================
   11. Duo panels (gadgets / apps)
   ============================================================ */
.tk-duo {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 22px;
}
.tk-panel {
	padding: 22px 24px 12px;
	background: var(--tk-surface);
	border: 1px solid var(--tk-line);
	border-top: 2px solid var(--tk-ink);
	border-radius: 0 0 var(--tk-r) var(--tk-r);
}
.tk-panel-head {
	display: flex;
	align-items: center;
	gap: 14px;
	padding-bottom: 14px;
}
.tk-panel-head > span {
	display: grid;
	place-items: center;
	width: 44px;
	height: 44px;
	flex: 0 0 auto;
	border-radius: 12px;
	background: var(--tk-teal-soft);
	color: var(--tk-teal-dark);
}
.tk-panel-head div { flex: 1; min-width: 0; }
.tk-panel-head p {
	margin: 0;
	color: var(--tk-teal);
	font-size: 12.5px;
	font-weight: 700;
	letter-spacing: .04em;
}
.tk-panel-head h2 { margin: 0; font-size: 20px; }
.tk-panel-head > a {
	display: grid;
	place-items: center;
	width: 34px;
	height: 34px;
	flex: 0 0 auto;
	border-radius: 999px;
	border: 1px solid var(--tk-line);
	color: var(--tk-ink);
	transition: background var(--tk-t), border-color var(--tk-t);
}
.tk-panel-head > a:hover { background: var(--tk-ink); border-color: var(--tk-ink); color: #fff; }

.tk-list a {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	padding: 14px 0;
	border-top: 1px solid var(--tk-line);
	color: var(--tk-ink);
	text-decoration: none;
	transition: padding-left var(--tk-t), color var(--tk-t);
}
.tk-list a:hover { padding-left: 6px; color: var(--tk-teal-dark); }
.tk-list strong { font-size: 16px; font-weight: 600; line-height: 1.4; }
.tk-list .tk-icon { color: var(--tk-faint); }
.tk-list a:hover .tk-icon { color: var(--tk-gold); }

/* ============================================================
   12. News list
   ============================================================ */
.tk-news { display: grid; gap: 0; }
.tk-news-item {
	display: grid;
	grid-template-columns: minmax(0, 1fr) auto;
	align-items: center;
	gap: 18px;
	padding: 18px 4px;
	border-top: 1px solid var(--tk-line);
	color: inherit;
	text-decoration: none;
	transition: padding-left var(--tk-t);
}
.tk-news-item:last-child { border-bottom: 1px solid var(--tk-line); }
.tk-news-item:hover { padding-left: 10px; }
.tk-news-copy { min-width: 0; }
.tk-news-copy small {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	margin-bottom: 3px;
	color: var(--tk-clay);
	font-size: 12.5px;
	font-weight: 700;
	letter-spacing: .03em;
}
.tk-news-copy small::after {
	content: "";
	width: 3px;
	height: 3px;
	border-radius: 999px;
	background: var(--tk-faint);
}
.tk-news-copy small time { color: var(--tk-faint); font-weight: 500; }
.tk-news-copy strong {
	display: block;
	color: var(--tk-ink);
	font-size: 18px;
	font-weight: 600;
	line-height: 1.4;
	transition: color var(--tk-t);
}
.tk-news-item:hover .tk-news-copy strong { color: var(--tk-teal-dark); }
.tk-news-item .tk-icon { color: var(--tk-faint); transition: transform var(--tk-t), color var(--tk-t); }
.tk-news-item:hover .tk-icon { transform: translateX(4px); color: var(--tk-gold); }

/* ============================================================
   13. Page + archive heads
   ============================================================ */
.tk-page-head {
	padding-block: 26px 30px;
	background: var(--tk-surface);
	border-bottom: 1px solid var(--tk-line);
}
.tk-page-head-inner {
	display: flex;
	align-items: flex-start;
	gap: 20px;
	padding-top: 16px;
	border-top: 2px solid var(--tk-ink);
}
.tk-page-head-icon {
	display: grid;
	place-items: center;
	width: 58px;
	height: 58px;
	flex: 0 0 auto;
	border-radius: var(--tk-r);
	background: var(--tk-ink);
	color: var(--tk-gold);
}
.tk-page-head-copy { flex: 1; min-width: 0; }
.tk-page-title {
	margin: 2px 0 8px;
	font-size: clamp(27px, 3.4vw, 40px);
	font-weight: 700;
	letter-spacing: -.025em;
}
.tk-page-desc {
	max-width: 64ch;
	margin: 0;
	color: var(--tk-muted);
	font-size: 16.5px;
	line-height: 1.6;
}
.tk-page-desc p:last-child { margin-bottom: 0; }
.tk-count {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	margin-top: 12px;
	padding: 4px 11px;
	border-radius: 999px;
	background: var(--tk-teal-soft);
	color: var(--tk-teal-dark);
	font-size: 13.5px;
	font-weight: 700;
}

.tk-breadcrumb {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 7px;
	color: var(--tk-muted);
	font-size: 13.5px;
}
.tk-breadcrumb a { color: var(--tk-muted); text-decoration: none; }
.tk-breadcrumb a:hover { color: var(--tk-teal); text-decoration: underline; }
.tk-breadcrumb-sep { color: var(--tk-faint); }
.tk-breadcrumb-current { color: var(--tk-ink); font-weight: 600; }

/* Sub-topic chips */
.tk-chips {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	margin-top: 20px;
}
.tk-chip {
	display: inline-flex;
	align-items: center;
	gap: 7px;
	padding: 8px 13px;
	background: var(--tk-surface);
	border: 1px solid var(--tk-line-strong);
	border-radius: 999px;
	color: var(--tk-ink);
	font-size: 14.5px;
	font-weight: 600;
	text-decoration: none;
	transition: border-color var(--tk-t), background var(--tk-t), color var(--tk-t);
}
.tk-chip .tk-icon { color: var(--tk-teal); }
.tk-chip small { color: var(--tk-faint); font-weight: 500; }
.tk-chip:hover {
	background: var(--tk-ink);
	border-color: var(--tk-ink);
	color: #fff;
}
.tk-chip:hover .tk-icon { color: var(--tk-gold); }
.tk-chip:hover small { color: rgba(255, 255, 255, .6); }

.tk-archive { padding-block: clamp(32px, 4.5vw, 52px); }
.tk-filter {
	display: flex;
	align-items: center;
	gap: 9px;
	flex: 0 0 auto;
	padding: 0 14px;
	background: var(--tk-surface);
	border: 1px solid var(--tk-line-strong);
	border-radius: var(--tk-r-sm);
	color: var(--tk-muted);
	transition: border-color var(--tk-t);
}
.tk-filter:focus-within { border-color: var(--tk-ink); }
.tk-filter input {
	width: 190px;
	padding: 9px 0;
	border: 0;
	background: none;
	color: var(--tk-ink);
	outline: none;
}
.tk-result-count {
	margin: 0 0 20px;
	color: var(--tk-muted);
	font-size: 15px;
}

/* Pagination */
.navigation.pagination { margin-top: 34px; }
.navigation.pagination .nav-links {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 6px;
}
.page-numbers {
	display: inline-grid;
	place-items: center;
	min-width: 40px;
	height: 40px;
	padding: 0 12px;
	background: var(--tk-surface);
	border: 1px solid var(--tk-line);
	border-radius: var(--tk-r-sm);
	color: var(--tk-ink);
	font-weight: 600;
	text-decoration: none;
	transition: border-color var(--tk-t), background var(--tk-t);
}
.page-numbers:hover { border-color: var(--tk-ink); }
.page-numbers.current {
	background: var(--tk-ink);
	border-color: var(--tk-ink);
	color: #fff;
}
.page-numbers.dots { border-color: transparent; background: none; }

/* ============================================================
   14. Single article
   ============================================================ */
.tk-progress {
	position: fixed;
	top: 0;
	left: 0;
	z-index: 80;
	width: 100%;
	height: 3px;
	background: var(--tk-gold);
	transform: scaleX(0);
	transform-origin: 0 50%;
}

.tk-article-head {
	padding-block: 26px 30px;
	background: var(--tk-surface);
	border-bottom: 1px solid var(--tk-line);
}
.tk-article-head-inner {
	max-width: 880px;
	padding-top: 18px;
	border-top: 2px solid var(--tk-ink);
	margin-top: 16px;
}
.tk-article-title {
	margin: 10px 0 14px;
	font-size: clamp(28px, 4vw, 45px);
	font-weight: 700;
	letter-spacing: -.028em;
	line-height: 1.15;
}
.tk-article-deck {
	max-width: 62ch;
	margin: 0 0 20px;
	color: var(--tk-muted);
	font-family: var(--tk-serif);
	font-size: 19px;
	line-height: 1.62;
}

.tk-article-meta {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 12px 18px;
	padding-top: 16px;
	border-top: 1px solid var(--tk-line);
}
.tk-byline {
	display: flex;
	align-items: center;
	gap: 10px;
}
.tk-byline img {
	width: 40px;
	height: 40px;
	border-radius: 999px;
	flex: 0 0 auto;
}
.tk-byline-copy { display: grid; line-height: 1.35; }
.tk-byline-copy strong { color: var(--tk-ink); font-size: 15px; font-weight: 600; }
.tk-byline-copy span { color: var(--tk-muted); font-size: 13.5px; }
.tk-dot { color: var(--tk-faint); }

.tk-tools { display: flex; gap: 8px; margin-left: auto; }
.tk-tool {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	padding: 8px 13px;
	border: 1px solid var(--tk-line-strong);
	border-radius: var(--tk-r-sm);
	color: var(--tk-ink);
	font-size: 14px;
	font-weight: 600;
	transition: border-color var(--tk-t), background var(--tk-t), color var(--tk-t);
}
.tk-tool:hover { border-color: var(--tk-ink); background: var(--tk-ink); color: #fff; }
.tk-tool .tk-icon { color: currentColor; }

.tk-featured {
	margin-top: -1px;
	padding-top: 30px;
}
.tk-featured figure {
	border-radius: var(--tk-r-lg);
	overflow: hidden;
	background: var(--tk-surface-2);
	border: 1px solid var(--tk-line);
}
.tk-featured img { width: 100%; aspect-ratio: 16 / 9; object-fit: cover; }
.tk-featured figcaption {
	padding: 10px 16px;
	color: var(--tk-muted);
	font-size: 13.5px;
	background: var(--tk-surface);
	border-top: 1px solid var(--tk-line);
}

.tk-layout {
	display: grid;
	grid-template-columns: minmax(0, 1fr) 320px;
	gap: 48px;
	align-items: start;
	padding-block: 36px clamp(40px, 5vw, 64px);
}
.tk-column { min-width: 0; }
.tk-aside { position: sticky; top: calc(var(--tk-header-h) + 22px); }

/* ------------------------------------------------------------
   Article prose — the reading voice
   ------------------------------------------------------------ */
.tk-prose {
	max-width: var(--tk-read);
	font-family: var(--tk-serif);
	font-size: 19px;
	line-height: 1.85;
	color: #303c36;
}
.tk-prose > * + * { margin-top: 1.15em; }
.tk-prose p { margin: 0; }
.tk-prose h2,
.tk-prose h3,
.tk-prose h4 {
	font-family: var(--tk-ui);
	color: var(--tk-ink);
	letter-spacing: -.015em;
	scroll-margin-top: calc(var(--tk-header-h) + 26px);
}
.tk-prose h2 {
	margin-top: 1.7em;
	margin-bottom: .5em;
	padding-top: 14px;
	border-top: 2px solid var(--tk-ink);
	font-size: 27px;
	font-weight: 700;
	line-height: 1.28;
}
.tk-prose h3 {
	margin-top: 1.5em;
	margin-bottom: .35em;
	font-size: 21px;
	font-weight: 700;
}
.tk-prose h4 {
	margin-top: 1.4em;
	margin-bottom: .3em;
	font-size: 18px;
	font-weight: 600;
}
.tk-prose a { color: var(--tk-teal-dark); text-decoration: underline; text-decoration-color: var(--tk-gold); text-decoration-thickness: 2px; text-underline-offset: 3px; }
.tk-prose a:hover { color: var(--tk-ink); text-decoration-color: var(--tk-ink); }
.tk-prose strong { font-weight: 700; color: var(--tk-ink); }
.tk-prose ul, .tk-prose ol { margin: 0; padding-left: 1.3em; }
.tk-prose li { margin-bottom: .5em; }
.tk-prose li::marker { color: var(--tk-teal); }
.tk-prose img, .tk-prose figure { border-radius: var(--tk-r); overflow: hidden; }
.tk-prose figcaption {
	margin-top: 8px;
	color: var(--tk-muted);
	font-family: var(--tk-ui);
	font-size: 14px;
	text-align: center;
}
.tk-prose blockquote {
	margin: 1.6em 0;
	padding: 4px 0 4px 22px;
	border-left: 3px solid var(--tk-gold);
	color: var(--tk-ink);
	font-size: 21px;
	line-height: 1.6;
}
.tk-prose blockquote p:last-child { margin-bottom: 0; }
.tk-prose hr {
	margin: 2.2em 0;
	border: 0;
	border-top: 1px solid var(--tk-line);
}
.tk-prose code {
	padding: 2px 6px;
	border-radius: 5px;
	background: var(--tk-teal-soft);
	color: var(--tk-teal-dark);
	font-family: ui-monospace, "SF Mono", Menlo, monospace;
	font-size: .86em;
}
.tk-prose pre {
	padding: 18px;
	border-radius: var(--tk-r);
	background: var(--tk-ink);
	color: #e6efe9;
	overflow-x: auto;
	font-size: 14.5px;
	line-height: 1.65;
}
.tk-prose pre code { background: none; color: inherit; padding: 0; }
.tk-prose table {
	width: 100%;
	border-collapse: collapse;
	font-family: var(--tk-ui);
	font-size: 16px;
	background: var(--tk-surface);
	border: 1px solid var(--tk-line);
	border-radius: var(--tk-r);
	overflow: hidden;
}
.tk-prose th {
	padding: 12px 14px;
	background: var(--tk-ink);
	color: #fff;
	font-weight: 600;
	text-align: left;
}
.tk-prose td {
	padding: 12px 14px;
	border-top: 1px solid var(--tk-line);
}
.tk-prose tr:nth-child(even) td { background: var(--tk-surface-2); }

.tk-page-links {
	display: flex;
	gap: 8px;
	margin-top: 2em;
	font-family: var(--tk-ui);
	font-size: 15px;
}
.tk-page-links a { text-decoration: none; }

/* Inline TOC — mobile / no-JS fallback */
.tk-toc {
	margin: 0 0 26px;
	padding: 16px 18px;
	background: var(--tk-surface);
	border: 1px solid var(--tk-line);
	border-top: 2px solid var(--tk-ink);
	border-radius: 0 0 var(--tk-r) var(--tk-r);
	font-family: var(--tk-ui);
}
.tk-toc-title {
	margin: 0 0 10px;
	color: var(--tk-teal);
	font-size: 13px;
	font-weight: 700;
	letter-spacing: .04em;
}
.tk-toc-list { margin: 0; padding-left: 1.1em; font-size: 15.5px; }
.tk-toc-list li { margin-bottom: 6px; }
.tk-toc-list li::marker { color: var(--tk-faint); }
.tk-toc-l3 { margin-left: 12px; font-size: 14.5px; }
.tk-toc a { color: var(--tk-ink); text-decoration: none; }
.tk-toc a:hover { color: var(--tk-teal); text-decoration: underline; }

/* ============================================================
   15. Review, sources, author
   ============================================================ */
.tk-review {
	margin: 0 0 30px;
	padding: 22px 24px;
	background: var(--tk-surface);
	border: 1px solid var(--tk-line);
	border-top: 3px solid var(--tk-gold);
	border-radius: 0 0 var(--tk-r) var(--tk-r);
	font-family: var(--tk-ui);
}
.tk-review-head {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	gap: 20px;
}
.tk-review-head h2 { margin: 0; font-size: 22px; }
.tk-score {
	display: grid;
	place-items: center;
	width: 76px;
	height: 76px;
	flex: 0 0 auto;
	border-radius: 999px;
	background: var(--tk-ink);
	color: #fff;
	line-height: 1;
}
.tk-score strong { font-size: 26px; font-weight: 700; color: var(--tk-gold); }
.tk-score span { font-size: 12px; color: rgba(255, 255, 255, .6); }
.tk-verdict {
	margin: 14px 0 0;
	font-size: 17px;
	line-height: 1.6;
	color: var(--tk-text);
}
.tk-facts {
	display: flex;
	flex-wrap: wrap;
	gap: 8px 20px;
	margin-top: 14px;
	padding-top: 14px;
	border-top: 1px solid var(--tk-line);
	font-size: 15px;
}
.tk-facts strong { color: var(--tk-ink); }
.tk-procon {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 16px;
	margin-top: 18px;
}
.tk-pros, .tk-cons {
	padding: 14px 16px;
	border-radius: var(--tk-r-sm);
}
.tk-pros { background: var(--tk-teal-soft); }
.tk-cons { background: var(--tk-clay-soft); }
.tk-pros h3, .tk-cons h3 {
	display: flex;
	align-items: center;
	gap: 6px;
	margin: 0 0 8px;
	font-size: 15px;
	font-weight: 700;
}
.tk-pros h3 { color: var(--tk-teal-dark); }
.tk-cons h3 { color: var(--tk-clay); }
.tk-pros ul, .tk-cons ul { margin: 0; padding-left: 1.1em; font-size: 15px; }
.tk-pros li, .tk-cons li { margin-bottom: 4px; }

.tk-sources {
	margin-top: 36px;
	padding: 20px 22px;
	background: var(--tk-surface-2);
	border: 1px solid var(--tk-line);
	border-radius: var(--tk-r);
	font-family: var(--tk-ui);
}
.tk-sources h2 {
	display: flex;
	align-items: center;
	gap: 8px;
	margin: 0 0 4px;
	font-size: 18px;
}
.tk-sources h2 .tk-icon { color: var(--tk-teal); }
.tk-sources > p { margin: 0 0 12px; color: var(--tk-muted); font-size: 14.5px; }
.tk-sources ul { margin: 0; padding: 0; list-style: none; display: grid; gap: 6px; }
.tk-sources li a {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	font-size: 15px;
	font-weight: 500;
}

.tk-author {
	display: flex;
	align-items: flex-start;
	gap: 16px;
	margin-top: 24px;
	padding: 20px 22px;
	background: var(--tk-surface);
	border: 1px solid var(--tk-line);
	border-left: 3px solid var(--tk-ink);
	border-radius: 0 var(--tk-r) var(--tk-r) 0;
	font-family: var(--tk-ui);
}
.tk-author-avatar { width: 60px; height: 60px; border-radius: 999px; flex: 0 0 auto; }
.tk-author-eyebrow {
	margin: 0 0 2px;
	color: var(--tk-teal);
	font-size: 12.5px;
	font-weight: 700;
	letter-spacing: .04em;
}
.tk-author-name { margin: 0 0 4px; font-size: 17px; font-weight: 700; }
.tk-author-name a { color: var(--tk-ink); text-decoration: none; }
.tk-author-name a:hover { color: var(--tk-teal); }
.tk-author p:last-child { margin: 0; color: var(--tk-muted); font-size: 14.5px; line-height: 1.6; }
.tk-reviewed-by {
	display: flex;
	align-items: center;
	gap: 6px;
	margin: 10px 0 0;
	color: var(--tk-teal-dark);
	font-size: 14px;
}

.tk-related { margin-top: 46px; }
.tk-related .tk-grid { gap: 18px; }

/* Empty state for the front-page rail. */
.tk-rail-empty {
	margin: 0;
	padding: 18px;
	color: var(--tk-muted);
	font-size: 15px;
	text-align: center;
	border: 1px dashed var(--tk-line);
	border-radius: var(--tk-r-sm);
}

/* ============================================================
   16. Article sidebar
   ============================================================ */
.tk-side { display: grid; gap: 18px; }
.tk-side-block,
.tk-widget {
	padding: 18px 20px;
	background: var(--tk-surface);
	border: 1px solid var(--tk-line);
	border-top: 2px solid var(--tk-ink);
	border-radius: 0 0 var(--tk-r) var(--tk-r);
}
.tk-side-eyebrow {
	margin: 0 0 2px;
	color: var(--tk-teal);
	font-size: 12.5px;
	font-weight: 700;
	letter-spacing: .04em;
}
.tk-side-block h2,
.tk-widget-title {
	margin: 0 0 12px;
	font-size: 17px;
	font-weight: 700;
}

.tk-side-toc-list {
	margin: 0;
	padding: 0;
	list-style: none;
	max-height: 52vh;
	overflow-y: auto;
	counter-reset: toc;
}
.tk-side-toc-list li { counter-increment: toc; }
.tk-side-toc-list a {
	display: block;
	padding: 7px 0 7px 14px;
	border-left: 2px solid var(--tk-line);
	color: var(--tk-muted);
	font-size: 14.5px;
	line-height: 1.45;
	text-decoration: none;
	transition: color var(--tk-t), border-color var(--tk-t);
}
.tk-side-toc-list a:hover { color: var(--tk-ink); border-left-color: var(--tk-line-strong); }
.tk-side-toc-list li.is-sub a { padding-left: 26px; font-size: 13.8px; }
.tk-side-toc-list li.is-active > a {
	color: var(--tk-ink);
	font-weight: 600;
	border-left-color: var(--tk-gold);
}

.tk-side-story {
	display: grid;
	grid-template-columns: 62px minmax(0, 1fr);
	gap: 12px;
	align-items: center;
	padding: 12px 0;
	border-top: 1px solid var(--tk-line);
	color: inherit;
	text-decoration: none;
}
.tk-side-story:first-of-type { border-top: 0; padding-top: 0; }
.tk-side-story-media {
	aspect-ratio: 1 / 1;
	border-radius: 9px;
	overflow: hidden;
	background: var(--tk-surface-2);
	display: grid;
	place-items: center;
	color: var(--tk-faint);
}
.tk-side-story-media img { width: 100%; height: 100%; object-fit: cover; }
.tk-side-story-copy strong {
	display: block;
	color: var(--tk-ink);
	font-size: 15px;
	font-weight: 600;
	line-height: 1.4;
	transition: color var(--tk-t);
}
.tk-side-story:hover strong { color: var(--tk-teal-dark); }
.tk-side-story-copy small { color: var(--tk-faint); font-size: 13px; }

.tk-side-links { display: flex; flex-wrap: wrap; gap: 6px; }
.tk-side-links a {
	display: inline-flex;
	align-items: center;
	gap: 5px;
	padding: 6px 11px;
	border: 1px solid var(--tk-line-strong);
	border-radius: 999px;
	color: var(--tk-ink);
	font-size: 13.5px;
	font-weight: 600;
	text-decoration: none;
	transition: background var(--tk-t), border-color var(--tk-t), color var(--tk-t);
}
.tk-side-links a:hover { background: var(--tk-ink); border-color: var(--tk-ink); color: #fff; }

.tk-widget ul { margin: 0; padding: 0; list-style: none; }
.tk-widget li { padding: 7px 0; border-top: 1px solid var(--tk-line); }
.tk-widget li:first-child { border-top: 0; }
.tk-widget a { color: var(--tk-ink); text-decoration: none; font-weight: 500; }
.tk-widget a:hover { color: var(--tk-teal); }

/* ============================================================
   17. Content shortcodes
   ============================================================ */
.tk-takeaway {
	margin: 1.6em 0;
	padding: 18px 20px;
	background: var(--tk-gold-soft);
	border-left: 3px solid var(--tk-gold);
	border-radius: 0 var(--tk-r) var(--tk-r) 0;
	font-family: var(--tk-ui);
	font-size: 16px;
	line-height: 1.6;
}
.tk-takeaway-title {
	margin: 0 0 8px;
	color: var(--tk-ink);
	font-size: 15px;
	font-weight: 700;
	letter-spacing: .02em;
}
.tk-takeaway ul { margin: 0; padding-left: 1.15em; }
.tk-takeaway li { margin-bottom: 5px; }
.tk-takeaway li::marker { color: var(--tk-gold-dark); }

.tk-callout {
	margin: 1.6em 0;
	padding: 16px 18px;
	border-radius: var(--tk-r);
	border: 1px solid var(--tk-line);
	font-family: var(--tk-ui);
	font-size: 16px;
	line-height: 1.6;
}
.tk-callout-info { background: var(--tk-teal-soft); border-color: #c9e2db; }
.tk-callout-tip { background: var(--tk-gold-soft); border-color: #f0dcb4; }
.tk-callout-warning { background: var(--tk-clay-soft); border-color: #f0cfc4; }
.tk-callout-title { margin: 0 0 5px; font-weight: 700; color: var(--tk-ink); }
.tk-callout p:last-child { margin-bottom: 0; }

.tk-steps { margin: 1.8em 0; font-family: var(--tk-ui); }
.tk-steps-title { margin: 0 0 12px; font-size: 19px; }
.tk-steps-list {
	margin: 0;
	padding: 0;
	list-style: none;
	counter-reset: step;
}
.tk-steps-list li {
	position: relative;
	counter-increment: step;
	padding: 0 0 18px 46px;
	font-size: 16.5px;
	line-height: 1.6;
}
.tk-steps-list li::before {
	content: counter(step);
	position: absolute;
	left: 0;
	top: 0;
	display: grid;
	place-items: center;
	width: 30px;
	height: 30px;
	border-radius: 999px;
	background: var(--tk-ink);
	color: var(--tk-gold);
	font-size: 14px;
	font-weight: 700;
}
.tk-steps-list li::after {
	content: "";
	position: absolute;
	left: 15px;
	top: 34px;
	bottom: 6px;
	width: 1px;
	background: var(--tk-line-strong);
}
.tk-steps-list li:last-child { padding-bottom: 0; }
.tk-steps-list li:last-child::after { display: none; }

.tk-faq { margin: 2em 0; font-family: var(--tk-ui); }
.tk-faq-heading { margin: 0 0 14px; font-size: 24px; }
.tk-faq-list { display: grid; gap: 8px; }
.tk-faq-item {
	background: var(--tk-surface);
	border: 1px solid var(--tk-line);
	border-radius: var(--tk-r-sm);
	overflow: hidden;
}
.tk-faq-item summary {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	padding: 14px 16px;
	cursor: pointer;
	color: var(--tk-ink);
	font-size: 16.5px;
	font-weight: 600;
	list-style: none;
	transition: background var(--tk-t);
}
.tk-faq-item summary::-webkit-details-marker { display: none; }
.tk-faq-item summary:hover { background: var(--tk-surface-2); }
.tk-faq-icon {
	position: relative;
	flex: 0 0 auto;
	width: 16px;
	height: 16px;
}
.tk-faq-icon::before,
.tk-faq-icon::after {
	content: "";
	position: absolute;
	background: var(--tk-teal);
	transition: transform var(--tk-t);
}
.tk-faq-icon::before { inset: 7px 0 auto; height: 2px; }
.tk-faq-icon::after { inset: 0 7px; width: 2px; }
.tk-faq-item[open] .tk-faq-icon::after { transform: scaleY(0); }
.tk-faq-item[open] summary { background: var(--tk-surface-2); border-bottom: 1px solid var(--tk-line); }
.tk-faq-answer {
	padding: 14px 16px;
	font-size: 16px;
	line-height: 1.65;
}
.tk-faq-answer p:last-child { margin-bottom: 0; }

.tk-specs {
	margin: 1.8em 0;
	padding: 20px 22px;
	background: var(--tk-ink);
	border-radius: var(--tk-r);
	color: rgba(255, 255, 255, .82);
	font-family: var(--tk-ui);
}
.tk-specs h3 {
	margin: 0 0 14px;
	padding-bottom: 12px;
	border-bottom: 1px solid rgba(255, 255, 255, .16);
	color: #fff;
	font-size: 18px;
}
.tk-specs dl {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 14px 24px;
	margin: 0;
}
.tk-specs dt {
	display: flex;
	align-items: center;
	gap: 6px;
	color: var(--tk-gold);
	font-size: 13px;
	font-weight: 600;
}
.tk-specs dd {
	margin: 2px 0 0;
	color: #fff;
	font-size: 16px;
	font-weight: 500;
}

.tk-references {
	margin: 2em 0 0;
	padding: 18px 20px;
	background: var(--tk-surface-2);
	border: 1px solid var(--tk-line);
	border-radius: var(--tk-r);
	font-family: var(--tk-ui);
	font-size: 15.5px;
}
.tk-references-title { margin: 0 0 8px; font-size: 17px; }
.tk-disclosure {
	margin: 1.4em 0;
	padding: 10px 14px;
	background: var(--tk-surface-2);
	border-left: 2px solid var(--tk-line-strong);
	color: var(--tk-muted);
	font-family: var(--tk-ui);
	font-size: 14px;
	line-height: 1.55;
}

.tk-btn {
	display: inline-flex;
	align-items: center;
	gap: 7px;
	padding: 11px 20px;
	border-radius: var(--tk-r-sm);
	font-family: var(--tk-ui);
	font-size: 15.5px;
	font-weight: 600;
	text-decoration: none;
	transition: background var(--tk-t), color var(--tk-t), border-color var(--tk-t);
}
.tk-btn-primary { background: var(--tk-ink); color: #fff; }
.tk-btn-primary:hover { background: var(--tk-teal-dark); color: #fff; }
.tk-btn-soft { background: var(--tk-teal-soft); color: var(--tk-teal-dark); }
.tk-btn-soft:hover { background: var(--tk-ink); color: #fff; }
.tk-btn-ghost { border: 1px solid var(--tk-line-strong); color: var(--tk-ink); }
.tk-btn-ghost:hover { border-color: var(--tk-ink); background: var(--tk-ink); color: #fff; }

/* ============================================================
   18. Comments
   ============================================================ */
.tk-comments {
	max-width: var(--tk-read);
	margin-top: 46px;
	padding-top: 22px;
	border-top: 2px solid var(--tk-ink);
	font-family: var(--tk-ui);
}
.tk-comments > h2 { font-size: 22px; }
.comment-list { margin: 0 0 30px; padding: 0; list-style: none; }
.comment-list ol.children { margin: 16px 0 0 26px; padding: 0; list-style: none; }
.tk-comment { margin-bottom: 16px; }
.tk-comment-body {
	display: flex;
	gap: 14px;
	padding: 16px 18px;
	background: var(--tk-surface);
	border: 1px solid var(--tk-line);
	border-radius: var(--tk-r);
}
.tk-comment-avatar img { width: 44px; height: 44px; border-radius: 999px; }
.tk-comment-copy { flex: 1; min-width: 0; }
.tk-comment-head { margin-bottom: 4px; }
.tk-comment-head strong { color: var(--tk-ink); font-size: 15.5px; }
.tk-comment-head strong a { color: inherit; text-decoration: none; }
.tk-comment-head span {
	display: block;
	color: var(--tk-clay);
	font-size: 13px;
}
.tk-comment-text { font-size: 16px; line-height: 1.65; }
.tk-comment-text p:last-child { margin-bottom: 0; }
.tk-comment-reply { margin-top: 8px; font-size: 14px; }
.tk-comment-reply a { color: var(--tk-teal); font-weight: 600; text-decoration: none; }

.comment-respond {
	padding: 22px 24px;
	background: var(--tk-surface);
	border: 1px solid var(--tk-line);
	border-top: 2px solid var(--tk-ink);
	border-radius: 0 0 var(--tk-r) var(--tk-r);
}
.comment-reply-title { margin: 0 0 6px; font-size: 20px; }
.comment-notes, .comment-form-cookies-consent label {
	color: var(--tk-muted);
	font-size: 14px;
}
.comment-form label { display: block; margin-bottom: 5px; font-size: 14.5px; font-weight: 600; color: var(--tk-ink); }
.comment-form input[type="text"],
.comment-form input[type="email"],
.comment-form input[type="url"],
.comment-form textarea {
	width: 100%;
	padding: 11px 14px;
	background: var(--tk-surface-2);
	border: 1px solid var(--tk-line-strong);
	border-radius: var(--tk-r-sm);
	outline: none;
	transition: border-color var(--tk-t);
}
.comment-form input:focus, .comment-form textarea:focus { border-color: var(--tk-ink); }
.comment-form p { margin-bottom: 14px; }
.comment-form .submit {
	padding: 12px 24px;
	background: var(--tk-ink);
	color: #fff;
	border: 0;
	border-radius: var(--tk-r-sm);
	font-weight: 600;
	cursor: pointer;
	transition: background var(--tk-t);
}
.comment-form .submit:hover { background: var(--tk-teal-dark); }

/* ============================================================
   19. Static page
   ============================================================ */
.tk-page-body { padding-block: 36px clamp(40px, 5vw, 64px); }
.tk-page-body .tk-prose { margin-inline: auto; }

/* ============================================================
   20. 404
   ============================================================ */
.tk-error { padding-block: clamp(50px, 8vw, 90px); text-align: center; }
.tk-error-inner { max-width: 560px; margin-inline: auto; }
.tk-error-code {
	font-size: clamp(70px, 13vw, 118px);
	font-weight: 800;
	line-height: 1;
	color: var(--tk-ink);
	letter-spacing: -.04em;
}
.tk-error-code span { color: var(--tk-gold); }
.tk-error h1 { margin: 14px 0 8px; font-size: clamp(23px, 3vw, 30px); }
.tk-error > .tk-container > .tk-error-inner > p { color: var(--tk-muted); }
.tk-error .tk-search-form { margin: 24px 0 20px; }
.tk-error-links {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 8px;
	margin-bottom: 24px;
}

/* ============================================================
   21. Footer
   ============================================================ */
.tk-footer {
	margin-top: clamp(50px, 6vw, 76px);
	background: var(--tk-ink);
	color: rgba(255, 255, 255, .68);
}
.tk-footer-top { padding-block: clamp(38px, 5vw, 56px) 34px; }
.tk-footer-col { min-width: 0; }
.tk-footer-grid {
	display: grid;
	grid-template-columns: 1.6fr 1fr 1fr 1.2fr;
	gap: 36px;
	padding-top: 22px;
	border-top: 2px solid var(--tk-gold);
}
.tk-footer h2 {
	margin: 0 0 14px;
	color: #fff;
	font-size: 15px;
	font-weight: 700;
	letter-spacing: .04em;
}
.tk-footer-brand { color: #fff; margin-bottom: 14px; }
.tk-footer-brand .tk-brand-mark {
	background: rgba(255, 255, 255, .1);
	box-shadow: inset 0 3px 0 var(--tk-gold);
}
.tk-footer-brand .tk-brand-text strong { color: #fff; }
.tk-footer-brand .tk-brand-text small { color: rgba(255, 255, 255, .55); }
.tk-footer-logo img { max-width: var(--tk-footer-logo-max); height: auto; }
.tk-footer-about p {
	max-width: 38ch;
	margin: 0 0 16px;
	font-size: 15px;
	line-height: 1.65;
}
.tk-footer .tk-social a { color: rgba(255, 255, 255, .7); border: 1px solid rgba(255, 255, 255, .16); }
.tk-footer .tk-social a:hover { background: var(--tk-gold); border-color: var(--tk-gold); color: var(--tk-ink); }

.tk-footer-menu { margin: 0; padding: 0; list-style: none; display: grid; gap: 9px; }
.tk-footer-menu a {
	color: rgba(255, 255, 255, .68);
	font-size: 15px;
	text-decoration: none;
	transition: color var(--tk-t), padding-left var(--tk-t);
}
.tk-footer-menu a:hover { color: var(--tk-gold); padding-left: 4px; }

.tk-footer-widget { margin-bottom: 18px; }
.tk-footer-widget ul { margin: 0; padding: 0; list-style: none; display: grid; gap: 9px; }
.tk-footer-widget a { color: rgba(255, 255, 255, .68); text-decoration: none; }
.tk-footer-widget a:hover { color: var(--tk-gold); }

.tk-footer-bottom {
	padding-block: 18px;
	border-top: 1px solid rgba(255, 255, 255, .1);
	font-size: 14px;
}
.tk-footer-bottom .tk-container {
	display: flex;
	align-items: center;
	justify-content: space-between;
	flex-wrap: wrap;
	gap: 10px;
}
.tk-footer-bottom a { color: rgba(255, 255, 255, .68); text-decoration: none; }
.tk-footer-bottom a:hover { color: var(--tk-gold); }
.tk-footer-note { display: flex; gap: 16px; flex-wrap: wrap; }

/* ============================================================
   22. WordPress core
   ============================================================ */
.alignwide { max-width: 1000px; margin-inline: auto; }
.alignfull { max-width: none; }
.alignleft { float: left; margin: .4em 1.6em .8em 0; }
.alignright { float: right; margin: .4em 0 .8em 1.6em; }
.aligncenter { margin-inline: auto; }
.wp-caption { max-width: 100%; }
.wp-caption-text, .wp-element-caption {
	margin-top: 8px;
	color: var(--tk-muted);
	font-family: var(--tk-ui);
	font-size: 14px;
	text-align: center;
}
.sticky, .bypostauthor { display: block; }
.tk-prose .wp-block-image { margin-block: 1.6em; }
.tk-prose .wp-block-button__link { border-radius: var(--tk-r-sm); }

/* ============================================================
   23. Responsive
   ============================================================ */
@media (max-width: 1100px) {
	.tk-layout { grid-template-columns: minmax(0, 1fr); gap: 34px; }
	.tk-aside { position: static; }
	.tk-side { grid-template-columns: repeat(2, minmax(0, 1fr)); }
	.tk-side-toc { display: none; }
	.tk-grid-4 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
	.tk-topic-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
	.tk-prose { max-width: none; }
	.tk-comments { max-width: none; }
}

/* Desktop keeps only the sidebar TOC */
@media (min-width: 1101px) {
	.tk-toc { display: none; }
}

@media (max-width: 980px) {
	.tk-menu-toggle { display: inline-flex; }
	.tk-nav {
		position: fixed;
		inset: 0 0 0 auto;
		z-index: 70;
		width: min(340px, 86vw);
		flex-direction: column;
		align-items: stretch;
		gap: 0;
		padding: 22px;
		background: var(--tk-surface);
		border-left: 1px solid var(--tk-line);
		box-shadow: var(--tk-shadow-lg);
		overflow-y: auto;
		transform: translateX(100%);
		visibility: hidden;
		transition: transform 260ms cubic-bezier(.4, 0, .2, 1), visibility 260ms;
	}
	.tk-nav.is-open { transform: translateX(0); visibility: visible; }
	.tk-menu { flex-direction: column; align-items: stretch; gap: 0; }
	.tk-menu > li { border-bottom: 1px solid var(--tk-line); }
	.tk-menu > li > a { padding: 13px 4px; border-radius: 0; font-size: 16.5px; }
	.tk-menu > li > a:hover { background: none; }
	.tk-menu > li.current-menu-item > a::after { display: none; }
	.tk-menu .menu-item-has-children > a::before { margin-left: auto; }
	.tk-menu .sub-menu {
		position: static;
		display: none;
		opacity: 1;
		visibility: visible;
		transform: none;
		min-width: 0;
		padding: 0 0 10px 12px;
		border: 0;
		border-left: 2px solid var(--tk-gold);
		border-radius: 0;
		box-shadow: none;
		background: none;
	}
	.tk-menu li.tk-open > .sub-menu { display: block; }
	.tk-nav-tools {
		margin-top: 18px;
		flex-direction: column;
		align-items: stretch;
	}
	.tk-nav-cta { justify-content: center; padding: 12px; }
	.tk-search-toggle { display: none; }

	.tk-lead-grid { grid-template-columns: minmax(0, 1fr); gap: 24px; }
	.tk-split { grid-template-columns: minmax(0, 1fr); gap: 26px; }
	.tk-split-copy { position: static; }
	.tk-duo { grid-template-columns: minmax(0, 1fr); }
	.tk-card-wide { flex-direction: column; }
	.tk-card-wide .tk-card-media { flex: none; aspect-ratio: 16 / 9; }
	.tk-card-wide .tk-card-body { padding: 18px 20px; }
	.tk-topbar-text { font-size: 12.5px; }
}

@media (max-width: 820px) {
	.tk-header-search .tk-container { flex-wrap: wrap; }
	.tk-page-head-inner { flex-direction: column; gap: 14px; }
	.tk-article-meta { align-items: flex-start; }
	.tk-tools { margin-left: 0; width: 100%; }
	.tk-specs dl { grid-template-columns: minmax(0, 1fr); }
	.tk-procon { grid-template-columns: minmax(0, 1fr); }
	.tk-footer-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 28px; }
}

@media (max-width: 640px) {
	body { font-size: 16px; }
	.tk-container { width: calc(100% - 28px); }
	.tk-grid-2, .tk-grid-3, .tk-grid-4,
	.tk-topic-grid,
	.tk-side { grid-template-columns: minmax(0, 1fr); }
	.tk-head { flex-direction: column; align-items: flex-start; gap: 10px; }
	.tk-more { padding-bottom: 0; }
	.tk-topbar-inner { justify-content: center; }
	.tk-topbar-text,
	.tk-topbar-menu { display: none; }
	.tk-prose { font-size: 17.5px; line-height: 1.8; }
	.tk-prose h2 { font-size: 23px; }
	.tk-prose h3 { font-size: 19px; }
	.tk-article-deck { font-size: 17px; }
	.tk-review-head { flex-direction: column-reverse; align-items: flex-start; gap: 12px; }
	.tk-lead-body { padding: 0 18px 20px; }
	.tk-footer-grid { grid-template-columns: minmax(0, 1fr); }
	.tk-comment-body { padding: 14px; gap: 10px; }
	.tk-comment-avatar img { width: 36px; height: 36px; }
	.comment-list ol.children { margin-left: 12px; }
}

/* ============================================================
   23b. Home: welcome, stream, most-read, section rails
   ============================================================ */

/* --- Welcome hero (only until the first post exists) --- */
.tk-welcome {
	padding: 66px 0 58px;
	background: var(--tk-surface);
	border-bottom: 1px solid var(--tk-line);
}
.tk-welcome-inner { max-width: 760px; }
.tk-welcome-title { margin: 6px 0 14px; font-size: clamp(30px, 4.4vw, 46px); line-height: 1.22; }
.tk-welcome-deck { margin: 0 0 26px; max-width: 62ch; color: var(--tk-muted); font-size: 17.5px; line-height: 1.75; }
.tk-welcome-cta { display: flex; flex-wrap: wrap; gap: 12px; }

/* --- The stream: the reason to come back tomorrow --- */
.tk-stream-grid {
	display: grid;
	grid-template-columns: minmax(0, 1fr) 320px;
	gap: 46px;
	align-items: start;
}
.tk-stream-side { position: sticky; top: 92px; display: grid; gap: 18px; }

/* a quiet pulse, so "live" is shown rather than claimed */
.tk-live {
	display: inline-block;
	width: 7px;
	height: 7px;
	margin-right: 7px;
	border-radius: 999px;
	background: var(--tk-clay);
	animation: tk-pulse 2s ease-in-out infinite;
}
@keyframes tk-pulse {
	0%, 100% { opacity: 1; transform: scale(1); }
	50%      { opacity: .35; transform: scale(.8); }
}

.tk-stream { margin: 0; padding: 0; list-style: none; }
.tk-stream-item {
	position: relative;
	display: grid;
	grid-template-columns: minmax(0, 1fr) 116px;
	gap: 18px;
	align-items: start;
	padding: 18px 0 18px 22px;
	border-bottom: 1px solid var(--tk-line);
}
/* the timeline spine + node */
.tk-stream-item::before {
	content: "";
	position: absolute;
	left: 3px;
	top: 0;
	bottom: 0;
	width: 1px;
	background: var(--tk-line);
}
.tk-stream-item::after {
	content: "";
	position: absolute;
	left: 0;
	top: 24px;
	width: 7px;
	height: 7px;
	border-radius: 999px;
	background: var(--tk-gold);
	box-shadow: 0 0 0 3px var(--tk-paper);
}
.tk-stream-item:first-child::before { top: 24px; }
.tk-stream-item:last-child { border-bottom: 0; }
.tk-stream-item:last-child::before { bottom: auto; height: 24px; }

.tk-stream-meta {
	display: flex;
	align-items: center;
	gap: 10px;
	margin: 0 0 5px;
	font-family: var(--tk-ui);
	font-size: 13px;
	color: var(--tk-muted);
}
.tk-stream-cat {
	color: var(--tk-teal);
	font-weight: 700;
	text-decoration: none;
}
.tk-stream-cat:hover { text-decoration: underline; }
.tk-stream-title { margin: 0 0 5px; font-size: 20px; font-weight: 700; line-height: 1.35; }
.tk-stream-title a { color: var(--tk-ink); text-decoration: none; }
.tk-stream-title a:hover { color: var(--tk-teal); }
.tk-stream-deck { margin: 0; color: var(--tk-muted); font-size: 14.5px; line-height: 1.6; }
.tk-stream-media {
	display: block;
	overflow: hidden;
	border-radius: var(--tk-r-sm);
	aspect-ratio: 16 / 10;
	background: var(--tk-surface-2);
}
.tk-stream-media img { width: 100%; height: 100%; object-fit: cover; transition: transform 500ms ease; }
.tk-stream-item:hover .tk-stream-media img { transform: scale(1.05); }
.tk-stream-more { margin-top: 24px; }

/* --- Most read: the strongest social proof on the page --- */
.tk-popular-list { margin: 0; padding: 0; list-style: none; counter-reset: none; }
.tk-popular-list li {
	display: flex;
	align-items: baseline;
	gap: 12px;
	padding: 11px 0;
	border-bottom: 1px solid var(--tk-line);
}
.tk-popular-list li:last-child { border-bottom: 0; padding-bottom: 0; }
.tk-popular-num {
	flex: 0 0 auto;
	width: 22px;
	color: var(--tk-gold-dark);
	font-family: var(--tk-ui);
	font-size: 19px;
	font-weight: 800;
	line-height: 1;
}
.tk-popular-list a { display: block; text-decoration: none; }
.tk-popular-list strong {
	display: block;
	color: var(--tk-ink);
	font-size: 15px;
	font-weight: 600;
	line-height: 1.45;
}
.tk-popular-list a:hover strong { color: var(--tk-teal); }
.tk-popular-list small { display: block; margin-top: 3px; color: var(--tk-muted); font-size: 12.5px; }

/* --- Follow band --- */
.tk-follow {
	padding: 44px 0;
	background: var(--tk-ink);
	color: #fff;
}
.tk-follow-inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 26px;
	flex-wrap: wrap;
}
.tk-follow-copy h2 { margin: 0 0 5px; font-size: 25px; color: #fff; }
.tk-follow-copy p { margin: 0; max-width: 58ch; color: rgba(255, 255, 255, .68); font-size: 15.5px; }
.tk-follow-action { flex: 0 0 auto; }
.tk-follow .tk-btn-primary { background: var(--tk-gold); color: var(--tk-ink); }
.tk-follow .tk-btn-primary:hover { background: #f0ad38; }

/* --- Next / previous article: a post should never be a dead end --- */
.tk-postnav { padding: 0 0 56px; }
.tk-postnav-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 18px;
}
.tk-postnav-item {
	padding: 18px 20px;
	background: var(--tk-surface);
	border: 1px solid var(--tk-line);
	border-top: 2px solid var(--tk-ink);
	border-radius: 0 0 var(--tk-r) var(--tk-r);
	text-decoration: none;
	transition: border-top-color var(--tk-t), box-shadow var(--tk-t), transform var(--tk-t);
}
.tk-postnav-item:hover {
	border-top-color: var(--tk-gold);
	box-shadow: var(--tk-shadow);
	transform: translateY(-2px);
}
.tk-postnav-next { text-align: right; }
.tk-postnav-label {
	display: flex;
	align-items: center;
	gap: 6px;
	margin-bottom: 6px;
	color: var(--tk-teal);
	font-family: var(--tk-ui);
	font-size: 13px;
	font-weight: 700;
}
.tk-postnav-next .tk-postnav-label { justify-content: flex-end; }
.tk-postnav-prev .tk-icon { transform: rotate(180deg); }
.tk-postnav-item strong {
	display: block;
	color: var(--tk-ink);
	font-size: 17px;
	font-weight: 700;
	line-height: 1.4;
}
.tk-postnav-item:hover strong { color: var(--tk-teal); }

@media (max-width: 980px) {
	.tk-stream-grid { grid-template-columns: minmax(0, 1fr); gap: 36px; }
	.tk-stream-side { position: static; }
}
@media (max-width: 640px) {
	.tk-welcome { padding: 46px 0 40px; }
	.tk-stream-item { grid-template-columns: minmax(0, 1fr); gap: 12px; }
	.tk-stream-media { max-width: 100%; aspect-ratio: 16 / 9; }
	.tk-stream-title { font-size: 18px; }
	.tk-follow-inner { flex-direction: column; align-items: flex-start; }
	.tk-follow-action { width: 100%; }
	.tk-follow-action .tk-btn { width: 100%; justify-content: center; }
	.tk-postnav-grid { grid-template-columns: minmax(0, 1fr); }
	.tk-postnav-next { text-align: left; }
	.tk-postnav-next .tk-postnav-label { justify-content: flex-start; }
}

/* --- odds and ends used by the newsroom front --- */
.tk-section-alt { background: var(--tk-paper); }
.tk-stream-col { min-width: 0; }
.tk-popular { min-width: 0; }
.tk-head-link {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	align-self: end;
	color: var(--tk-teal);
	font-family: var(--tk-ui);
	font-size: 14.5px;
	font-weight: 600;
	text-decoration: none;
	white-space: nowrap;
}
.tk-head-link:hover { color: var(--tk-teal-dark); }
.tk-head-link .tk-icon { transition: transform var(--tk-t); }
.tk-head-link:hover .tk-icon { transform: translateX(3px); }
.tk-tag {
	display: inline-block;
	margin-bottom: 10px;
	padding: 3px 10px;
	background: var(--tk-teal-soft);
	border-radius: 999px;
	color: var(--tk-teal-dark);
	font-family: var(--tk-ui);
	font-size: 12.5px;
	font-weight: 700;
	text-decoration: none;
}
.tk-tag:hover { background: var(--tk-teal); color: #fff; }
.tk-lead-meta {
	display: flex;
	align-items: center;
	gap: 16px;
	margin: 14px 0 0;
	color: var(--tk-muted);
	font-family: var(--tk-ui);
	font-size: 13.5px;
}
.tk-lead-meta span { display: inline-flex; align-items: center; gap: 5px; }

/* ============================================================
   24. Motion + print
   ============================================================ */
@media (prefers-reduced-motion: reduce) {
	html { scroll-behavior: auto; }
	*, *::before, *::after {
		animation-duration: .01ms !important;
		animation-iteration-count: 1 !important;
		transition-duration: .01ms !important;
	}
}

@media print {
	.tk-topbar, .tk-header, .tk-footer, .tk-aside, .tk-tools,
	.tk-progress, .tk-related, .tk-comments { display: none !important; }
	body { background: #fff; font-size: 12pt; }
	.tk-layout { display: block; }
	.tk-prose { max-width: none; }
}
