
@import url('https://fonts.googleapis.com/css2?family=Roboto+Slab:wght@600;700&family=Bitter:ital,wght@0,400;0,700;1,400&display=swap');

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

body {
  font-family: 'Bitter', Georgia, serif;
  font-size: 18px;
  line-height: 1.7;
  color: #1a1a1a;
  background: #f8f7f3;
}

a { color: #cc0000; text-decoration: none; }
a:hover { text-decoration: underline; }

.site-header {
  background: #0a0a0a;
  border-bottom: 4px solid #99ff00;
}
.site-header-inner {
  max-width: 780px;
  margin: 0 auto;
  padding: 1.1rem 1rem 0.9rem;
}
.site-header h1 {
  font-family: 'Roboto Slab', serif;
  font-weight: 600;
  font-size: 1.55rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  line-height: 1;
}
.site-header h1 a { color: #99ff00; }
.site-header h1 a:hover { color: #fff; text-decoration: none; }
.site-header nav { margin-top: 0.5rem; font-size: 0.88rem; }
.site-header nav a { margin-right: 1.2rem; color: #999; }
.site-header nav a:hover { color: #99ff00; text-decoration: none; }

main { max-width: 780px; margin: 2.5rem auto 4rem; padding: 0 1rem; }

h1 {
  font-family: 'Roboto Slab', serif;
  font-weight: 700;
  font-size: 2.1rem;
  line-height: 1.15;
  margin-bottom: 0.5rem;
  color: #cc0000;
}
h2 {
  font-family: 'Roboto Slab', serif;
  font-weight: 700;
  font-size: 1.2rem;
  margin: 2rem 0 0.5rem;
  letter-spacing: 0.02em;
  color: #1a1a1a;
}
h3 { font-size: 1.05rem; font-weight: 700; margin: 1.5rem 0 0.4rem; }
p  { margin-bottom: 1rem; }
ul, ol { margin: 0.5rem 0 1rem 1.5rem; }
li { margin-bottom: 0.3rem; }

blockquote {
  border-left: 4px solid #cc0000;
  margin: 1.5rem 0;
  padding: 0.5rem 1rem;
  color: #444;
  font-style: italic;
}

.lede {
  margin: 1.25rem 0 1.75rem;
  font-size: 1.15rem;
  font-style: italic;
  color: #444;
}

.post-meta { font-size: 0.85rem; color: #666; margin-bottom: 1.5rem; }
.post-card {
  border-top: 3px solid #1a1a1a;
  padding: 1.5rem 0;
}
.post-card:last-child { border-bottom: 1px solid #ddd; }
.post-card h2 {
  margin-top: 0;
  font-size: 1.35rem;
  color: #cc0000;
}
.post-card .meta { font-size: 0.85rem; color: #666; margin: 0.25rem 0 0.5rem; }
.post-card p { color: #444; margin: 0; }

audio {
  width: 100%;
  margin: 1rem 0;
  accent-color: #cc0000;
}

.sources {
  background: #0a0a0a;
  border-radius: 4px;
  padding: 1rem 1.25rem;
  margin-top: 2rem;
  font-size: 0.9rem;
}
.sources h2 { margin-top: 0; font-size: 0.85rem; text-transform: uppercase; letter-spacing: 0.08em; color: #99ff00; }
.sources a { color: #ccc; }
.sources a:hover { color: #99ff00; }

.tag {
  display: inline-block;
  padding: 0.15rem 0.55rem;
  margin: 0.2rem 0.2rem 0.2rem 0;
  font-size: 0.75rem;
  font-family: 'Bitter', sans-serif;
  font-weight: 700;
  background: #0a0a0a;
  color: #99ff00;
  border-radius: 2px;
  text-decoration: none;
  letter-spacing: 0.02em;
}
.tag:hover { background: #cc0000; color: #fff; text-decoration: none; }
.tags { margin: 0.75rem 0 1.5rem; }

.badge {
  display: inline-block;
  margin-left: 0.6rem;
  padding: 0.1rem 0.45rem;
  font-size: 0.68rem;
  font-family: 'Bitter', sans-serif;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #99ff00;
  background: #0a0a0a;
  border-radius: 2px;
  vertical-align: middle;
}

.transcript {
  background: #f2f1ec;
  border: 1px solid #dddbd5;
  border-radius: 4px;
  padding: 1.25rem;
  font-size: 0.88rem;
  line-height: 1.6;
  max-height: 300px;
  overflow-y: auto;
  white-space: pre-wrap;
  color: #444;
  margin-top: 1rem;
}

details summary {
  cursor: pointer;
  font-size: 0.9rem;
  color: #666;
  margin: 1rem 0 0;
  user-select: none;
}

.episode-grid {
  display: grid;
  grid-template-columns: 10rem 1fr;
  gap: 1px;
  background: #ccc;
  border: 1px solid #ccc;
  border-radius: 4px;
  overflow: hidden;
}
.episode-row {
  display: contents;
}
.episode-row:hover .date,
.episode-row:hover .title { background: #f0eeea; }
.episode-row .date {
  background: #f8f7f3;
  padding: 0.75rem 0.75rem 0.75rem 1rem;
  font-size: 0.8rem;
  color: #888;
  white-space: nowrap;
  align-self: stretch;
  display: flex;
  align-items: center;
}
.episode-row .title {
  background: #f8f7f3;
  padding: 0.75rem 1rem 0.75rem 0;
  align-self: stretch;
  display: flex;
  align-items: center;
}
