:root {
	--tv-accent: #d81f3d;
	--tv-ink: #15161a;
	--tv-muted: #6d7280;
	--tv-line: #e6e8ee;
	--tv-panel: #f7f8fb;
	--tv-surface: #ffffff;
	--tv-max: 1180px;
	--tv-radius: 8px;
}

* {
	box-sizing: border-box;
}

body {
	margin: 0;
	color: var(--tv-ink);
	background: var(--tv-surface);
	font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
	font-size: 17px;
	line-height: 1.65;
	text-rendering: optimizeLegibility;
}

a {
	color: inherit;
	text-decoration-color: color-mix(in srgb, var(--tv-accent), transparent 55%);
	text-underline-offset: 0.18em;
}

a:hover,
a:focus {
	color: var(--tv-accent);
}

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

.container {
	width: min(calc(100% - 32px), var(--tv-max));
	margin-inline: auto;
}

.site-main,
.entry-content,
.site-branding,
	.hero-story,
	.featured-show__body,
	.archive-lead-story__body,
	.show-library-section,
	.show-library-term,
	.show-library-mini,
	.section-heading > *,
	.post-card,
	.post-card__body,
.entry-meta,
.widget,
.article-sidebar {
	min-width: 0;
}

h1,
h2,
h3,
p {
	overflow-wrap: break-word;
}

.screen-reader-text,
.skip-link {
	position: absolute;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	white-space: nowrap;
	border: 0;
}

.skip-link:focus {
	z-index: 1000;
	top: 12px;
	left: 12px;
	width: auto;
	height: auto;
	padding: 10px 14px;
	clip: auto;
	background: var(--tv-ink);
	color: #fff;
}

.site-header {
	position: sticky;
	z-index: 50;
	top: 0;
	background: rgba(255, 255, 255, 0.95);
	border-bottom: 1px solid var(--tv-line);
	backdrop-filter: blur(16px);
}

.header-inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 24px;
	min-height: 76px;
}

.site-title {
	color: var(--tv-ink);
	font-size: 1.45rem;
	font-weight: 850;
	letter-spacing: 0;
	text-decoration: none;
}

.site-description {
	margin: 0;
	color: var(--tv-muted);
	font-size: 0.82rem;
	line-height: 1.2;
}

.custom-logo {
	max-height: 54px;
	width: auto;
}

.site-branding {
	overflow: hidden;
}

.site-branding img {
	max-width: min(220px, 100%);
}

.primary-nav ul,
.site-footer ul {
	display: flex;
	align-items: center;
	gap: 18px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.primary-nav a,
.site-footer a {
	text-decoration: none;
	font-size: 0.94rem;
	font-weight: 700;
}

.social-links {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
}

.social-links a {
	color: #fff;
}

.menu-toggle {
	display: none;
	padding: 9px 12px;
	border: 1px solid var(--tv-line);
	border-radius: var(--tv-radius);
	background: #fff;
	color: var(--tv-ink);
	font: inherit;
	font-weight: 750;
}

.breadcrumbs {
	width: min(calc(100% - 32px), var(--tv-max));
	margin: 18px auto 0;
	color: var(--tv-muted);
	font-size: 0.86rem;
}

.breadcrumbs a {
	text-decoration: none;
}

.breadcrumbs span,
.breadcrumbs a {
	margin-right: 8px;
}

.home-hero {
	padding: 46px 0 54px;
	border-bottom: 1px solid var(--tv-line);
	background: linear-gradient(180deg, #fff 0%, #f7f8fb 100%);
}

.hero-grid {
	display: grid;
	grid-template-columns: minmax(0, 0.95fr) minmax(320px, 1.05fr);
	gap: 36px;
	align-items: center;
}

.hero-story h1 {
	margin: 12px 0 16px;
	font-size: clamp(2.45rem, 5vw, 5rem);
	line-height: 0.96;
	letter-spacing: 0;
}

.hero-story h1 a,
.post-card h2 a {
	text-decoration: none;
}

.hero-story p {
	max-width: 62ch;
	margin: 0 0 22px;
	color: #3a3e47;
	font-size: 1.08rem;
}

.hero-media {
	overflow: hidden;
	aspect-ratio: 16 / 10;
	border-radius: var(--tv-radius) var(--tv-radius) 0 0;
	background: #dfe3eb;
}

.hero-media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	border-radius: var(--tv-radius) var(--tv-radius) 0 0;
}

.section-block,
.archive-layout,
.not-found {
	padding: 48px 0;
}

.section-block--tv {
	padding-top: 42px;
	padding-bottom: 10px;
}

.section-block--category {
	padding-top: 42px;
	padding-bottom: 18px;
}

.section-description {
	max-width: 62ch;
	margin: -12px 0 22px;
	color: var(--tv-muted);
}

.featured-show-band {
	padding: 46px 0;
	border-bottom: 1px solid var(--tv-line);
	background: var(--tv-panel);
}

.featured-show {
	display: grid;
	grid-template-columns: minmax(280px, 0.85fr) minmax(0, 1.15fr);
	gap: 30px;
	align-items: center;
}

.featured-show__media {
	overflow: hidden;
	aspect-ratio: 16 / 10;
	border-radius: var(--tv-radius) var(--tv-radius) 0 0;
	background: #dfe3eb;
}

.featured-show__media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	border-radius: var(--tv-radius) var(--tv-radius) 0 0;
}

.featured-show__label {
	color: var(--tv-accent);
	font-size: 0.78rem;
	font-weight: 900;
	text-transform: uppercase;
}

