:root {
	--text: #2c2c2c;
	--muted: #6b6b6b;
	--link: #1a6ebd;
	--link-hover: #0d4f8a;
	--hero-bg: #d7e3ee;
	--border: #e4e4e4;
	--header-height: 88px;
	--content-width: 860px;
	--font: "Segoe UI", system-ui, -apple-system, Helvetica, Arial, sans-serif;
}

* {
	box-sizing: border-box;
}

html,
body {
	margin: 0;
	padding: 0;
}

body {
	font-family: var(--font);
	color: var(--text);
	line-height: 1.7;
	background: #fff;
}

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

a {
	color: var(--link);
	text-decoration: underline;
}

a:hover {
	color: var(--link-hover);
}

.site-header {
	background: #fff;
	border-bottom: 1px solid #eee;
}

.header-inner {
	max-width: 1200px;
	margin: 0 auto;
	padding: 16px 24px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 24px;
}

.logo {
	display: block;
	flex-shrink: 0;
	text-decoration: none;
}

.logo img {
	display: block;
	height: 56px;
	width: auto;
}

.nav-toggle {
	display: none;
	background: #fff;
	border: 1px solid var(--border);
	padding: 8px 12px;
	font: inherit;
	cursor: pointer;
}

.nav > ul {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	align-items: center;
	gap: 8px;
}

.nav > ul > li {
	position: relative;
}

.nav a {
	display: block;
	padding: 10px 14px;
	color: #222;
	text-decoration: none;
	font-size: 0.98rem;
	white-space: nowrap;
}

.nav a:hover,
.nav a.current {
	color: var(--link);
}

.nav .has-sub > a::after {
	content: "";
	display: inline-block;
	margin-left: 6px;
	border: 4px solid transparent;
	border-top-color: currentColor;
	transform: translateY(2px);
}

.nav .sub {
	display: none;
	position: absolute;
	top: 100%;
	left: 0;
	min-width: 220px;
	background: #fff;
	border: 1px solid var(--border);
	box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
	z-index: 20;
	padding: 8px 0;
}

.nav .sub a {
	white-space: nowrap;
	padding: 8px 16px;
}

.nav .nav-cat {
	padding: 8px 16px 4px;
	font-size: 0.72rem;
	font-weight: 700;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	color: var(--muted);
}

.nav li:hover > .sub,
.nav li:focus-within > .sub {
	display: block;
}

.hero {
	background: var(--hero-bg);
	padding: 36px 24px;
	text-align: center;
}

.hero h1 {
	margin: 0;
	font-size: clamp(1.6rem, 3vw, 2.15rem);
	font-weight: 700;
	letter-spacing: -0.02em;
	color: #1b1b1b;
}

.page {
	max-width: var(--content-width);
	margin: 0 auto;
	padding: 40px 24px 72px;
}

.page h2,
.page h3 {
	line-height: 1.3;
	margin-top: 1.6em;
}

.page h2:first-child,
.page > p:first-child {
	margin-top: 0;
}

.page ul,
.page ol {
	padding-left: 1.3em;
}

.page li + li {
	margin-top: 0.35em;
}

.lede {
	font-size: 1.08rem;
}

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

.episode-card {
	display: block;
	text-decoration: none;
	color: inherit;
	border: 1px solid var(--border);
	background: #fff;
}

.episode-card:hover {
	color: inherit;
	box-shadow: 0 6px 20px rgba(0, 0, 0, 0.06);
}

.episode-card img {
	display: block;
	width: 100%;
	aspect-ratio: 16 / 9;
	object-fit: cover;
	background: #f4f4f4;
}

.episode-card-body {
	padding: 16px 18px 20px;
}

.kicker {
	color: var(--link);
	font-size: 0.75rem;
	font-weight: 700;
	letter-spacing: 0.06em;
	text-transform: uppercase;
}

.episode-card h2 {
	margin: 6px 0 8px;
	font-size: 1.25rem;
	line-height: 1.3;
}

.meta {
	color: var(--muted);
	font-size: 0.9rem;
}

.video-wrap {
	position: relative;
	padding-bottom: 56.25%;
	height: 0;
	margin: 24px 0;
	background: #111;
}

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

audio {
	width: 100%;
	margin: 16px 0 8px;
}

.disclaimer {
	background: #f7f7f7;
	border-left: 4px solid #bbb;
	padding: 12px 16px;
	margin: 0 0 24px;
}

.site-footer {
	border-top: 1px solid var(--border);
	padding: 24px;
	text-align: center;
	color: var(--muted);
	font-size: 0.9rem;
}

.site-footer a {
	color: inherit;
	text-decoration: none;
}

@media (max-width: 800px) {
	.header-inner {
		flex-wrap: wrap;
	}

	.nav-toggle {
		display: inline-block;
	}

	.nav {
		display: none;
		width: 100%;
	}

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

	.nav > ul {
		flex-direction: column;
		align-items: stretch;
	}

	.nav .sub {
		position: static;
		display: none;
		border: 0;
		box-shadow: none;
		padding-left: 12px;
		min-width: 0;
	}

	.nav li.is-open > .sub {
		display: block;
	}

	.episode-grid {
		grid-template-columns: 1fr;
	}

	.hero {
		padding: 28px 16px;
	}
}
