/* ─── FONTS (local) ─── */

@font-face { font-family: 'Playfair Display'; src: url('/fonts/PlayfairDisplay/PlayfairDisplay-400.woff2') format('woff2'); font-weight: 400; font-display: swap; }
@font-face { font-family: 'Playfair Display'; src: url('/fonts/PlayfairDisplay/PlayfairDisplay-500.woff2') format('woff2'); font-weight: 500; font-display: swap; }
@font-face { font-family: 'Playfair Display'; src: url('/fonts/PlayfairDisplay/PlayfairDisplay-600.woff2') format('woff2'); font-weight: 600; font-display: swap; }
@font-face { font-family: 'Playfair Display'; src: url('/fonts/PlayfairDisplay/PlayfairDisplay-700.woff2') format('woff2'); font-weight: 700; font-display: swap; }
@font-face { font-family: 'Playfair Display'; src: url('/fonts/PlayfairDisplay/PlayfairDisplay-800.woff2') format('woff2'); font-weight: 800; font-display: swap; }
@font-face { font-family: 'Playfair Display'; src: url('/fonts/PlayfairDisplay/PlayfairDisplay-900.woff2') format('woff2'); font-weight: 900; font-display: swap; }

@font-face { font-family: 'Source Serif 4'; src: url('/fonts/SourceSerif4/SourceSerif4-400.woff2') format('woff2'); font-weight: 400; font-style: normal; font-display: swap; }
@font-face { font-family: 'Source Serif 4'; src: url('/fonts/SourceSerif4/SourceSerif4-400-italic.woff2') format('woff2'); font-weight: 400; font-style: italic; font-display: swap; }
@font-face { font-family: 'Source Serif 4'; src: url('/fonts/SourceSerif4/SourceSerif4-500.woff2') format('woff2'); font-weight: 500; font-display: swap; }
@font-face { font-family: 'Source Serif 4'; src: url('/fonts/SourceSerif4/SourceSerif4-600.woff2') format('woff2'); font-weight: 600; font-display: swap; }
@font-face { font-family: 'Source Serif 4'; src: url('/fonts/SourceSerif4/SourceSerif4-700.woff2') format('woff2'); font-weight: 700; font-display: swap; }

@font-face { font-family: 'JetBrains Mono'; src: url('/fonts/JetBrainsMono/JetBrainsMono-400.woff2') format('woff2'); font-weight: 400; font-display: swap; }
@font-face { font-family: 'JetBrains Mono'; src: url('/fonts/JetBrainsMono/JetBrainsMono-500.woff2') format('woff2'); font-weight: 500; font-display: swap; }

/* ─── RESET & VARIABLES ─── */

* { margin: 0; padding: 0; box-sizing: border-box; }

:root {
	--bg: #f5f5f3;
	--surface: #faf8f5;
	--surface-alt: #f2f0ec;
	--border: rgba(0,0,0,0.1);
	--border-strong: rgba(0,0,0,0.18);
	--text: #111;
	--text-bright: #000;
	--text-muted: #999;
	--accent: #1a5a8a;
	--green: #1a6832;
	--yellow: #806010;
	--red: #a01818;
	--font: 'Source Serif 4', 'Georgia', serif;
	--font-display: 'Playfair Display', 'Georgia', serif;
	--mono: 'JetBrains Mono', 'Consolas', monospace;
}

html { height: 100%; }
body {
	font-family: var(--font);
	background: var(--bg);
	color: var(--text);
	min-height: 100%;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; height: auto; }

/* ─── NAVBAR ─── */

.navbar {
	display: flex;
	align-items: center;
	gap: 12px;
	padding: 0 16px;
	height: 52px;
	background: var(--surface);
	border-bottom: 1.5px solid var(--border-strong);
	position: sticky;
	top: 0;
	z-index: 100;
}
.navbar-logo {
	display: flex;
	flex-shrink: 0;
	font-family: var(--font-display);
	font-size: 0.95rem;
	font-weight: 900;
	letter-spacing: 0.12em;
	line-height: 0.57rem;
	height: 33px;
	text-transform: uppercase;
	overflow: hidden;
}
.logo-held {
	background: #111;
	color: #faf8f5;
	padding: 11px 4px 0 10px;
}
.logo-true {
	background: #faf8f5;
	color: #111;
	padding: 11px 9px 0 6px;
	border: 1px solid var(--border-strong);
	border-left: none;
}

/* ─── HOME MASTHEAD ─── */

.masthead {
	background: #111;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 8px 16px;
}
.masthead .logo img {
	height: 40px;
	width: auto;
	display: block;
}

/* ─── STATS BANNER ─── */

.stats-banner {
	background: #8b1a1a;
	color: #fff;
	font-family: var(--mono);
	font-size: 0.65rem;
	font-weight: 400;
	letter-spacing: 0.03em;
	text-align: center;
	padding: 7px 16px;
}

/* ─── SEARCH (home) ─── */