.featured-show h2 {
	margin: 8px 0 12px;
	font-size: clamp(2rem, 4vw, 3.4rem);
	line-height: 1;
	letter-spacing: 0;
}

.featured-show h2 a,
.featured-show__cta {
	text-decoration: none;
}

.featured-show p {
	max-width: 62ch;
	margin: 0 0 18px;
	color: #3a3e47;
}

.featured-show__meta {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	margin-bottom: 18px;
}

.featured-show__meta span {
	padding: 5px 9px;
	border: 1px solid var(--tv-line);
	border-radius: 999px;
	background: #fff;
	color: var(--tv-muted);
	font-size: 0.84rem;
	font-weight: 800;
}

.featured-show__cta {
	display: inline-flex;
	padding: 9px 12px;
	border-radius: var(--tv-radius);
	background: var(--tv-accent);
	color: #fff;
	font-weight: 850;
}

.section-heading,
.archive-header {
	margin-bottom: 24px;
}

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

.section-heading a {
	flex: 0 0 auto;
}

.section-heading h2,
.archive-header h1,
.not-found h1 {
	margin: 0;
	font-size: clamp(2rem, 4vw, 3.35rem);
	line-height: 1;
	letter-spacing: 0;
}

.archive-header p {
	max-width: 62ch;
	margin: 12px 0 0;
	color: var(--tv-muted);
}

.archive-term-links {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	margin-top: 18px;
}

.archive-term-links a {
	padding: 5px 9px;
	border: 1px solid var(--tv-line);
	border-radius: 999px;
	color: var(--tv-muted);
	font-size: 0.86rem;
	font-weight: 800;
	text-decoration: none;
}

.tv-archive-summary {
	display: grid;
	grid-template-columns: minmax(220px, 0.8fr) minmax(0, 1.2fr);
	gap: 18px;
	margin-top: 22px;
}

.tv-archive-stats,
.tv-archive-links {
	border: 1px solid var(--tv-line);
	border-radius: var(--tv-radius);
	background: #fff;
}

.tv-archive-stats {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	overflow: hidden;
}

.tv-archive-stats div {
	padding: 14px;
	border-right: 1px solid var(--tv-line);
}

.tv-archive-stats div:last-child {
	border-right: 0;
}

.tv-archive-stats span,
.tv-archive-links span {
	display: block;
	color: var(--tv-muted);
	font-size: 0.78rem;
	font-weight: 850;
	text-transform: uppercase;
}

.tv-archive-stats strong {
	display: block;
	margin-top: 3px;
	font-size: 1.45rem;
	line-height: 1;
}

.tv-archive-links {
	display: grid;
	gap: 1px;
	overflow: hidden;
	background: var(--tv-line);
}

.tv-archive-links div {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	align-items: center;
	padding: 12px;
	background: #fff;
}

.tv-archive-links span {
	flex: 0 0 90px;
}

.tv-archive-links a {
	padding: 4px 8px;
	border: 1px solid var(--tv-line);
	border-radius: 999px;
	color: var(--tv-muted);
	font-size: 0.84rem;
	font-weight: 800;
	text-decoration: none;
}

.show-library-sections {
	display: grid;
	gap: 22px;
	margin: 28px 0 34px;
}

.show-library-section {
	display: grid;
	gap: 14px;
	min-width: 0;
	padding: 18px;
	border: 1px solid var(--tv-line);
	border-radius: var(--tv-radius);
	background: var(--tv-panel);
}

.show-library-section__header h2,
.show-library-heading h2 {
	margin: 0;
	font-size: 1.35rem;
	line-height: 1.15;
}

.show-library-term-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 14px;
}

.show-library-term {
	display: grid;
	gap: 12px;
	min-width: 0;
	padding: 14px;
	border: 1px solid var(--tv-line);
	border-radius: var(--tv-radius);
	background: #fff;
}

.show-library-term__top {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
}

.show-library-term__top h3 {
	margin: 0;
	font-size: 1rem;
	line-height: 1.2;
}

.show-library-term__top a,
.show-library-mini {
	text-decoration: none;
}

.show-library-term__top > a {
	flex: 0 0 auto;
	color: var(--tv-accent);
	font-size: 0.82rem;
	font-weight: 850;
}

.show-library-term__shows {
	display: grid;
	gap: 10px;
}

.show-library-mini {
	display: grid;
	grid-template-columns: 58px minmax(0, 1fr);
	gap: 10px;
	align-items: center;
	min-width: 0;
}

.show-library-mini__media {
	display: block;
	overflow: hidden;
	aspect-ratio: 1;
	border-radius: var(--tv-radius) var(--tv-radius) 0 0;
	background: #dfe3eb;
}

.show-library-mini__media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	border-radius: var(--tv-radius) var(--tv-radius) 0 0;
}

.show-library-mini strong,
.show-library-mini em {
	display: block;
	min-width: 0;
	overflow-wrap: break-word;
}

.show-library-mini strong {
	font-size: 0.94rem;
	line-height: 1.2;
}

.show-library-mini em {
	margin-top: 2px;
	color: var(--tv-muted);
	font-size: 0.78rem;
	font-style: normal;
	font-weight: 750;
	line-height: 1.25;
}

.show-library-heading {
	margin-top: 12px;
}

.search-summary {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 1px;
	overflow: hidden;
	margin-top: 18px;
	border: 1px solid var(--tv-line);
	border-radius: var(--tv-radius);
	background: var(--tv-line);
}

.search-summary div {
	padding: 14px;
	background: #fff;
}

