/* ============================================================
   PODCAST-SEITEN (/podcast, /podcast/<slug>)
   Wird nur auf Podcast-Seiten geladen (BaseLayout extraStylesheet).
   Nutzt die Tokens aus styles.css (:root) plus eigenen orangen Akzent.
   ============================================================ */

.pod {
  --pod-accent: oklch(0.5 0.14 45);
  --pod-accent-dark: oklch(0.42 0.13 45);
  --pod-card: oklch(0.99 0.012 85);
  --pod-card-border: oklch(0.91 0.025 85);
  --pod-warm: oklch(0.93 0.045 70);
  padding: calc(var(--header-height) + 3rem) 1.5rem 5rem;
  background: var(--color-cream);
}

.pod__inner {
  max-width: 1080px;
  margin: 0 auto;
}

.pod h1,
.pod h2 {
  max-width: none;
  hyphens: manual;
  overflow-wrap: break-word;
}

.pod__eyebrow-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
}

.pod__badge {
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--pod-accent);
  background: var(--pod-warm);
  padding: 7px 14px;
  border-radius: 999px;
}

.pod__date {
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(43, 43, 43, 0.55);
}

.pod h1 {
  font-size: clamp(2.2rem, 5.4vw, 4rem);
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin: 0 0 0.5rem;
  max-width: 22ch;
}

.pod__subtitle {
  font-size: clamp(1.2rem, 2vw, 1.45rem);
  font-weight: 700;
  color: var(--pod-accent);
  margin: 0 0 2.25rem;
  max-width: 44ch;
}

/* ---- Zwei-Spalten: Cover links, Player + Text rechts ---- */

.pod__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
  align-items: start;
}

.pod__cover {
  width: 100%;
  height: auto;
  aspect-ratio: 1200 / 627;
  border-radius: 18px;
  box-shadow: 0 20px 44px rgba(43, 43, 43, 0.16);
}

.pod__col {
  display: flex;
  flex-direction: column;
  gap: 1.35rem;
}

.pod__body p {
  margin: 0;
  font-size: 1.12rem;
  line-height: 1.7;
  color: oklch(0.32 0.025 60);
}

/* ---- Custom Player ---- */

.pod__player {
  padding: 1.35rem;
  background: var(--pod-card);
  border: 2px solid var(--pod-card-border);
  border-radius: 18px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.pod__player-row {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.pod__play {
  flex: none;
  width: 58px;
  height: 58px;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  background: var(--pod-accent);
  color: oklch(0.99 0.01 85);
  font-size: 1.15rem;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.15s ease, background 0.15s ease;
}

.pod__play:hover {
  background: var(--pod-accent-dark);
  transform: scale(1.05);
}

.pod__bar-wrap {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}

.pod__bar {
  height: 8px;
  border-radius: 999px;
  background: oklch(0.92 0.02 85);
  overflow: hidden;
  cursor: pointer;
}

.pod__bar:focus-visible {
  outline: 2px solid var(--pod-accent);
  outline-offset: 3px;
}

.pod__fill {
  height: 100%;
  width: 0;
  border-radius: 999px;
  background: var(--pod-accent);
}

.pod__time {
  display: flex;
  justify-content: space-between;
  font-size: 0.85rem;
  font-weight: 700;
  color: rgba(43, 43, 43, 0.55);
}

.pod__player-note {
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.55;
  color: rgba(43, 43, 43, 0.6);
}

.pod__player-note a {
  color: var(--pod-accent);
}

/* ---- Kartoffel-Pullquote ---- */

.pod__quote {
  display: flex;
  align-items: center;
  gap: 1rem;
  background: var(--pod-warm);
  border-radius: 16px;
  padding: 1.1rem 1.25rem;
}

.pod__quote img {
  width: 56px;
  height: 56px;
  flex: none;
  object-fit: contain;
  animation: ppFloatPod 5.5s ease-in-out infinite;
}

@keyframes ppFloatPod {
  0%, 100% { transform: translateY(0) rotate(-3deg); }
  50% { transform: translateY(-10px) rotate(3deg); }
}

@media (prefers-reduced-motion: reduce) {
  .pod__quote img { animation: none; }
}

.pod__quote p {
  margin: 0;
  font-weight: 700;
  font-size: 1.02rem;
  line-height: 1.5;
  color: oklch(0.34 0.06 50);
}

/* ---- Quelle ---- */

.pod__sources {
  margin: 0.5rem 0 0;
  font-size: 0.9rem;
  line-height: 1.5;
  color: rgba(43, 43, 43, 0.6);
}

.pod__sources a {
  color: var(--pod-accent);
}

/* ---- Transkript (optional) ---- */

.pod__transcript {
  margin-top: 2.75rem;
  background: var(--pod-card);
  border: 2px solid var(--pod-card-border);
  border-radius: 18px;
  padding: 1.6rem 1.85rem;
}

.pod__transcript h2 {
  margin: 0 0 0.9rem;
  font-size: 0.9rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--pod-accent);
}

.pod__transcript p {
  margin: 0 0 0.75rem;
  font-size: 1.06rem;
  line-height: 1.7;
  color: oklch(0.34 0.025 60);
}

.pod__transcript p:last-child {
  margin-bottom: 0;
}

/* ---- Teilen ---- */

.pod__share {
  margin: 3rem 0 0;
  padding: 2rem 0 0;
  border-top: 2px solid var(--pod-card-border);
}

.pod__share-label {
  margin: 0 0 1rem;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--pod-accent);
}