.search-bar {
	padding: 10px 16px;
	background: var(--surface);
	border-bottom: 1px solid var(--border);
}
.search-bar .search-input {
	width: 100%;
	display: flex;
	align-items: center;
	gap: 8px;
	background: var(--bg);
	border: 1px solid var(--border);
	padding: 8px 12px;
	border-radius: 2px;
}
.search-bar .search-input svg {
	width: 14px;
	height: 14px;
	opacity: 0.4;
	flex-shrink: 0;
}
.search-bar .search-input input {
	flex: 1;
	border: none;
	background: transparent;
	font-family: var(--font);
	font-size: 0.8rem;
	color: var(--text);
	outline: none;
}
.search-bar .search-input input::placeholder { color: var(--text-muted); }

/* ─── SEARCH (other pages — navbar inline) ─── */

.search-wrapper {
	position: relative;
	flex: 1;
	max-width: 400px;
	margin-left: auto;
}
.search-icon {
	position: absolute;
	left: 10px;
	top: 50%;
	transform: translateY(-50%);
	width: 16px;
	height: 16px;
	stroke: var(--text-muted);
	pointer-events: none;
}
.navbar .search-input {
	width: 100%;
	padding: 7px 12px 7px 34px;
	font-family: var(--font);
	font-size: 0.82rem;
	color: var(--text);
	background: var(--bg);
	border: 1px solid var(--border-strong);
	border-radius: 2px;
	outline: none;
}
.navbar .search-input::placeholder { color: var(--text-muted); }
.navbar .search-input:focus { border-color: var(--accent); }

/* ─── SEARCH PAGE ─── */

.search-container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 24px 16px 48px;
}
.search-section {
	margin-bottom: 32px;
}
.search-section-label {
	font-family: var(--mono);
	font-size: 0.7rem;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.06em;
	color: var(--text-muted);
	padding-bottom: 8px;
	border-bottom: 1px solid var(--border);
	margin-bottom: 8px;
}
.search-section-list {
	display: flex;
	flex-direction: column;
}
.search-empty {
	font-size: 0.82rem;
	color: var(--text-muted);
	padding: 8px 0;
}
.search-video-item {
	display: flex;
	gap: 12px;
	padding: 8px 0;
	color: var(--text);
	transition: background 0.1s;
	border-radius: 2px;
}
.search-video-item:hover { background: rgba(80,60,30,0.06); }
.search-video-thumb {
	position: relative;
	flex-shrink: 0;
	width: 160px;
	aspect-ratio: 16/9;
}
.search-video-thumb img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	border-radius: 2px;
}
.search-video-duration {
	position: absolute;
	bottom: 4px;
	right: 4px;
	background: rgba(0,0,0,0.75);
	color: #fff;
	font-family: var(--mono);
	font-size: 0.65rem;
	padding: 1px 4px;
	border-radius: 2px;
}
.search-video-info {
	flex: 1;
	min-width: 0;
	display: flex;
	flex-direction: column;
	justify-content: center;
}
.search-video-title {
	font-size: 0.88rem;
	font-weight: 500;
	line-height: 1.3;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
}
.search-video-meta {
	font-size: 0.75rem;
	color: var(--text-muted);
	margin-top: 4px;
}
.search-speaker-item {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 8px 0;
	color: var(--text);
	transition: background 0.1s;
	border-radius: 2px;
}
.search-speaker-item:hover { background: rgba(80,60,30,0.06); }
.search-speaker-name {
	font-size: 0.88rem;
}
.search-speaker-count {
	font-family: var(--mono);
	font-size: 0.7rem;
	color: var(--text-muted);
}
.search-channel-item {
	display: flex;
	align-items: center;
	gap: 10px;
	padding: 8px 0;
	color: var(--text);
	transition: background 0.1s;
	border-radius: 2px;
}
.search-channel-item:hover { background: rgba(80,60,30,0.06); }
.search-avatar {
	width: 32px;
	height: 32px;
	border-radius: 50%;
	object-fit: cover;
	flex-shrink: 0;
}
.search-avatar-fallback {
	width: 32px;
	height: 32px;
	border-radius: 50%;
	background: var(--border-strong);
	color: var(--text-muted);
	display: flex;
	align-items: center;
	justify-content: center;
	font-family: var(--font-display);
	font-size: 0.7rem;
	font-weight: 700;
	flex-shrink: 0;
}
.search-channel-name {
	font-size: 0.88rem;
	flex: 1;
	min-width: 0;
}
.search-channel-count {
	font-family: var(--mono);
	font-size: 0.7rem;
	color: var(--text-muted);
}

@media (max-width: 639px) {
	.search-video-thumb { width: 120px; }
}

/* ─── HOME PAGE ─── */

.page-home {
	display: flex;
	flex-direction: column;
	height: 100vh;
	height: 100dvh;
	overflow: hidden;
}
.site-header {
	flex-shrink: 0;
}

/* ─── CHANNEL LIST (By channel tab) ─── */