.search-summary span {
	display: block;
	color: var(--tv-muted);
	font-size: 0.78rem;
	font-weight: 850;
	text-transform: uppercase;
}

.search-summary strong {
	display: block;
	margin-top: 3px;
	font-size: 1.45rem;
	line-height: 1;
}

.tv-taxonomy-panel {
	display: grid;
	grid-template-columns: minmax(240px, 0.9fr) minmax(0, 1.1fr);
	gap: 18px;
	margin-top: 22px;
}

.tv-taxonomy-panel__stats,
.tv-taxonomy-panel__links {
	border: 1px solid var(--tv-line);
	border-radius: var(--tv-radius);
	background: #fff;
}

.tv-taxonomy-panel__stats {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	overflow: hidden;
}

.tv-taxonomy-panel__stats div {
	padding: 14px;
	border-right: 1px solid var(--tv-line);
}

.tv-taxonomy-panel__stats div:last-child {
	border-right: 0;
}

.tv-taxonomy-panel__stats span,
.tv-taxonomy-panel__links span {
	display: block;
	color: var(--tv-muted);
	font-size: 0.78rem;
	font-weight: 850;
	text-transform: uppercase;
}

.tv-taxonomy-panel__stats strong {
	display: block;
	margin-top: 3px;
	font-size: 1.45rem;
	line-height: 1;
}

.tv-taxonomy-panel__links {
	display: grid;
	gap: 1px;
	overflow: hidden;
	background: var(--tv-line);
}

.tv-taxonomy-panel__links div {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	align-items: center;
	padding: 12px;
	background: #fff;
}

.tv-taxonomy-panel__links span {
	flex: 0 0 112px;
}

.tv-taxonomy-panel__links a {
	padding: 4px 8px;
	border: 1px solid var(--tv-line);
	border-radius: 999px;
	color: var(--tv-muted);
	font-size: 0.84rem;
	font-weight: 800;
	text-decoration: none;
}

.archive-lead-story {
	display: grid;
	grid-template-columns: minmax(320px, 1.05fr) minmax(0, 0.95fr);
	gap: 28px;
	align-items: center;
	margin-bottom: 28px;
	padding-bottom: 28px;
	border-bottom: 1px solid var(--tv-line);
}

.archive-lead-story__media {
	overflow: hidden;
	aspect-ratio: 16 / 10;
	border-radius: var(--tv-radius) var(--tv-radius) 0 0;
	background: var(--tv-panel);
}

.archive-lead-story__media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	border-radius: var(--tv-radius) var(--tv-radius) 0 0;
}

.archive-lead-story h2 {
	margin: 12px 0 12px;
	font-size: clamp(2rem, 4vw, 3.35rem);
	line-height: 1;
	letter-spacing: 0;
}

.archive-lead-story h2 a {
	text-decoration: none;
}

.archive-lead-story p {
	margin: 0 0 18px;
	color: #3a3e47;
}

.archive-lead-story .post-card-meta {
	margin-top: 0;
	padding-top: 0;
}

.post-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 22px;
}

.post-card {
	display: flex;
	flex-direction: column;
	min-width: 0;
	overflow: hidden;
	border: 1px solid var(--tv-line);
	border-radius: var(--tv-radius);
	background: #fff;
}

.post-card__media {
	overflow: hidden;
	aspect-ratio: 16 / 10;
	border-radius: var(--tv-radius) var(--tv-radius) 0 0;
	background: var(--tv-panel);
}

.post-card__media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	border-radius: var(--tv-radius) var(--tv-radius) 0 0;
}

.post-card__body {
	display: flex;
	flex: 1;
	flex-direction: column;
	padding: 18px;
}

.category-pill {
	align-self: flex-start;
	padding: 4px 8px;
	border-radius: 999px;
	background: color-mix(in srgb, var(--tv-accent), transparent 88%);
	color: var(--tv-accent);
	font-size: 0.76rem;
	font-weight: 850;
	letter-spacing: 0.06em;
	text-decoration: none;
	text-transform: uppercase;
}

.card-labels {
	display: flex;
	flex-wrap: wrap;
	gap: 7px;
	align-items: center;
}

.card-labels .category-pill {
	align-self: auto;
}

.story-type-pill,
.score-pill {
	display: inline-flex;
	align-items: center;
	min-height: 24px;
	padding: 4px 8px;
	border-radius: 999px;
	font-size: 0.76rem;
	font-weight: 850;
	line-height: 1;
	text-transform: uppercase;
}

.story-type-pill {
	border: 1px solid var(--tv-line);
	color: var(--tv-muted);
}

.story-type-pill--review {
	border-color: color-mix(in srgb, var(--tv-accent), transparent 55%);
	color: var(--tv-accent);
}

.story-type-pill--recap {
	border-color: #b68a2d;
	color: #7a5600;
}

.score-pill {
	background: var(--tv-ink);
	color: #fff;
}

.post-card h2 {
	margin: 12px 0 8px;
	font-size: 1.25rem;
	line-height: 1.18;
	letter-spacing: 0;
}

.post-card p {
	margin: 0 0 16px;
	color: var(--tv-muted);
	font-size: 0.95rem;
}

.post-card-meta {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	margin-top: auto;
	padding-top: 2px;
}

.post-card-meta span {
	padding: 4px 8px;
	border: 1px solid var(--tv-line);
	border-radius: 999px;
	color: var(--tv-muted);
	font-size: 0.8rem;
	font-weight: 800;
	line-height: 1.2;
}

.entry-meta {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	align-items: center;
	margin-top: auto;
	color: var(--tv-muted);
	font-size: 0.84rem;
}

