:root {
	--tk-bg: #0a0908;
	--tk-fg: #f6f1e8;
	--tk-muted: rgba(246, 241, 232, 0.58);
	--tk-line: rgba(246, 241, 232, 0.16);
	--tk-card: #141210;
	--tk-accent: #b1d55d;
	--tk-display: "Anton", "Bebas Neue", "Barlow Condensed", Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
	--tk-body: "Space Grotesk", Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
	--tk-mono: "JetBrains Mono", "SFMono-Regular", Consolas, monospace;
	--tk-display-weight: 400;
}

* {
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
}

body {
	margin: 0;
	background: var(--tk-bg);
	color: var(--tk-fg);
	font-family: var(--tk-body);
	font-size: 24px;
	line-height: 1.5;
}

body.admin-bar .tk-topbar {
	top: 32px;
}

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

a:focus-visible,
button:focus-visible,
iframe:focus-visible {
	outline: 2px solid var(--tk-accent);
	outline-offset: 4px;
}

img {
	display: block;
	max-width: 100%;
}

.tk-skip-link {
	position: fixed;
	top: 10px;
	left: 10px;
	z-index: 10000;
	padding: 10px 14px;
	background: var(--tk-accent);
	color: #0a0908;
	transform: translateY(-140%);
}

.tk-skip-link:focus {
	transform: translateY(0);
}

.tk-topbar {
	position: sticky;
	top: 0;
	z-index: 50;
}

.tk-header {
	display: grid;
	grid-template-columns: 1fr auto 1fr;
	gap: 24px;
	align-items: center;
	padding: 18px 32px;
	border-bottom: 1px solid var(--tk-line);
	background: rgba(10, 9, 8, 0.9);
	backdrop-filter: blur(14px);
	font-family: var(--tk-mono);
	font-size: 16.5px;
	letter-spacing: 0.16em;
	text-transform: uppercase;
}

.tk-header__brand,
.tk-menu,
.tk-header__location {
	display: flex;
	gap: 18px;
	align-items: center;
	min-width: 0;
}

.tk-header__brand span,
.tk-header__location {
	color: var(--tk-muted);
}

.tk-header__mark {
	font-weight: 800;
}

.tk-header__mark::before {
	content: "";
	display: inline-block;
	width: 9px;
	height: 9px;
	margin-right: 8px;
	border: 2px solid currentColor;
	border-radius: 50%;
	vertical-align: -1px;
}

.tk-header__location {
	justify-content: flex-end;
}

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

.tk-menu a,
.tk-text-link {
	border-bottom: 1px solid transparent;
	transition: border-color 160ms ease, color 160ms ease;
}

.tk-menu a:hover,
.tk-text-link:hover {
	border-color: currentColor;
	color: var(--tk-accent);
}

.tk-home {
	min-height: 100vh;
	overflow-x: hidden;
}

.tk-page {
	overflow-x: hidden;
}

.tk-ticker {
	overflow: hidden;
	border-bottom: 1px solid var(--tk-line);
	background: var(--tk-accent);
	color: #0a0908;
	white-space: nowrap;
}

.tk-ticker__track {
	display: flex;
	width: max-content;
	animation: tk-marquee 28s linear infinite;
}

.tk-ticker__group {
	display: flex;
	align-items: center;
}

.tk-ticker a,
.tk-ticker__item {
	display: inline-flex;
	padding: 10px 20px;
	font-family: var(--tk-display);
	font-size: 25.5px;
	line-height: 1;
	letter-spacing: 0.04em;
	text-transform: uppercase;
}

.tk-ticker__divider {
	position: relative;
	display: inline-flex;
	flex: 0 0 58px;
	align-self: stretch;
	align-items: center;
	justify-content: center;
}

.tk-ticker__divider::before,
.tk-ticker__divider::after {
	content: "";
	position: absolute;
	border-radius: 50%;
}

.tk-ticker__divider::before {
	width: 13px;
	height: 13px;
	border: 2px solid currentColor;
}

.tk-ticker__divider::after {
	width: 5px;
	height: 5px;
	background: currentColor;
}

.tk-hero {
	padding: 40px 32px 28px;
}

.tk-section-inner {
	width: min(100%, 1440px);
	margin: 0 auto;
}

.tk-section-inner--hero {
	width: min(100%, 1520px);
}