.channel-list {
	display: grid;
	gap: 1px;
	background: var(--border);
}
.channel-list-item {
	display: flex;
	align-items: center;
	gap: 12px;
	padding: 14px 16px;
	background: var(--surface);
	transition: background 0.15s;
}
.channel-list-item:hover { background: var(--surface-alt); }
.channel-list-img {
	width: 40px;
	height: 40px;
	border-radius: 50%;
	object-fit: cover;
	flex-shrink: 0;
}
.channel-list-item .channel-avatar-fallback {
	width: 40px;
	height: 40px;
	font-size: 0.9rem;
}
.channel-list-name {
	flex: 1;
	font-size: 0.92rem;
	font-weight: 600;
	color: var(--text-bright);
}
.channel-list-count {
	font-family: var(--mono);
	font-size: 0.65rem;
	color: var(--text-muted);
	letter-spacing: 0.03em;
}

/* ─── NAV PILLS ─── */

.nav-pills {
	display: flex;
	padding: 10px 16px;
	gap: 6px;
	border-bottom: 1px solid var(--border);
}
.pill {
	flex: 1;
	text-align: center;
	font-family: var(--mono);
	font-size: 0.6rem;
	font-weight: 500;
	letter-spacing: 0.05em;
	text-transform: uppercase;
	padding: 5px 0;
	border-radius: 2px;
	white-space: nowrap;
	background: var(--surface-alt);
	color: #666;
	border: 1px solid var(--border);
	cursor: pointer;
	transition: background 0.15s, color 0.15s;
}
.pill:hover { color: var(--text); }
.pill.active {
	background: #111;
	color: #faf8f5;
	border-color: #111;
}

/* ─── VIDEO CARDS ─── */

.home-main {
	flex: 1;
	overflow-y: auto;
	scrollbar-width: none;
	padding: 0;
}
.home-main::-webkit-scrollbar { display: none; }

.card-list {
	padding: 12px 16px;
	display: flex;
	flex-direction: column;
	gap: 14px;
}

.card {
	display: flex;
	flex-direction: column;
	background: var(--surface);
	border: 1px solid var(--border);
	border-radius: 2px;
	overflow: hidden;
	transition: background 0.15s;
}
.card:hover { background: var(--surface-alt); }

.card-thumb {
	width: 100%;
	aspect-ratio: 16/9;
	position: relative;
	overflow: hidden;
	background: rgba(80,60,30,0.08);
}
.card-thumb img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}
.card-duration {
	position: absolute;
	bottom: 6px;
	right: 6px;
	background: rgba(0,0,0,0.75);
	color: #fff;
	font-family: var(--mono);
	font-size: 0.6rem;
	font-weight: 500;
	padding: 2px 5px;
	border-radius: 2px;
	letter-spacing: 0.03em;
}

.card-body {
	padding: 10px 12px 12px;
	display: flex;
	flex-direction: column;
	flex: 1;
}
.card-channel {
	display: flex;
	align-items: center;
	gap: 7px;
	margin-bottom: 6px;
}
.card-channel-avatar-img {
	width: 22px;
	height: 22px;
	border-radius: 50%;
	object-fit: cover;
	flex-shrink: 0;
}
.card-channel-avatar {
	width: 22px;
	height: 22px;
	border-radius: 50%;
	background: var(--accent);
	display: flex;
	align-items: center;
	justify-content: center;
	font-family: var(--font-display);
	font-weight: 800;
	font-size: 0.55rem;
	color: var(--surface);
	flex-shrink: 0;
}
.card-channel-name {
	font-family: var(--font);
	font-size: 0.75rem;
	font-weight: 600;
	color: var(--text);
}

.card-title {
	font-family: var(--font-display);
	font-weight: 700;
	font-size: 1rem;
	flex: 1;
	line-height: 1.3;
	color: var(--text-bright);
	margin-bottom: 8px;
}

.card-stats {
	display: flex;
	align-items: center;
	gap: 4px;
	font-family: var(--mono);
	font-size: 0.7rem;
	color: var(--text-muted);
	letter-spacing: 0.02em;
	margin-bottom: 8px;
}
.card-stats span::after {
	content: '\b7';
	margin-left: 4px;
}
.card-stats span:last-child::after {
	content: '';
}

/* ─── FOOTER ─── */

.site-footer {
	position: fixed;
	bottom: 0;
	left: 0;
	right: 0;
	z-index: 10;
}
.page-video .site-footer {
	display: none;
}
@media (min-width: 1200px) {
	.page-video .site-footer {
		display: block;
	}
}
.page-home {
	position: relative;
}
.footer-bar {
	background: #111;
	padding: 12px 16px;
}
.footer-inner {
	max-width: 1200px;
	margin: 0 auto;
	display: flex;
	justify-content: space-between;
	align-items: center;
}
.footer-links {
	display: flex;
	gap: 14px;
	flex-wrap: wrap;
}
.footer-links a {
	font-family: var(--mono);
	font-size: 0.7rem;
	color: rgba(255,255,255,0.5);
	transition: color 0.15s;
}
.footer-links a:hover {
	color: #fff;
}
.footer-email {
	cursor: pointer;
}
.footer-copy {
	font-family: var(--mono);
	font-size: 0.65rem;
	color: rgba(255,255,255,0.35);
}
@media (min-width: 1024px) {
	.footer-bar {
		padding: 16px 16px;
	}
	.footer-links {
		gap: 20px;
	}
	.footer-links a {
		font-size: 0.8rem;
	}
	.footer-copy {
		font-size: 0.75rem;
	}
}