.entry-meta a {
	color: inherit;
}

.article-header {
	padding: 42px 0 0;
}

.article-header-inner {
	max-width: 860px;
}

.article-header h1 {
	margin: 14px 0 18px;
	font-size: clamp(2.25rem, 6vw, 5rem);
	line-height: 0.98;
	letter-spacing: 0;
}

.article-subtitle {
	max-width: 760px;
	margin: -6px 0 18px;
	color: #3a3e47;
	font-size: 1.18rem;
	line-height: 1.45;
}

.article-featured-image {
	width: min(calc(100% - 32px), 1320px);
	margin: 34px auto 0;
}

.article-featured-image img {
	width: 100%;
	max-height: 680px;
	object-fit: cover;
	border-radius: var(--tv-radius) var(--tv-radius) 0 0;
}

.post-card .post-card__media,
.post-card .post-card__media img,
.related-posts .post-card__media,
.related-posts .post-card__media img {
	border-radius: var(--tv-radius) var(--tv-radius) 0 0 !important;
}

.article-featured-image,
.article-featured-image img {
	overflow: hidden;
	border-radius: var(--tv-radius) var(--tv-radius) 0 0 !important;
}

.article-featured-image figcaption {
	margin-top: 8px;
	color: var(--tv-muted);
	font-size: 0.86rem;
}

.content-layout {
	display: grid;
	grid-template-columns: minmax(0, 760px) 320px;
	gap: 52px;
	align-items: start;
	padding: 42px 0 64px;
}

.content-layout--no-sidebar,
.page-content {
	display: block;
	max-width: 820px;
	padding: 42px 0 64px;
}

.entry-content {
	min-width: 0;
	font-size: 1.08rem;
}

.entry-content > * {
	margin-top: 0;
	margin-bottom: 1.35em;
}

.entry-content h2,
.entry-content h3 {
	line-height: 1.15;
	letter-spacing: 0;
}

.entry-content h2 {
	margin-top: 1.9em;
	font-size: 1.85rem;
}

.entry-content h3 {
	margin-top: 1.6em;
	font-size: 1.35rem;
}

.entry-content blockquote {
	margin-inline: 0;
	padding: 4px 0 4px 22px;
	border-left: 4px solid var(--tv-accent);
	color: #2e333d;
	font-size: 1.2rem;
}

.entry-content img,
.entry-content .wp-block-image img {
	border-radius: var(--tv-radius);
}

.entry-content iframe,
.entry-content video,
.entry-content embed,
.entry-content object {
	max-width: 100%;
}

.entry-content table,
.entry-content pre {
	display: block;
	max-width: 100%;
	overflow-x: auto;
}

.spoiler-notice,
.story-info-panel,
.review-box {
	margin-bottom: 24px;
	border-radius: var(--tv-radius);
}

.spoiler-notice {
	display: flex;
	flex-wrap: wrap;
	gap: 8px 12px;
	align-items: center;
	padding: 14px 16px;
	border: 1px solid #f1c35d;
	background: #fff7e3;
	color: #553b00;
}