.tk-hero .tk-section-inner {
	display: grid;
	grid-template-columns: minmax(0, 1.18fr) minmax(320px, 0.82fr);
	gap: 24px;
	align-items: stretch;
}

.tk-hero__copy {
	container-type: inline-size;
	min-width: 0;
}

.tk-tag {
	display: inline-flex;
	gap: 8px;
	align-items: center;
	margin-bottom: 12px;
	color: var(--tk-muted);
	font-family: var(--tk-mono);
	font-size: 16.5px;
	letter-spacing: 0.2em;
	text-transform: uppercase;
}

.tk-tag span {
	width: 6px;
	height: 6px;
	border-radius: 999px;
	background: var(--tk-accent);
}

.tk-hero__title,
.tk-section-heading h2,
.tk-music__headline,
.tk-shows__intro h2,
.tk-site-footer h2 {
	margin: 0;
	font-family: var(--tk-display);
	font-weight: var(--tk-display-weight);
	letter-spacing: 0;
	line-height: 0.84;
	text-transform: uppercase;
}

.tk-hero__title {
	max-width: 100%;
	font-size: clamp(70px, 20cqw, 220px);
}

.tk-hero__title span {
	display: block;
}

.tk-role-reel {
	display: block;
	height: 1.1em;
	margin-top: 24px;
	overflow: hidden;
	color: var(--tk-accent);
	font-family: var(--tk-display);
	font-size: clamp(31px, 4.4vw, 62px);
	font-weight: var(--tk-display-weight);
	line-height: 1.1;
	text-transform: uppercase;
}

.tk-role-reel span {
	display: block;
	animation: tk-role 6s cubic-bezier(.87, .01, .13, 1) infinite;
}

.tk-role-reel b {
	display: block;
	height: 1.1em;
	font-weight: inherit;
}

.tk-hero__copy p {
	max-width: 500px;
	margin: 30px 0 0;
	color: var(--tk-muted);
	font-size: 22.5px;
}

.tk-hero__image {
	position: relative;
	min-height: 420px;
	margin: 0;
	overflow: hidden;
	background: var(--tk-card);
}

.tk-hero__image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center top;
	filter: contrast(1.04) saturate(0.96);
}

.tk-reel,
.tk-music,
.tk-link-grid-section,
.tk-site-footer {
	padding: 80px 32px;
	border-top: 1px solid var(--tk-line);
}

.tk-section-heading {
	margin-bottom: 34px;
}

.tk-section-heading--split {
	display: flex;
	justify-content: space-between;
	gap: 18px;
	align-items: baseline;
}

.tk-section-heading h2 {
	font-size: clamp(53px, 8.8vw, 132px);
}

.tk-section-heading em {
	color: var(--tk-accent);
	font-style: italic;
}

.tk-accent-text {
	color: var(--tk-accent);
}

.tk-video {
	position: relative;
	aspect-ratio: 16 / 9;
	overflow: hidden;
	border: 1px solid var(--tk-line);
	background: #000;
}

.tk-video iframe {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	border: 0;
}

.tk-reel__meta {
	display: flex;
	justify-content: space-between;
	gap: 16px;
	margin-top: 16px;
	color: var(--tk-muted);
	font-family: var(--tk-mono);
	font-size: 16.5px;
	letter-spacing: 0.16em;
	text-transform: uppercase;
}

.tk-reel__meta a {
	color: var(--tk-fg);
	border-bottom: 1px solid var(--tk-line);
}

.tk-roles {
	padding: 42px 32px;
	border-top: 1px solid var(--tk-line);
	border-bottom: 1px solid var(--tk-line);
}

.tk-roles__grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	margin-top: 24px;
}

.tk-role-card {
	padding: 32px 24px 32px 0;
}

.tk-role-card + .tk-role-card {
	padding-left: 24px;
	border-left: 1px solid var(--tk-line);
}

.tk-number {
	color: var(--tk-muted);
	font-family: var(--tk-mono);
	font-size: 15px;
	letter-spacing: 0.2em;
	text-transform: uppercase;
}

.tk-role-card h2,
.tk-release-card h3,
.tk-link-grid strong,
.tk-footer-grid h3 {
	margin: 10px 0;
	font-family: var(--tk-display);
	font-weight: var(--tk-display-weight);
	line-height: 0.95;
	letter-spacing: 0;
	text-transform: uppercase;
}

