body {
  font-family: system-ui, sans-serif;
  margin: 2rem auto;
  max-width: 95%;
  line-height: 1.6;
}

.nav-bar {
  display: flex;
  gap: 1.5rem;
  padding: 0.75rem 0;
  margin-bottom: 1.5rem;
  border-bottom: 1px solid #ddd;
}

.nav-bar a {
  font-weight: 500;
}

.podcast-page {
  max-width: 40rem;
}

.podcast-language {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #666;
  background: #f0f0f0;
  border-radius: 0.2rem;
  padding: 0.1rem 0.4rem;
  margin-bottom: 0.25rem;
}

.podcast-description {
  font-size: 1.1rem;
  color: #444;
}

.podcast-subscribe {
  margin: 1.5rem 0;
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  align-items: center;
}

.subscribe-link {
  display: inline-block;
  padding: 0.5rem 1rem;
  background: #0050aa;
  color: white !important;
  border-radius: 0.25rem;
  font-weight: 500;
}

.subscribe-link:hover {
  background: #003d80;
  text-decoration: none !important;
}

.copy-feed-btn {
  padding: 0.5rem 1rem;
  background: #f0f0f0;
  border: 1px solid #ccc;
  border-radius: 0.25rem;
  font-weight: 500;
  cursor: pointer;
  font-size: inherit;
}

.copy-feed-btn:hover {
  background: #e5e5e5;
}

.podcast-list {
  list-style: none;
  padding: 0;
}

.podcast-item {
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid #eee;
}

.podcast-item:last-child {
  border-bottom: none;
}

.podcast-item h3 {
  margin: 0 0 0.5rem 0;
}

.podcast-app-link {
  display: inline-block;
  padding: 0.5rem 1rem;
  background: transparent;
  color: #0050aa;
  border: 1px solid #0050aa;
  border-radius: 0.25rem;
  font-weight: 500;
  text-decoration: none;
}

.podcast-app-link:hover {
  background: #f0f7ff;
}

.centered {
  margin-left: auto;
  margin-right: auto;
  display: block;
}

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

table.modern {
  width: 65%;
  border-collapse: collapse;
  font-family: system-ui, sans-serif;
  font-size: 0.95rem;
  background-color: white;
  border: 1px solid #ddd;
  border-radius: 0.5rem;
  overflow: hidden;
  box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}

table.modern th,
table.modern td {
  padding: 0.75rem 1rem;
  text-align: left;
}

table.modern thead {
  background: #f6f8fa;
  font-weight: 600;
  border-bottom: 2px solid #ddd;
}

table.modern tbody tr:nth-child(even) {
  background: #fafafa;
}

table.modern tbody tr:hover {
  background: #f0f7ff;
}

/* Episode list on show pages */
.episode-list {
  list-style: none;
  padding: 0;
}

.episode-item {
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid #eee;
}

.episode-item:last-child {
  border-bottom: none;
}

.episode-item h3 {
  margin: 0 0 0.25rem 0;
}

/* Episode detail page */
.episode-page {
  max-width: 48rem;
}

.episode-breadcrumb {
  margin-bottom: 0.5rem;
  font-size: 0.9rem;
}

.episode-meta {
  color: #666;
  font-size: 0.9rem;
  margin: 0.25rem 0 1rem;
}

.episode-player {
  width: 100%;
  margin: 1rem 0;
}

.episode-description {
  font-size: 1.05rem;
  color: #333;
}

.ai-disclaimer {
  margin: 1.5rem 0;
  padding: 0.75rem 1rem;
  background: #fff8e1;
  border-left: 4px solid #f0a500;
  font-size: 0.95rem;
  color: #555;
}

.episode-participants ul {
  list-style: none;
  padding: 0;
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.person-role {
  color: #666;
  font-weight: normal;
}

/* Transcript */
.transcript h2 {
  margin-top: 2rem;
}

.transcript-line {
  margin-bottom: 1rem;
}

.transcript-speaker {
  display: block;
  font-weight: 600;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: #555;
  margin-bottom: 0.15rem;
}

.transcript-text {
  margin: 0;
  color: #222;
}