.spoiler-notice--major {
	border-color: color-mix(in srgb, var(--tv-accent), #000 12%);
	background: color-mix(in srgb, var(--tv-accent), #fff 88%);
	color: #4d0714;
}

.story-info-panel {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 1px;
	overflow: hidden;
	border: 1px solid var(--tv-line);
	background: var(--tv-line);
}

.story-info-panel div {
	padding: 13px 14px;
	background: #fff;
}

.story-info-panel span {
	display: block;
	color: var(--tv-muted);
	font-size: 0.78rem;
	font-weight: 800;
	text-transform: uppercase;
}

.story-info-panel strong {
	display: block;
	margin-top: 2px;
	font-size: 0.98rem;
	line-height: 1.25;
}

.story-info-panel__wide {
	grid-column: 1 / -1;
}

.linked-show-card {
	display: grid;
	grid-template-columns: 180px minmax(0, 1fr);
	gap: 18px;
	margin-bottom: 24px;
	overflow: hidden;
	border: 1px solid var(--tv-line);
	border-radius: var(--tv-radius);
	background: #fff;
}

.linked-show-card__media {
	display: block;
	min-height: 100%;
	background: var(--tv-panel);
}

.linked-show-card__media img {
	width: 100%;
	height: 100%;
	min-height: 180px;
	object-fit: cover;
	border-radius: var(--tv-radius) 0 0 0;
}

.linked-show-card__body {
	padding: 18px 18px 18px 0;
}

.linked-show-card__eyebrow {
	color: var(--tv-accent);
	font-size: 0.76rem;
	font-weight: 900;
	text-transform: uppercase;
}

.linked-show-card h2 {
	margin: 6px 0 8px;
	font-size: 1.35rem;
	line-height: 1.15;
}

.linked-show-card h2 a,
.linked-show-card__cta {
	text-decoration: none;
}

.linked-show-card p {
	margin: 0 0 12px;
	color: var(--tv-muted);
	font-size: 0.95rem;
	line-height: 1.5;
}

.linked-show-card__meta {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	margin-bottom: 14px;
}

.linked-show-card__meta span {
	padding: 4px 8px;
	border: 1px solid var(--tv-line);
	border-radius: 999px;
	color: var(--tv-muted);
	font-size: 0.8rem;
	font-weight: 800;
}

.linked-show-card__cta {
	display: inline-flex;
	color: var(--tv-accent);
	font-weight: 850;
}

.article-continue-panel {
	margin: 32px 0;
	overflow: hidden;
	border: 1px solid var(--tv-line);
	border-radius: var(--tv-radius);
	background: #fff;
}

.article-continue-panel__header {
	padding: 18px;
	border-bottom: 1px solid var(--tv-line);
	background: var(--tv-panel);
}

.article-continue-panel__header span {
	display: block;
	color: var(--tv-muted);
	font-size: 0.78rem;
	font-weight: 850;
	text-transform: uppercase;
}

.article-continue-panel__header h2 {
	margin: 3px 0 0;
	font-size: 1.4rem;
	line-height: 1.1;
}

.article-continue-panel__grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 1px;
	background: var(--tv-line);
}

.article-continue-card {
	display: block;
	min-width: 0;
	padding: 16px;
	background: #fff;
	text-decoration: none;
}

.article-continue-card span,
.article-continue-card strong,
.article-continue-card em {
	display: block;
	min-width: 0;
	overflow-wrap: break-word;
}

.article-continue-card span {
	color: var(--tv-muted);
	font-size: 0.78rem;
	font-weight: 850;
	text-transform: uppercase;
}

.article-continue-card strong {
	margin-top: 5px;
	font-size: 1rem;
	line-height: 1.25;
}

.article-continue-card em {
	margin-top: 7px;
	color: var(--tv-muted);
	font-size: 0.84rem;
	font-style: normal;
	font-weight: 750;
	line-height: 1.3;
}

.review-box {
	display: grid;
	grid-template-columns: 140px minmax(0, 1fr);
	gap: 18px;
	padding: 18px;
	border: 1px solid color-mix(in srgb, var(--tv-accent), transparent 55%);
	background: color-mix(in srgb, var(--tv-accent), #fff 94%);
}

.review-score {
	display: grid;
	place-items: center;
	align-self: start;
	aspect-ratio: 1;
	border-radius: var(--tv-radius);
	background: var(--tv-ink);
	color: #fff;
	text-align: center;
}

.review-score strong {
	display: block;
	font-size: 2.6rem;
	line-height: 1;
}

.review-score span {
	display: block;
	font-size: 0.78rem;
	font-weight: 800;
	text-transform: uppercase;
}

.review-box h2 {
	margin: 0 0 12px;
	font-size: 1.35rem;
}

.review-box h3 {
	margin: 0 0 8px;
	font-size: 0.95rem;
	text-transform: uppercase;
}

.review-list {
	margin-top: 12px;
}

.review-list ul {
	margin: 0;
	padding-left: 20px;
}

.show-profile__summary {
	max-width: 68ch;
	margin: 0;
	color: #3a3e47;
	font-size: 1.08rem;
}

.show-profile-panel {
	margin-bottom: 24px;
	overflow: hidden;
	border: 1px solid var(--tv-line);
	border-radius: var(--tv-radius);
	background: #fff;
}

.show-profile-panel__header {
	display: flex;
	justify-content: space-between;
	gap: 18px;
	align-items: center;
	padding: 18px;
	border-bottom: 1px solid var(--tv-line);
	background: var(--tv-panel);
}

.show-profile-panel__header span,
.show-cast-list > span,
.show-profile-facts span {
	display: block;
	color: var(--tv-muted);
	font-size: 0.78rem;
	font-weight: 850;
	text-transform: uppercase;
}

.show-profile-panel__header h2 {
	margin: 3px 0 0;
	font-size: 1.4rem;
	line-height: 1.1;
}

.show-profile-panel__watch {
	flex: 0 0 auto;
	padding: 8px 11px;
	border-radius: var(--tv-radius);
	background: var(--tv-accent);
	color: #fff;
	font-size: 0.9rem;
	font-weight: 850;
	text-decoration: none;
}

.show-profile-facts {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 1px;
	background: var(--tv-line);
}

.show-profile-facts div {
	min-width: 0;
	padding: 14px;
	background: #fff;
}

.show-profile-facts strong {
	display: block;
	margin-top: 3px;
	font-size: 0.98rem;
	line-height: 1.25;
}

.show-cast-list {
	padding: 16px 18px 18px;
	border-top: 1px solid var(--tv-line);
}

.show-cast-list div {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	margin-top: 8px;
}

.show-cast-list div span {
	padding: 5px 9px;
	border: 1px solid var(--tv-line);
	border-radius: 999px;
	color: var(--tv-ink);
	font-size: 0.86rem;
	font-weight: 800;
}

.episode-profile-panel {
	margin-bottom: 24px;
	overflow: hidden;
	border: 1px solid var(--tv-line);
	border-radius: var(--tv-radius);
	background: #fff;
}

.episode-profile-panel__header {
	display: flex;
	justify-content: space-between;
	gap: 18px;
	align-items: center;
	padding: 18px;
	border-bottom: 1px solid var(--tv-line);
	background: var(--tv-panel);
}

.episode-profile-panel__header span,
.episode-profile-facts span {
	display: block;
	color: var(--tv-muted);
	font-size: 0.78rem;
	font-weight: 850;
	text-transform: uppercase;
}

.episode-profile-panel__header h2 {
	margin: 3px 0 0;
	font-size: 1.4rem;
	line-height: 1.1;
}

.episode-profile-panel__show {
	flex: 0 1 auto;
	padding: 8px 11px;
	border: 1px solid var(--tv-line);
	border-radius: var(--tv-radius);
	background: #fff;
	font-size: 0.9rem;
	font-weight: 850;
	text-decoration: none;
}

.episode-profile-facts {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 1px;
	background: var(--tv-line);
}

.episode-profile-facts div {
	min-width: 0;
	padding: 14px;
	background: #fff;
}

.episode-profile-facts strong {
	display: block;
	margin-top: 3px;
	font-size: 0.98rem;
	line-height: 1.25;
}

.show-hub-strip {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 1px;
	overflow: hidden;
	margin-bottom: 24px;
	border: 1px solid var(--tv-line);
	border-radius: var(--tv-radius);
	background: var(--tv-line);
}

.show-hub-strip div {
	padding: 14px;
	background: var(--tv-panel);
}

.show-hub-strip span {
	display: block;
	margin-bottom: 4px;
	color: var(--tv-muted);
	font-size: 0.78rem;
	font-weight: 850;
	text-transform: uppercase;
}

.show-hub-strip a {
	font-weight: 800;
	text-decoration: none;
}

.tv-explore-panel {
	margin-bottom: 28px;
	overflow: hidden;
	border: 1px solid var(--tv-line);
	border-radius: var(--tv-radius);
	background: #fff;
}

.tv-explore-panel__header {
	padding: 18px;
	border-bottom: 1px solid var(--tv-line);
	background: var(--tv-panel);
}

.tv-explore-panel__header span {
	display: block;
	color: var(--tv-muted);
	font-size: 0.78rem;
	font-weight: 850;
	text-transform: uppercase;
}

.tv-explore-panel__header h2 {
	margin: 3px 0 0;
	font-size: 1.4rem;
	line-height: 1.1;
}

.tv-explore-panel__grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 1px;
	background: var(--tv-line);
}

.tv-explore-panel__grid > div {
	min-width: 0;
	padding: 14px;
	background: #fff;
}

.tv-explore-panel__grid h3 {
	margin: 0 0 12px;
	color: var(--tv-muted);
	font-size: 0.86rem;
	line-height: 1.2;
	text-transform: uppercase;
}

.tv-explore-link {
	display: grid;
	grid-template-columns: 58px minmax(0, 1fr);
	gap: 10px;
	align-items: center;
	min-width: 0;
	padding: 9px 0;
	border-top: 1px solid var(--tv-line);
	text-decoration: none;
}

.tv-explore-link:first-of-type {
	border-top: 0;
	padding-top: 0;
}

.tv-explore-link__media {
	display: block;
	overflow: hidden;
	aspect-ratio: 1;
	border-radius: var(--tv-radius) var(--tv-radius) 0 0;
	background: #dfe3eb;
}

.tv-explore-link__media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	border-radius: var(--tv-radius) var(--tv-radius) 0 0;
}