/* ─── VERDICT BAR ─── */

.verdict-bar {
	height: 6px;
	display: flex;
	overflow: hidden;
	border-radius: 1px;
}
.verdict-bar .v-true { background: var(--green); }
.verdict-bar .v-inexact { background: var(--yellow); }
.verdict-bar .v-false { background: var(--red); }
.verdict-bar .v-other { background: rgba(0,0,0,0.1); }

/* ─── CHANNEL AVATAR FALLBACK (shared) ─── */

.channel-avatar-fallback {
	width: 22px;
	height: 22px;
	border-radius: 50%;
	background: var(--accent);
	display: flex;
	align-items: center;
	justify-content: center;
	font-family: var(--font-display);
	font-weight: 800;
	font-size: 0.55rem;
	color: var(--surface);
	flex-shrink: 0;
}

/* ─── CHANNEL GROUP ─── */

.channel-group { margin-bottom: 24px; }
.channel-group-title {
	font-family: var(--font-display);
	font-size: 0.85rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.06em;
	color: var(--text-muted);
	padding: 8px 0;
	border-bottom: 1px solid var(--border);
	margin-bottom: 12px;
}

/* ─── PAGE SUBTITLE ─── */

.page-subtitle {
	font-family: var(--font-display);
	font-size: 1.2rem;
	font-weight: 700;
	padding: 16px;
	text-align: center;
	color: var(--text-bright);
	border-bottom: 1px solid var(--border);
}

/* ─── VIDEO DESKTOP HEADER ─── */

.page-video .site-header {
	display: none;
	flex-shrink: 0;
}
.site-header.has-search {
	margin-bottom: 10px;
}
.site-header-back .masthead {
	position: relative;
}
.video-back-btn {
	position: absolute;
	left: 16px;
	top: 50%;
	transform: translateY(-50%);
	display: flex;
	align-items: center;
	justify-content: center;
	width: 32px;
	height: 32px;
	color: #faf8f5;
	opacity: 0.7;
	transition: opacity 0.15s;
}
.video-back-btn:hover {
	opacity: 1;
}
.video-back-btn svg {
	width: 20px;
	height: 20px;
}

/* ─── VIDEO PAGE ─── */

.video-page {
	display: flex;
	flex-direction: column;
	height: 100vh;
	height: 100dvh;
	overflow: hidden;
}

.video-wrapper {
	width: 100%;
	aspect-ratio: 16/9;
	background: #000;
	flex-shrink: 0;
	position: relative;
}
.video-wrapper iframe {
	width: 100%;
	height: 100%;
	border: none;
}

.video-skeleton {
	position: absolute;
	inset: 0;
	background: #1a1a1a;
	overflow: hidden;
}
.video-skeleton::after {
	content: '';
	position: absolute;
	inset: 0;
	background: linear-gradient(90deg, transparent 0%, rgba(255,255,255,0.04) 50%, transparent 100%);
	animation: shimmer 1.5s infinite;
}
@keyframes shimmer {
	0% { transform: translateX(-100%); }
	100% { transform: translateX(100%); }
}

/* ─── VIDEO INFO BAR ─── */

.video-info {
	display: flex;
	align-items: center;
	gap: 8px;
	padding: 10px 14px;
	flex-shrink: 0;
	cursor: pointer;
	background: rgba(80,60,30,0.05);
}
.channel-avatar {
	width: 22px;
	height: 22px;
	flex-shrink: 0;
}
.channel-avatar .channel-avatar-img {
	width: 22px;
	height: 22px;
	border-radius: 50%;
	object-fit: cover;
}
.channel-avatar .channel-avatar-fallback {
	width: 22px;
	height: 22px;
	font-size: 0.55rem;
}
.video-info-text {
	flex: 1;
	font-family: var(--font);
	font-size: 0.75rem;
	line-height: 1.3;
	color: var(--text);
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
	min-width: 0;
}
.video-info-channel { font-weight: 700; color: var(--text-bright); }
.video-info-title { color: var(--text-muted); }

.video-meta {
	display: flex;
	align-items: center;
	gap: 6px;
	font-size: 0.78rem;
	color: var(--text-muted);
	font-family: var(--font);
	margin-bottom: 8px;
}
.video-meta span::after { content: '\b7'; margin-left: 6px; }
.video-meta span:last-of-type::after { content: ''; }