.pod__share-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}

.pod__share-btn {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 0.65rem 1.25rem;
  border: 2px solid var(--pod-card-border);
  border-radius: 999px;
  background: var(--pod-card);
  color: var(--color-ink);
  font-size: 0.95rem;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
  transition: border-color 0.15s ease, transform 0.15s ease, color 0.15s ease;
}

.pod__share-btn:hover {
  border-color: var(--pod-accent);
  color: var(--pod-accent);
  transform: translateY(-2px);
}

/* ---- Zurück / CTA ---- */

.pod__back {
  margin-top: 2.5rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.pod__btn {
  display: inline-flex;
  align-items: center;
  min-height: 50px;
  padding: 0.85rem 1.4rem;
  border-radius: 12px;
  font-size: 1rem;
  font-weight: 700;
  text-decoration: none;
  border: 2px solid oklch(0.86 0.03 80);
  color: var(--color-ink);
  background: transparent;
  transition: border-color 0.15s ease, background 0.15s ease, transform 0.15s ease;
}

.pod__btn:hover {
  border-color: var(--pod-accent);
  transform: translateY(-2px);
}

.pod__btn--primary {
  border-color: transparent;
  color: oklch(0.98 0.01 85);
  background: var(--pod-accent);
}

.pod__btn--primary:hover {
  background: var(--pod-accent-dark);
  border-color: transparent;
}

/* ---- Übersichtsliste (/podcast) ---- */

.pod__lead {
  font-size: 1.15rem;
  line-height: 1.6;
  color: var(--color-ink);
  max-width: 60ch;
  margin: 0.4rem 0 2.5rem;
}

.pod__list {
  display: grid;
  gap: 1.25rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.pod__card {
  display: grid;
  grid-template-columns: minmax(0, 300px) minmax(0, 1fr);
  gap: 1.25rem 1.5rem;
  align-items: center;
  padding: 1.1rem;
  background: var(--pod-card);
  border: 2px solid var(--pod-card-border);
  border-radius: 16px;
  text-decoration: none;
  color: inherit;
  transition: transform 0.16s ease, box-shadow 0.16s ease;
}

.pod__card:hover {
  transform: translateY(-3px);
  box-shadow: 0 26px 80px rgba(43, 43, 43, 0.16);
}

.pod__card img {
  width: 100%;
  height: auto;
  aspect-ratio: 1200 / 627;
  border-radius: 8px;
}

.pod__card-meta {
  margin: 0 0 0.4rem;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--pod-accent);
}

.pod__card h2 {
  font-size: clamp(1.3rem, 2.6vw, 1.7rem);
  line-height: 1.12;
  margin: 0 0 0.4rem;
  color: var(--color-ink);
}

.pod__card p {
  margin: 0;
  font-size: 1rem;
  line-height: 1.5;
  color: rgba(43, 43, 43, 0.72);
}

@media (max-width: 640px) {
  .pod__card {
    grid-template-columns: 1fr;
  }
}