.tv-explore-link strong,
.tv-explore-link em {
	display: block;
	min-width: 0;
	overflow-wrap: break-word;
}

.tv-explore-link strong {
	font-size: 0.94rem;
	line-height: 1.2;
}

.tv-explore-link em {
	margin-top: 2px;
	color: var(--tv-muted);
	font-size: 0.78rem;
	font-style: normal;
	font-weight: 750;
	line-height: 1.25;
}

.show-episodes {
	margin-top: 38px;
	padding-top: 28px;
	border-top: 1px solid var(--tv-line);
}

.show-episodes h2 {
	margin-top: 0;
}

.episode-season {
	margin-top: 18px;
}

.episode-season h3 {
	margin: 0 0 8px;
	color: var(--tv-muted);
	font-size: 0.95rem;
	text-transform: uppercase;
}

.episode-list {
	display: grid;
	gap: 8px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.episode-list li {
	display: flex;
	justify-content: space-between;
	gap: 14px;
	padding: 12px 0;
	border-bottom: 1px solid var(--tv-line);
}

.episode-list a {
	font-weight: 800;
	text-decoration: none;
}

.episode-list small {
	display: block;
	margin-top: 2px;
	color: var(--tv-muted);
	font-size: 0.82rem;
}

.episode-list span {
	flex: 0 0 auto;
	color: var(--tv-muted);
	font-size: 0.9rem;
	font-weight: 800;
}

.show-empty-state {
	margin: 0;
	padding: 14px 16px;
	border: 1px dashed color-mix(in srgb, var(--tv-muted), transparent 45%);
	border-radius: var(--tv-radius);
	background: var(--tv-panel);
	color: var(--tv-muted);
}

.show-coverage-groups h2 {
	margin-bottom: 16px;
}

.show-coverage-group {
	margin-top: 22px;
}

.show-coverage-group h3 {
	margin: 0 0 12px;
	color: var(--tv-muted);
	font-size: 0.95rem;
	text-transform: uppercase;
}

.episode-navigation {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 12px;
	margin-top: 34px;
}

.episode-navigation a {
	display: block;
	min-width: 0;
	padding: 16px;
	border: 1px solid var(--tv-line);
	border-radius: var(--tv-radius);
	background: #fff;
	text-decoration: none;
}

.episode-navigation span {
	display: block;
	color: var(--tv-muted);
	font-size: 0.78rem;
	font-weight: 850;
	text-transform: uppercase;
}

.episode-navigation strong {
	display: block;
	margin-top: 4px;
	color: var(--tv-ink);
	line-height: 1.2;
}

.episode-navigation small {
	display: block;
	margin-top: 6px;
	color: var(--tv-muted);
	font-size: 0.84rem;
	font-weight: 800;
}

.article-sidebar {
	position: sticky;
	top: 100px;
}

.article-sidebar .widget:first-child,
.article-sidebar .tv-ad-slot:first-child {
	margin-top: 0;
}

.tv-ad-slot {
	margin: 22px 0;
	padding: 14px;
	border: 1px dashed color-mix(in srgb, var(--tv-muted), transparent 45%);
	border-radius: var(--tv-radius);
	background: var(--tv-panel);
	color: var(--tv-muted);
	text-align: center;
}

.site-header + .tv-ad-slot {
	margin-top: 18px;
}

.post-grid__ad {
	grid-column: 1 / -1;
}

.author-box,
.related-posts {
	margin-top: 38px;
	padding-top: 28px;
	border-top: 1px solid var(--tv-line);
}

.author-box {
	display: flex;
	gap: 16px;
	align-items: flex-start;
}

.author-box__avatar img {
	border-radius: 50%;
}

.author-box h2,
.related-posts h2 {
	margin: 0 0 8px;
	font-size: 1.25rem;
}

.author-box p {
	margin: 0 0 8px;
	color: var(--tv-muted);
}

.widget {
	margin-bottom: 22px;
	padding: 18px;
	border: 1px solid var(--tv-line);
	border-radius: var(--tv-radius);
	background: #fff;
}

.widget-title {
	margin: 0 0 12px;
	font-size: 1rem;
}

.sidebar-context-link {
	display: grid;
	grid-template-columns: 58px minmax(0, 1fr);
	gap: 10px;
	align-items: center;
	padding: 10px 0;
	border-bottom: 1px solid var(--tv-line);
	text-decoration: none;
}

.sidebar-context-link:last-child {
	border-bottom: 0;
}

.sidebar-context-link img {
	width: 58px;
	height: 58px;
	object-fit: cover;
	border-radius: var(--tv-radius) var(--tv-radius) 0 0;
}

.sidebar-context-link small,
.sidebar-story-list span {
	display: block;
	color: var(--tv-muted);
	font-size: 0.78rem;
	font-weight: 800;
	text-transform: uppercase;
}

.sidebar-context-link strong {
	display: block;
	line-height: 1.2;
}

.sidebar-story-list ul {
	display: grid;
	gap: 12px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.sidebar-story-list li {
	padding-bottom: 12px;
	border-bottom: 1px solid var(--tv-line);
}

.sidebar-story-list li:last-child {
	padding-bottom: 0;
	border-bottom: 0;
}

.sidebar-story-list a {
	display: block;
	font-weight: 800;
	line-height: 1.25;
	text-decoration: none;
}

.sidebar-category-links div {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
}

.sidebar-category-links a {
	padding: 5px 9px;
	border: 1px solid var(--tv-line);
	border-radius: 999px;
	color: var(--tv-muted);
	font-size: 0.84rem;
	font-weight: 800;
	text-decoration: none;
}

.tag-list {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	margin-top: 30px;
}

.tag-list a {
	padding: 5px 9px;
	border: 1px solid var(--tv-line);
	border-radius: 999px;
	text-decoration: none;
}

.comments-area {
	margin-top: 46px;
	padding-top: 28px;
	border-top: 1px solid var(--tv-line);
}

.share-strip {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	align-items: center;
	margin-top: 30px;
	padding-top: 22px;
	border-top: 1px solid var(--tv-line);
}

.share-strip h2 {
	margin: 0;
	font-size: 1rem;
}

.share-strip div {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
}

.share-strip a,
.share-strip button {
	display: inline-flex;
	align-items: center;
	min-height: 36px;
	padding: 6px 10px;
	border: 1px solid var(--tv-line);
	border-radius: 999px;
	background: #fff;
	color: var(--tv-ink);
	font: inherit;
	font-size: 0.86rem;
	font-weight: 800;
	text-decoration: none;
}

.comment-list,
.comment-list ol {
	padding-left: 1.2em;
}

.comment-form {
	max-width: 100%;
}

.comment-form p {
	max-width: 100%;
}

.comment-form input:not([type="submit"]):not([type="checkbox"]),
.comment-form textarea {
	display: block;
	width: 100%;
	max-width: 100%;
	min-height: 44px;
	padding: 9px 12px;
	border: 1px solid var(--tv-line);
	border-radius: var(--tv-radius);
	font: inherit;
}

.comment-form textarea {
	min-height: 150px;
	resize: vertical;
}

.comment-form-cookies-consent {
	display: flex;
	gap: 8px;
	align-items: flex-start;
}

.comment-form-cookies-consent input {
	flex: 0 0 auto;
	margin-top: 0.4em;
}

.search-form {
	display: flex;
	gap: 8px;
	max-width: 560px;
}

.search-field {
	width: 100%;
	min-height: 44px;
	padding: 9px 12px;
	border: 1px solid var(--tv-line);
	border-radius: var(--tv-radius);
	font: inherit;
}

.search-form label {
	flex: 1;
}

.search-form button,
.wp-block-button__link,
input[type="submit"] {
	min-height: 44px;
	padding: 9px 14px;
	border: 0;
	border-radius: var(--tv-radius);
	background: var(--tv-accent);
	color: #fff;
	font: inherit;
	font-weight: 800;
	text-decoration: none;
}

.footer-widgets {
	padding: 36px 0;
	border-top: 1px solid var(--tv-line);
	background: var(--tv-panel);
}

.widget-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 22px;
}

.site-footer {
	padding: 26px 0;
	background: var(--tv-ink);
	color: #fff;
}

.footer-inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 22px;
	min-width: 0;
}