.description-label {
	font-family: var(--mono);
	font-size: 0.65rem;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.06em;
	color: var(--text-muted);
	margin-top: 8px;
	margin-bottom: 4px;
}
.description-text {
	white-space: pre-line;
	text-align: justify;
	font-size: 0.85rem;
	line-height: 1.65;
}

/* ─── DESCRIPTION TOGGLE ─── */

.description-content {
	max-height: 0;
	overflow: hidden;
	transition: max-height 0.35s ease;
	flex-shrink: 0;
	background: rgba(80,60,30,0.05);
}
.description-content.open {
	max-height: 200px;
	overflow-y: auto;
	border-bottom: 1px solid var(--border);
}
.description-content::-webkit-scrollbar { width: 3px; }
.description-content::-webkit-scrollbar-track { background: transparent; }
.description-content::-webkit-scrollbar-thumb { background: rgba(80,60,30,0.15); border-radius: 2px; }
.description-inner {
	padding: 0 16px 16px;
	font-size: 0.85rem;
	line-height: 1.65;
	color: var(--text);
}
.description-chevron {
	width: 16px;
	height: 16px;
	stroke: var(--text-muted);
	fill: none;
	cursor: pointer;
	flex-shrink: 0;
	stroke-width: 2;
	stroke-linecap: round;
	stroke-linejoin: round;
	transition: transform 0.25s ease;
}
.description-chevron.open { transform: rotate(180deg); }

/* ─── FEED CONTAINER ─── */

.feed-container {
	flex: 1;
	display: flex;
	flex-direction: column;
	overflow: hidden;
	position: relative;
}
.feed-container::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 1px;
	box-shadow: 0 2px 6px rgba(40,30,15,0.12);
	z-index: 3;
	pointer-events: none;
}

/* ─── FEED FILTERS ─── */