.tk-role-card h2 {
	font-size: clamp(46px, 6.6vw, 101px);
}

.tk-role-card p {
	margin: 0;
	color: var(--tk-muted);
	font-size: 21px;
}

.tk-music__headline {
	max-width: none;
	margin-bottom: 40px;
	font-size: clamp(53px, 9.9vw, 163px);
}

.tk-music__headline .tk-accent-text {
	display: inline-block;
	white-space: nowrap;
}

.tk-release-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(min(100%, 420px), 1fr));
	gap: 0;
	border: 1px solid var(--tk-line);
	border-right: 0;
	border-bottom: 0;
	background: var(--tk-bg);
}

.tk-release-card {
	display: flex;
	flex-direction: column;
	gap: 16px;
	padding: 20px;
	border-right: 1px solid var(--tk-line);
	border-bottom: 1px solid var(--tk-line);
	background: var(--tk-bg);
}

.tk-release-card__image {
	position: relative;
	display: block;
	aspect-ratio: 1 / 1;
	overflow: hidden;
	background: var(--tk-card);
}

.tk-release-card__image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 500ms cubic-bezier(.2, .8, .2, 1);
}

.tk-release-card:hover img {
	transform: scale(1.06);
}

.tk-release-card__image span {
	position: absolute;
	top: 8px;
	left: 8px;
	padding: 4px 8px;
	background: var(--badge-color);
	color: #0a0908;
	font-family: var(--tk-mono);
	font-size: 15px;
	font-weight: 800;
	letter-spacing: 0.16em;
	text-transform: uppercase;
}

.tk-release-card h3 {
	font-size: 31px;
}

.tk-platforms {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	margin-top: auto;
}

.tk-platforms span {
	padding: 4px 8px;
	border: 1px solid var(--tk-line);
	color: var(--tk-muted);
	font-family: var(--tk-mono);
	font-size: 15px;
	letter-spacing: 0.14em;
	text-transform: uppercase;
}

.tk-bio {
	padding: 80px 32px;
	border-top: 1px solid var(--tk-line);
}

.tk-bio__inner {
	display: grid;
	grid-template-columns: minmax(220px, 1fr) minmax(0, 2fr);
	gap: 48px;
}

.tk-bio__links {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 10px;
	color: var(--tk-muted);
	font-family: var(--tk-mono);
	font-size: 16.5px;
	letter-spacing: 0.18em;
	text-transform: uppercase;
}

.tk-bio__links .tk-tag {
	margin-bottom: 8px;
}

.tk-bio blockquote {
	margin: 0;
	font-family: var(--tk-display);
	font-size: clamp(31px, 4vw, 62px);
	font-weight: var(--tk-display-weight);
	line-height: 1.08;
	letter-spacing: 0;
	text-transform: uppercase;
}

.tk-bio__columns {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 32px;
	max-width: 760px;
	margin-top: 24px;
}

.tk-bio__columns p {
	margin: 0;
	color: var(--tk-muted);
}

.tk-shows {
	padding-top: 60px;
	border-top: 3px double var(--tk-line);
}

.tk-shows__intro {
	padding: 0;
}

.tk-shows__intro h2 {
	margin-bottom: 34px;
	font-size: clamp(48px, 8.8vw, 132px);
}

.tk-gallery {
	display: grid;
	grid-template-columns: repeat(12, 1fr);
	grid-auto-rows: 92px;
	gap: 12px;
	padding: 8px 0 56px;
	border-bottom: 1px solid var(--tk-line);
}

.tk-gallery figure {
	position: relative;
	margin: 0;
	overflow: hidden;
	border: 1px solid var(--tk-line);
	background: #000;
}

.tk-gallery figure:nth-child(1) {
	grid-column: span 6;
	grid-row: span 6;
}

.tk-gallery figure:nth-child(2),
.tk-gallery figure:nth-child(3) {
	grid-column: span 3;
	grid-row: span 3;
}

.tk-gallery figure:nth-child(4) {
	grid-column: span 4;
	grid-row: span 3;
}

.tk-gallery figure:nth-child(5) {
	grid-column: span 2;
	grid-row: span 3;
}

.tk-gallery img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	filter: grayscale(0.25) contrast(1.05);
	transition: transform 500ms ease, filter 240ms ease;
}

