/* =============================
   SSP Podcast Archiv Layout
   ============================= */

/* Hintergrund auf die gesamte Seite */
body.post-type-archive-podcast,
body.tax-podcast_series {
  background-color: #FAF5E5 !important;
}

/* Container für den Inhalt */
.podcast-archive-wrapper {
  padding: 3rem 1rem;
  max-width: 1400px;
  margin: 0 auto;
}

/* Titel */
.podcast-archive-title {
  font-size: 2.4rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 3rem;
  color: #111;
}

/* Grid */
.podcast-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2rem;
}

/* Karte */
.podcast-card {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  display: flex;
  flex-direction: column;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.podcast-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.12);
}

/* Bild */
.podcast-thumb img {
  width: 100%;
  aspect-ratio: 1 / 1; /* quadratisch */
  object-fit: cover;
  display: block;
}

/* Inhalt */
.podcast-content {
  padding: 1.2rem;
}

.podcast-date {
  font-size: 0.9rem;
  color: #D09A40;
  margin-bottom: 0.5rem;
}

.podcast-title {
  font-size: 1.2rem;
  font-weight: 600;
  margin: 0 0 0.75rem;
}

.podcast-title a {
  color: #111;
  text-decoration: none;
}
.podcast-title a:hover {
  text-decoration: underline;
}

.podcast-excerpt {
  font-size: 0.95rem;
  line-height: 1.6;
  color: #444;
}

/* Mobile */
@media (max-width: 768px) {
  .podcast-archive-title {
    font-size: 1.8rem;
    margin-bottom: 2rem;
  }

  .podcast-content {
    padding: 1rem;
  }
}
/* === Podcast Single Layout Optimierung === */

/* Gesamte Podcast-Seite enger machen */
.single-podcast .site-main {
  padding-top: 1.5rem;    /* kleiner Abstand nach oben */
  padding-bottom: 1.5rem; /* kleiner Abstand nach unten */
  max-width: 800px;
  margin: 0 auto;
}

/* Player näher an den Titel holen */
.single-podcast .entry-content audio {
  margin-top: 1rem;
  margin-bottom: 1.5rem;
  display: block;
  width: 100%;
}

/* Kommentarbereich näher rücken */
.single-podcast .comments-area {
  margin-top: 2rem;   /* bisher oft 5–6rem von Astra */
  padding-top: 1rem;
  border-top: 1px solid #eee;
}