.feed-filters {
	display: flex;
	flex-wrap: wrap;
	gap: 4px;
	padding: 8px;
	border-bottom: 1px solid var(--border);
	background: var(--bg);
	z-index: 2;
	flex-shrink: 0;
}
.filter-btn {
	font-family: var(--mono);
	font-size: 0.55rem;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.03em;
	border: 1px solid var(--border);
	border-radius: 2px;
	background: transparent;
	color: var(--text-muted);
	cursor: pointer;
	padding: 4px 6px;
	display: flex;
	align-items: center;
	gap: 3px;
	opacity: 0.4;
	transition: opacity 0.15s ease, border-color 0.15s ease;
}
.filter-count {
	font-size: 0.45rem;
}
@media (min-width: 768px) {
	.feed-filters {
		gap: 6px;
		padding: 10px;
	}
	.filter-btn {
		font-size: 0.68rem;
		letter-spacing: 0.04em;
		padding: 6px 10px;
		gap: 5px;
	}
	.filter-count {
		font-size: 0.55rem;
	}
}
.filter-btn.active {
	opacity: 1;
}
.filter-btn.active.v-true { color: var(--green); border-color: var(--green); }
.filter-btn.active.v-inexact { color: var(--yellow); border-color: var(--yellow); }
.filter-btn.active.v-false { color: var(--red); border-color: var(--red); }
.filter-btn.active.v-outdated { color: var(--yellow); border-color: var(--yellow); }
.filter-btn.active.v-unsubstantiated,
.filter-btn.active.v-unverifiable { color: var(--text-muted); border-color: var(--text-muted); }
.filter-btn.active.v-disputed { color: #6040a0; border-color: #6040a0; }
.filter-count {
	opacity: 0.7;
}

/* ─── FOLLOW BUTTON ─── */

.feed-follow-btn {
	position: absolute;
	bottom: 16px;
	right: 16px;
	width: 40px;
	height: 40px;
	border-radius: 50%;
	border: none;
	background: #fff;
	color: #555;
	cursor: pointer;
	z-index: 4;
	opacity: 0;
	pointer-events: none;
	transition: opacity 0.2s ease;
	box-shadow: 0 2px 8px rgba(0,0,0,0.2);
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 0;
}
.feed-follow-btn.visible {
	opacity: 1;
	pointer-events: auto;
}

/* ─── FEED LIST ─── */

.feed-list {
	flex: 1;
	min-height: 0;
	overflow-y: auto;
	overflow-x: hidden;
	scrollbar-width: none;
}
.feed-list::-webkit-scrollbar { width: 0; }

/* ─── VIDEO SUMMARY CARD ─── */

.video-summary {
	border: 1px solid var(--border-strong);
	background: var(--surface);
	margin-bottom: 12px;
	padding: 10px 12px;
}
.summary-section {
	padding-bottom: 8px;
	margin-bottom: 8px;
	border-bottom: 1px solid var(--border);
}
.summary-label {
	font-family: var(--mono);
	font-size: 0.6rem;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.06em;
	color: var(--text-muted);
	margin-bottom: 6px;
}
.summary-claims-row {
	display: flex;
	align-items: center;
	gap: 10px;
}
.summary-claim-count {
	font-family: var(--font-display);
	font-size: 1.4rem;
	font-weight: 700;
	color: var(--text-bright);
	line-height: 1;
}
.summary-verdict-bar {
	height: 6px;
}
.summary-verdict-legend {
	display: flex;
	flex-wrap: wrap;
	gap: 4px 10px;
	margin-top: 6px;
}
.summary-verdict-item {
	font-family: var(--mono);
	font-size: 0.6rem;
	font-weight: 500;
	letter-spacing: 0.02em;
}
.summary-verdict-item.v-true { color: var(--green); }
.summary-verdict-item.v-inexact { color: var(--yellow); }
.summary-verdict-item.v-false { color: var(--red); }
.summary-verdict-item.v-outdated { color: var(--yellow); }
.summary-verdict-item.v-unsubstantiated,
.summary-verdict-item.v-unverifiable { color: var(--text-muted); }
.summary-verdict-item.v-disputed { color: #6040a0; }
.summary-speakers {
	display: flex;
	flex-direction: column;
	gap: 4px;
}
.summary-speaker {
	display: flex;
	align-items: center;
	gap: 8px;
	font-size: 0.78rem;
}
.summary-speaker-name {
	font-weight: 600;
	color: var(--text);
	flex: 1;
	min-width: 0;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}
.summary-speaker-time {
	font-family: var(--mono);
	font-size: 0.65rem;
	color: var(--text-muted);
}
.summary-speaker-pct {
	font-family: var(--mono);
	font-size: 0.65rem;
	font-weight: 600;
	color: var(--text);
	min-width: 28px;
	text-align: right;
}
.summary-meta {
	display: flex;
	align-items: center;
	gap: 6px;
	font-family: var(--mono);
	font-size: 0.6rem;
	color: var(--text-muted);
	letter-spacing: 0.02em;
}
.summary-meta span::after { content: '\b7'; margin-left: 6px; }
.summary-meta span:last-child::after { content: ''; }

/* ─── CHAPTER SEPARATOR ─── */

.chapter-separator {
	padding: 12px 4px;
	font-family: var(--font-display);
	font-size: 0.8rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.08em;
	color: var(--text-muted);
	text-align: center;
}
.chapter-separator.chapter-active {
	background: rgba(139, 26, 26, 0.08);
	color: var(--text-bright);
}
.claim-card + .chapter-separator {
	margin-top: -10px;
}

/* ─── CLAIM CARD ─── */

.claims-feed {
	padding: 4px 10px 0;
}
.claim-gap {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
}
.claim-gap span {
	width: 3.5px;
	height: 3.5px;
	border-radius: 50%;
	background: var(--text-muted);
	opacity: 0.45;
}
.claim-card {
	border: 1px solid var(--border);
	margin-bottom: 10px;
	border-radius: 0;
	background: var(--surface);
	cursor: pointer;
	position: relative;
	scroll-margin-top: 5px;
	display: flex;
	overflow: hidden;
}
.claim-side-band {
	width: 28px;
	flex-shrink: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	border-right: 1px solid var(--border);
	background: rgba(20,100,50,0.12);
}
.claim-side-band.v-true { background: rgba(20,100,50,0.12); }
.claim-side-band.v-false { background: rgba(160,20,20,0.1); }
.claim-side-band.v-inexact { background: rgba(180,130,10,0.1); }
.claim-side-band.v-outdated { background: rgba(180,130,10,0.08); }
.claim-side-band.v-unsubstantiated,
.claim-side-band.v-unverifiable { background: rgba(0,0,0,0.04); }
.claim-side-band.v-disputed { background: rgba(100,60,160,0.08); }
.claim-side-label {
	font-family: var(--mono);
	font-size: 0.6rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.08em;
	color: var(--green);
	writing-mode: vertical-lr;
	transform: rotate(180deg);
	text-rendering: geometricPrecision;
}
.claim-side-band.v-false .claim-side-label { color: var(--red); }
.claim-side-band.v-inexact .claim-side-label { color: var(--yellow); }
.claim-side-band.v-outdated .claim-side-label { color: var(--yellow); }
.claim-side-band.v-unsubstantiated .claim-side-label,
.claim-side-band.v-unverifiable .claim-side-label { color: var(--text-muted); }
.claim-side-band.v-disputed .claim-side-label { color: #6040a0; }
.claim-body {
	flex: 1;
	min-width: 0;
	padding: 8px;
}

@keyframes claimFlash {
	0%, 15% { background-color: rgba(139, 26, 26, 0.1); }
	100% { background-color: transparent; }
}
.claim-card.claim-flash { animation: claimFlash 0.8s ease-out; }

.claim-header {
	display: flex;
	align-items: center;
	gap: 6px;
	margin-bottom: 6px;
}
.claim-speaker {
	font-size: 0.72rem;
	font-weight: 700;
	color: #555;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}
.claim-time {
	font-family: var(--mono);
	font-size: 0.6rem;
	font-weight: 600;
	color: var(--text-muted);
	margin-left: auto;
	background: rgba(80,60,30,0.08);
	padding: 2px 6px;
	border-radius: 2px;
	letter-spacing: 0.06em;
	display: flex;
	align-items: center;
	flex-shrink: 0;
	position: relative;
}
.claim-time::before {
	content: "";
	position: absolute;
	inset: -10px -12px;
}
.claim-quote {
	position: relative;
	font-size: 0.85rem;
	line-height: 1.5;
	font-style: italic;
	color: #555;
	padding: 4px 20px 2px 13px;
	text-align: justify;
}
.claim-quote::before {
	content: '\201C';
	font-family: var(--font-display);
	font-size: 2.1rem;
	font-style: normal;
	position: absolute;
	top: -2px;
	left: -4px;
	color: #111;
	opacity: 0.18;
	line-height: 1;
}
.claim-quote::after {
	content: '\201D';
	font-family: var(--font-display);
	font-size: 2.1rem;
	font-style: normal;
	color: #111;
	opacity: 0.18;
	line-height: 0;
	vertical-align: bottom;
	margin-left: 3px;
}
.claim-tldr {
	margin-top: 4px;
	font-size: 0.8rem;
	line-height: 1.4;
	color: var(--text);
	padding-right: 20px;
	text-align: justify;
}

/* ─── CLAIM DETAILS ─── */

.claim-toggle {
	position: absolute;
	right: 10px;
	bottom: 8px;
	cursor: pointer;
	display: flex;
}
.claim-toggle svg {
	width: 14px;
	height: 14px;
	stroke: var(--text-muted);
	fill: none;
	stroke-width: 2;
	stroke-linecap: round;
	stroke-linejoin: round;
	opacity: 0.7;
	transition: transform 0.2s ease;
}
.claim-toggle.open svg { transform: rotate(180deg); }
.claim-details {
	max-height: 0;
	overflow: hidden;
	transition: max-height 0.3s ease;
}
.claim-explanation {
	margin-top: 8px;
	padding-right: 20px;
	font-size: 0.85rem;
	line-height: 1.5;
	color: var(--text);
	text-align: justify;
}

/* ─── SOURCES ─── */

.claim-sep {
	height: 0;
	border-top: 1px solid rgba(0,0,0,0.06);
	margin: 8px 0;
}
.claim-sources {
	padding-bottom: 16px;
}
.claim-source {
	display: flex;
	align-items: baseline;
	gap: 6px;
	margin-bottom: 3px;
	font-size: 0.78rem;
	line-height: 1.35;
	text-decoration: none;
	color: inherit;
}
.claim-source-title {
	color: var(--accent);
	flex: 1;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
	min-width: 0;
}
.claim-source-domain {
	font-family: var(--mono);
	font-size: 0.6rem;
	color: var(--text-muted);
	flex-shrink: 0;
	background: rgba(80,60,30,0.08);
	padding: 1px 5px;
	border-radius: 2px;
}

/* ─── ERROR PAGE ─── */

.error-page {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	min-height: 80vh;
	text-align: center;
	padding: 48px 24px;
}
.error-logo {
	display: flex;
	font-family: var(--font-display);
	font-size: 2.4rem;
	font-weight: 900;
	letter-spacing: 0.12em;
	line-height: 1.2rem;
	height: 82px;
	text-transform: uppercase;
	overflow: hidden;
	margin-bottom: 40px;
}
.error-logo .logo-held { padding: 28px 10px 0 24px; }
.error-logo .logo-true { padding: 28px 22px 0 14px; }
.error-code {
	font-family: var(--font-display);
	font-size: 5rem;
	font-weight: 900;
	color: var(--text-muted);
	line-height: 1;
	opacity: 0.3;
}
.error-sep {
	width: 40px;
	height: 2px;
	background: var(--border-strong);
	margin: 16px 0;
}
.error-message {
	font-size: 0.95rem;
	color: var(--text-muted);
	margin-bottom: 32px;
}
.error-link {
	font-family: var(--mono);
	font-size: 0.75rem;
	letter-spacing: 0.04em;
	color: var(--accent);
	padding: 8px 20px;
	border: 1px solid var(--accent);
	border-radius: 2px;
	transition: background 0.15s, color 0.15s;
}
.error-link:hover {
	background: var(--accent);
	color: var(--surface);
}

/* ─── LOADING / ERROR ─── */

.loading, .error {
	display: flex;
	align-items: center;
	justify-content: center;
	height: 100%;
	font-family: var(--mono);
	font-size: 0.8rem;
	color: var(--text-muted);
	text-align: center;
	padding: 24px;
}

/* ─── RESPONSIVE ─── */

@media (min-width: 640px) {
	.card-list {
		display: grid;
		grid-template-columns: repeat(2, 1fr);
		gap: 16px;
	}
}

@media (min-width: 1024px) {
	.card-list {
		grid-template-columns: repeat(3, 1fr);
		max-width: 1200px;
		margin: 0 auto;
		padding: 16px 24px 72px;
	}
	.search-bar .search-input {
		max-width: 1200px;
		margin: 0 auto;
	}
	.nav-pills {
		max-width: 1200px;
		margin: 0 auto;
	}
	.channel-list {
		max-width: 1200px;
		margin: 0 auto;
	}
	.navbar {
		padding: 0 24px;
	}
	.page-video .site-header {
		display: block;
	}
	.video-back-btn {
		left: 24px;
	}
	.page-video {
		display: flex;
		flex-direction: column;
		height: 100vh;
		height: 100dvh;
	}
	.page-video .site-footer {
		position: static;
		flex-shrink: 0;
	}
	.page-video .video-page {
		flex: 1;
		min-height: 0;
		height: auto;
		max-width: 960px;
		margin: 0 auto;
		width: 100%;
	}
}

/* ─── VIDEO PAGE: SIDE-BY-SIDE ─── */

@media (min-width: 1200px) {
	.page-video .video-page {
		display: grid;
		grid-template-columns: 1fr 554px;
		grid-template-rows: auto auto 1fr;
		max-width: 100%;
	}
	.page-video .video-page .video-wrapper {
		grid-column: 1;
		grid-row: 1 / -1;
		aspect-ratio: auto;
		position: relative;
		background: var(--bg);
		container-type: size;
	}
	.page-video .video-page .video-wrapper iframe {
		position: absolute;
		width: calc(100% - 6%);
		aspect-ratio: 16/9;
		height: auto;
		top: 50%;
		left: 50%;
		transform: translate(-50%, -50%);
	}
	.page-video .video-page .video-wrapper .video-skeleton {
		inset: auto;
		width: calc(100% - 6%);
		aspect-ratio: 16/9;
		height: auto;
		top: 50%;
		left: 50%;
		transform: translate(-50%, -50%);
	}
	.page-video .video-page .video-info {
		grid-column: 2;
		grid-row: 1;
	}
	.page-video .video-page .description-content {
		grid-column: 2;
		grid-row: 2;
	}
	.page-video .video-page .feed-container {
		grid-column: 2;
		grid-row: 3;
		border-left: 1px solid var(--border);
		min-height: 0;
		overflow-y: auto;
	}
}
@media (min-width: 1600px) {
	.page-video .video-page {
		grid-template-columns: 1fr 634px;
	}
}

/* ─── ABOUT PAGE ─── */

.about-page {
	max-width: 680px;
	margin: 0 auto;
	padding: 32px 20px 100px;
}
.about-content h1 {
	font-family: var(--font-display);
	font-weight: 700;
	font-size: 2rem;
	margin-bottom: 32px;
	color: var(--text-bright);
}
.about-content h2 {
	font-family: var(--font-display);
	font-weight: 600;
	font-size: 1.25rem;
	margin: 32px 0 12px;
	color: var(--text-bright);
}
.about-content p {
	line-height: 1.7;
	margin-bottom: 12px;
	color: var(--text);
}
.about-content section {
	padding-bottom: 24px;
	border-bottom: 1px solid var(--border);
}
.about-content section:last-child {
	border-bottom: none;
}
.verdict-table {
	width: 100%;
	border-collapse: collapse;
	margin: 16px 0;
	font-size: 0.9rem;
}
.verdict-table th {
	text-align: left;
	font-family: var(--mono);
	font-size: 0.75rem;
	text-transform: uppercase;
	letter-spacing: 0.05em;
	color: var(--text-muted);
	padding: 8px 12px;
	border-bottom: 1px solid var(--border-strong);
}
.verdict-table td {
	padding: 8px 12px;
	border-bottom: 1px solid var(--border);
	vertical-align: middle;
}
.verdict-badge {
	display: inline-block;
	font-family: var(--mono);
	font-size: 0.8rem;
	font-weight: 500;
	padding: 2px 8px;
	border-radius: 2px;
}
.verdict-badge.v-true { color: var(--green); background: rgba(20,100,50,0.1); }
.verdict-badge.v-inexact { color: var(--yellow); background: rgba(180,130,10,0.1); }
.verdict-badge.v-false { color: var(--red); background: rgba(160,20,20,0.1); }
.verdict-badge.v-outdated { color: var(--yellow); background: rgba(180,130,10,0.08); }
.verdict-badge.v-unsubstantiated { color: var(--text-muted); background: rgba(0,0,0,0.04); }
.verdict-badge.v-disputed { color: #6040a0; background: rgba(100,60,160,0.08); }
.verdict-badge.v-unverifiable { color: var(--text-muted); background: rgba(0,0,0,0.04); }
.privacy-updated {
	font-family: var(--mono);
	font-size: 0.75rem;
	color: var(--text-muted);
	margin-bottom: 16px;
}
.about-email {
	color: var(--accent);
	text-decoration: underline;
	text-decoration-thickness: 1px;
	text-underline-offset: 2px;
}