.tk-gallery figure:hover img {
	transform: scale(1.04);
	filter: grayscale(0) contrast(1.05);
}

.tk-gallery figcaption {
	position: absolute;
	inset: auto 0 0;
	display: flex;
	justify-content: space-between;
	gap: 12px;
	padding: 24px 10px 8px;
	background: linear-gradient(to top, rgba(0, 0, 0, 0.72), rgba(0, 0, 0, 0));
	color: #fff;
	font-family: var(--tk-mono);
	font-size: 15px;
	letter-spacing: 0.18em;
	text-transform: uppercase;
}

.tk-show-table-wrap {
	overflow-x: auto;
	padding-bottom: 56px;
}

.tk-show-table {
	width: 100%;
	min-width: 760px;
	border-collapse: collapse;
}

.tk-show-table th {
	padding: 10px 12px;
	border-bottom: 1px solid var(--tk-line);
	color: var(--tk-muted);
	font-family: var(--tk-mono);
	font-size: 15px;
	font-weight: 500;
	letter-spacing: 0.2em;
	text-align: left;
	text-transform: uppercase;
}

.tk-show-table th:first-child,
.tk-show-table td:first-child {
	padding-left: 12px;
	width: 172px;
	min-width: 172px;
}

.tk-show-table th:last-child,
.tk-show-table td:last-child {
	padding-right: 12px;
	text-align: right;
}

.tk-show-table td {
	padding: 18px 12px;
	border-bottom: 1px solid var(--tk-line);
	transition: background 180ms ease, color 180ms ease;
}

.tk-show-table tr:hover td {
	background: var(--tk-accent);
	color: #0a0908;
}

.tk-show-table strong,
.tk-show-table td:nth-child(2) {
	font-family: var(--tk-display);
	font-size: 24px;
	font-weight: var(--tk-display-weight);
	line-height: 1;
	text-transform: uppercase;
}

.tk-show-table td:first-child strong {
	white-space: nowrap;
}

.tk-show-table td:first-child span {
	display: block;
	margin-top: 3px;
	color: currentColor;
	font-family: var(--tk-mono);
	font-size: 16.5px;
	opacity: 0.7;
}

.tk-show-table td:last-child span {
	display: inline-block;
	padding: 4px 8px;
	border: 1px solid currentColor;
	font-family: var(--tk-mono);
	font-size: 15px;
	letter-spacing: 0.2em;
	text-transform: uppercase;
}

.tk-link-grid-section {
	padding-top: 80px;
	padding-bottom: 80px;
}

.tk-link-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(min(100%, 260px), 1fr));
	gap: 0;
	margin-top: 32px;
	border-top: 1px solid var(--tk-line);
	border-left: 1px solid var(--tk-line);
	background: var(--tk-bg);
}

.tk-link-grid a {
	display: flex;
	flex-direction: column;
	container-type: inline-size;
	min-height: 140px;
	padding: 24px;
	border-right: 1px solid var(--tk-line);
	border-bottom: 1px solid var(--tk-line);
	background: var(--tk-bg);
	transition: background 180ms ease, color 180ms ease;
}

.tk-link-grid a:hover {
	background: var(--tk-accent);
	color: #0a0908;
}

.tk-link-grid strong {
	max-width: 100%;
	margin: 14px 0 0;
	overflow: hidden;
	font-size: clamp(30px, 18cqw, 48px);
	white-space: nowrap;
}

.tk-link-grid small {
	margin-top: auto;
	color: currentColor;
	font-size: 19.5px;
	opacity: 0.74;
}

.tk-footer-cta {
	padding: 80px 32px 0;
	border-top: 1px solid var(--tk-line);
}

.tk-footer-cta h2 {
	max-width: 1180px;
	margin: 0 0 48px;
	font-family: var(--tk-display);
	font-weight: var(--tk-display-weight);
	letter-spacing: 0;
	line-height: 0.84;
	text-transform: uppercase;
	font-size: clamp(53px, 9.9vw, 163px);
}

.tk-footer-cta h2 .tk-accent-text {
	display: inline-block;
	white-space: nowrap;
}

.tk-footer-cta h2::after {
	content: "";
	display: block;
	width: min(360px, 60vw);
	height: 0.08em;
	margin-top: 0.1em;
	background: var(--tk-accent);
}