.footer-inner p {
	min-width: 0;
	margin: 0;
	color: rgba(255, 255, 255, 0.75);
	font-size: 0.9rem;
}

.footer-inner nav {
	min-width: 0;
}

.footer-inner nav ul {
	flex-wrap: wrap;
	justify-content: flex-end;
	gap: 10px 14px;
}

.reading-progress {
	position: fixed;
	z-index: 100;
	top: 0;
	left: 0;
	width: 100%;
	height: 3px;
	transform: scaleX(0);
	transform-origin: left;
	background: var(--tv-accent);
}

.pagination,
.nav-links {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	margin-top: 28px;
}

.page-numbers,
.nav-links a,
.nav-links span {
	padding: 8px 11px;
	border: 1px solid var(--tv-line);
	border-radius: var(--tv-radius);
	text-decoration: none;
}

@media (max-width: 900px) {
	.menu-toggle {
		display: inline-flex;
	}

	.primary-nav {
		position: absolute;
		top: 100%;
		right: 16px;
		left: 16px;
		display: none;
		padding: 12px;
		border: 1px solid var(--tv-line);
		border-radius: var(--tv-radius);
		background: #fff;
	}

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

	.primary-nav ul {
		display: grid;
		gap: 8px;
	}

	.primary-nav a {
		display: block;
		padding: 10px;
	}

	.hero-grid,
	.featured-show,
	.content-layout,
	.archive-lead-story,
	.post-grid,
	.widget-grid,
	.show-profile-facts,
	.episode-profile-facts,
	.tv-archive-summary,
	.search-summary,
	.tv-taxonomy-panel,
	.show-library-term-grid,
	.tv-explore-panel__grid,
	.article-continue-panel__grid,
	.show-hub-strip,
	.story-info-panel,
	.linked-show-card,
	.review-box,
	.episode-navigation {
		grid-template-columns: 1fr;
	}

	.home-hero,
	.featured-show-band {
		padding: 34px 0;
	}

	.hero-grid,
	.featured-show,
	.archive-lead-story {
		gap: 20px;
	}

	.hero-story h1,
	.article-header h1 {
		line-height: 1.02;
	}

	.article-featured-image {
		margin-top: 24px;
	}

	.content-layout {
		gap: 30px;
		padding-top: 34px;
	}

	.linked-show-card__body {
		padding: 18px;
	}

	.show-profile-panel__header {
		align-items: flex-start;
		flex-direction: column;
	}

	.episode-profile-panel__header {
		align-items: flex-start;
		flex-direction: column;
	}

	.linked-show-card__media img {
		border-radius: var(--tv-radius) var(--tv-radius) 0 0;
	}

	.review-score {
		width: 140px;
	}

	.article-sidebar {
		position: static;
	}

	.footer-inner {
		align-items: flex-start;
		flex-direction: column;
	}

	.footer-inner nav ul,
	.site-footer ul {
		justify-content: flex-start;
	}
}

