/* Allgemeines Layout */
body {
  font-family: monospace;
  max-width: 700px;
  margin: 2rem auto;
  line-height: 1.6;
  padding: 0 1rem;
  background-color: #fff;
  color: #000;
}

p {
  margin-bottom: 1rem;
}

/* Logo in Space Grotesk */
.logo {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 2rem;
  margin-bottom: 1rem;
}

/* Headings */
h2 {
  font-size: 1.4rem;
  margin-top: 2rem;
  margin-bottom: 1rem; /* etwas mehr Balance */
}

h3 {
  font-size: 1rem;
  margin: 0 0 0.25rem;
}

/* Abschnittstrenner */
hr {
  border: 0;
  border-top: 1px solid #d9d9d9;
  margin: 1.5rem 0;
}

.footer-line {
  margin: 2rem 0 1rem;
}

/* Episode */
.episode {
  margin-bottom: 2rem; /* leicht kleiner als vorher */
}

.episode p {
  margin-bottom: 0.5rem; /* enger zum Audio */
}

audio {
  display: block;
  margin-top: 0.25rem; /* vorher 1rem */
  width: 100%;
  max-width: 500px;
}

/* Transkript */
summary {
  cursor: pointer;
  font-weight: 500;
  font-size: 0.95em;
  color: #222;
  margin-top: 0.5rem;
}

details p {
  background-color: #f8f8f8;
  padding: 0.8em;
  margin-top: 0.5em;
  border-radius: 4px;
  white-space: pre-line;
  font-style: italic;
}

/* Links */
a {
  color: blue;
  text-decoration: underline;
}

a:visited {
  color: purple;
}

a:hover {
  text-decoration: none;
}

/* Footer */
footer {
  margin-top: 1.5rem;
  text-align: left;
  font-size: 0.75rem;
  color: #888;
}

footer p {
  margin: 0.2rem 0;
}

.copyright {
  font-size: 0.7rem;
  color: #666;
}