.tk-site-footer {
	padding-top: 48px;
}

.tk-site-footer--compact {
	border-top: 1px solid var(--tk-line);
}

.tk-site-footer h2 {
	max-width: 1180px;
	font-size: clamp(70px, 14.3vw, 242px);
}

.tk-site-footer h2::after {
	content: "";
	display: block;
	width: min(360px, 60vw);
	height: 0.08em;
	margin-top: 0.1em;
	background: var(--tk-accent);
}

.tk-footer-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
	gap: 32px;
	margin-top: 48px;
	padding-top: 32px;
	border-top: 1px solid var(--tk-line);
}

.tk-site-footer--compact .tk-footer-grid {
	margin-top: 0;
	padding-top: 0;
	border-top: 0;
}

.tk-site-footer--home .tk-footer-grid {
	margin-top: 0;
	padding-top: 0;
	border-top: 0;
}

.tk-footer-grid h3 {
	font-size: 26px;
}

.tk-footer-grid a,
.tk-footer-grid span {
	display: block;
	color: var(--tk-muted);
	font-size: 21px;
	line-height: 1.8;
}

.tk-footer-menu {
	margin-top: 40px;
	padding-top: 18px;
	border-top: 1px solid var(--tk-line);
}

.tk-footer-menu__list {
	display: flex;
	flex-wrap: wrap;
	gap: 12px 28px;
	margin: 0;
	padding: 0;
	font-family: var(--tk-mono);
	font-size: 15px;
	letter-spacing: 0.16em;
	list-style: none;
	text-transform: uppercase;
}

.tk-footer-menu__list a {
	color: var(--tk-muted);
	border-bottom: 1px solid transparent;
	transition: border-color 160ms ease, color 160ms ease;
}

.tk-footer-menu__list a:hover {
	color: var(--tk-accent);
	border-color: currentColor;
}

.tk-footer-social {
	grid-column: span 2;
}

.tk-footer-social div {
	display: flex;
	flex-wrap: wrap;
	gap: 6px;
}

.tk-footer-social a {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 42px;
	height: 36px;
	padding: 0 10px;
	border: 1px solid var(--tk-line);
	line-height: 1;
	transition: background 160ms ease, color 160ms ease;
}

.tk-footer-social a:hover {
	background: var(--tk-accent);
	color: #0a0908;
}

.tk-legal {
	display: flex;
	justify-content: space-between;
	gap: 24px;
	margin-top: 40px;
	padding-top: 16px;
	border-top: 1px solid var(--tk-line);
	color: var(--tk-muted);
	font-family: var(--tk-mono);
	font-size: 15px;
	letter-spacing: 0.12em;
}

.tk-standard-content {
	max-width: 1120px;
	margin: 0 auto;
	padding: 56px 32px 72px;
}

.tk-standard-content h1 {
	font-family: var(--tk-display);
	font-size: clamp(53px, 9.9vw, 132px);
	line-height: 0.9;
	text-transform: uppercase;
}

.tk-entry-content {
	color: var(--tk-muted);
	font-size: 1.5rem;
}

.tk-entry-content h2,
.tk-entry-content h3,
.tk-entry-content h4 {
	color: var(--tk-fg);
	font-family: var(--tk-display);
	font-weight: var(--tk-display-weight);
	line-height: 0.95;
	text-transform: uppercase;
}

.tk-entry-content h2 {
	font-size: clamp(40px, 5.9vw, 88px);
}

.tk-entry-content h3 {
	font-size: clamp(31px, 4.4vw, 62px);
}

.tk-entry-content a {
	color: var(--tk-fg);
	border-bottom: 1px solid var(--tk-accent);
}

@keyframes tk-marquee {
	from {
		transform: translate3d(0, 0, 0);
	}
	to {
		transform: translate3d(-50%, 0, 0);
	}
}

@keyframes tk-role {
	0%, 18% {
		transform: translateY(0);
	}
	28%, 46% {
		transform: translateY(-1.1em);
	}
	56%, 74% {
		transform: translateY(-2.2em);
	}
	84%, 100% {
		transform: translateY(-3.3em);
	}
}