@media (max-width: 560px) {
	body {
		font-size: 16px;
	}

	.container,
	.breadcrumbs,
	.article-featured-image {
		width: min(calc(100% - 24px), var(--tv-max));
	}

	.header-inner {
		gap: 12px;
		min-height: 66px;
	}

	.site-branding img {
		max-width: min(180px, 100%);
	}

	.site-title {
		font-size: 1.2rem;
	}

	.custom-logo {
		max-height: 44px;
	}

	.menu-toggle {
		min-height: 42px;
		padding: 7px 10px;
	}

	.home-hero,
	.section-block,
	.archive-layout,
	.not-found {
		padding: 32px 0;
	}

	.featured-show-band {
		padding: 30px 0;
	}

	.hero-story h1,
	.article-header h1 {
		font-size: 2.28rem;
	}

	.featured-show h2,
	.archive-lead-story h2,
	.section-heading h2,
	.archive-header h1,
	.not-found h1 {
		font-size: 1.85rem;
		line-height: 1.05;
	}

	.article-subtitle,
	.hero-story p,
	.featured-show p,
	.archive-lead-story p,
	.show-profile__summary {
		font-size: 1rem;
	}

	.hero-media,
	.featured-show__media,
	.archive-lead-story__media,
	.post-card__media {
		aspect-ratio: 4 / 3;
	}

	.post-card__body,
	.widget {
		padding: 15px;
	}

	.content-layout,
	.content-layout--no-sidebar,
	.page-content {
		padding: 30px 0 46px;
	}

	.entry-content {
		font-size: 1rem;
	}

	.entry-content h2 {
		font-size: 1.55rem;
	}

	.entry-content h3 {
		font-size: 1.22rem;
	}

	.review-score {
		width: 112px;
	}

	.review-score strong {
		font-size: 2.1rem;
	}

	.episode-list li {
		align-items: flex-start;
		flex-direction: column;
		gap: 4px;
	}

	.sidebar-context-link {
		grid-template-columns: 50px minmax(0, 1fr);
	}

	.sidebar-context-link img {
		width: 50px;
		height: 50px;
	}

	.primary-nav {
		right: 12px;
		left: 12px;
	}

	.search-form,
	.section-heading,
	.tv-archive-stats {
		align-items: stretch;
		flex-direction: column;
	}

	.tv-archive-stats {
		display: grid;
		grid-template-columns: 1fr;
	}

	.tv-archive-stats div {
		border-right: 0;
		border-bottom: 1px solid var(--tv-line);
	}

	.tv-archive-stats div:last-child {
		border-bottom: 0;
	}

	.tv-archive-links span {
		flex-basis: 100%;
	}

	.section-heading a {
		flex: initial;
	}

	.search-form button,
	.wp-block-button__link,
	input[type="submit"] {
		width: 100%;
	}
}