@media (max-width: 960px) {
	body.admin-bar .tk-topbar {
		top: 46px;
	}

	.tk-header {
		grid-template-columns: 1fr;
		gap: 12px;
		padding: 14px 20px;
	}

	.tk-header__location {
		justify-content: flex-start;
	}

	.tk-menu {
		flex-wrap: wrap;
		gap: 12px 18px;
	}

	.tk-hero {
		padding: 32px 20px 24px;
	}

	.tk-hero .tk-section-inner {
		grid-template-columns: 1fr;
	}

	.tk-hero__image {
		min-height: auto;
		aspect-ratio: 4 / 5;
	}

	.tk-reel,
	.tk-music,
	.tk-link-grid-section,
	.tk-site-footer,
	.tk-footer-cta,
	.tk-bio,
	.tk-roles {
		padding-right: 20px;
		padding-left: 20px;
	}

	.tk-roles__grid,
	.tk-bio__inner,
	.tk-bio__columns {
		grid-template-columns: 1fr;
	}

	.tk-role-card,
	.tk-role-card + .tk-role-card {
		padding: 26px 0;
		border-left: 0;
		border-top: 1px solid var(--tk-line);
	}

	.tk-gallery {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		grid-auto-rows: auto;
	}

	.tk-gallery figure,
	.tk-gallery figure:nth-child(n) {
		grid-column: auto;
		grid-row: auto;
		aspect-ratio: 4 / 5;
	}

}

@media (max-width: 620px) {
	.tk-hero__title,
	.tk-site-footer h2 {
		font-size: clamp(64px, 20.9vw, 106px);
	}

	.tk-footer-cta h2 {
		font-size: clamp(48px, 16vw, 120px);
	}

	.tk-section-heading--split,
	.tk-reel__meta,
	.tk-legal {
		flex-direction: column;
		align-items: flex-start;
	}

	.tk-gallery {
		grid-template-columns: 1fr;
	}

	.tk-footer-social {
		grid-column: span 1;
	}

	.tk-show-table-wrap {
		overflow-x: visible;
	}

	.tk-show-table,
	.tk-show-table thead,
	.tk-show-table tbody,
	.tk-show-table tr,
	.tk-show-table td {
		display: block;
		width: 100%;
		min-width: 0;
	}

	.tk-show-table {
		min-width: 0;
	}

	.tk-show-table thead {
		position: absolute;
		width: 1px;
		height: 1px;
		overflow: hidden;
		clip: rect(0 0 0 0);
		white-space: nowrap;
	}

	.tk-show-table tr {
		padding: 22px 18px;
		border-bottom: 1px solid var(--tk-line);
		transition: background 180ms ease, color 180ms ease;
	}

	.tk-show-table tr:hover {
		background: var(--tk-accent);
		color: #0a0908;
	}

	.tk-show-table td,
	.tk-show-table th:first-child,
	.tk-show-table td:first-child,
	.tk-show-table th:last-child,
	.tk-show-table td:last-child {
		width: 100%;
		min-width: 0;
		padding: 0;
		border-bottom: 0;
		text-align: left;
	}

	.tk-show-table tr:hover td {
		background: transparent;
		color: inherit;
	}

	.tk-show-table td:first-child {
		margin-bottom: 14px;
	}

	.tk-show-table td:nth-child(2) {
		margin-bottom: 16px;
		font-size: clamp(34px, 12vw, 52px);
	}

	.tk-show-table td[data-label] {
		display: grid;
		grid-template-columns: 92px minmax(0, 1fr);
		gap: 16px;
		align-items: start;
		margin-top: 8px;
		color: var(--tk-fg);
		font-size: 18px;
	}

	.tk-show-table tr:hover td[data-label] {
		color: inherit;
	}

	.tk-show-table td[data-label]::before {
		content: attr(data-label);
		color: var(--tk-muted);
		font-family: var(--tk-mono);
		font-size: 12px;
		letter-spacing: 0.18em;
		text-transform: uppercase;
	}

	.tk-show-table tr:hover td[data-label]::before {
		color: currentColor;
		opacity: 0.7;
	}

	.tk-show-table td:last-child span {
		justify-self: start;
	}
}

@media (prefers-reduced-motion: reduce) {
	html {
		scroll-behavior: auto;
	}

	*,
	*::before,
	*::after {
		animation-duration: 0.001ms !important;
		animation-iteration-count: 1 !important;
		scroll-behavior: auto !important;
		transition-duration: 0.001ms !important;
	}
}
