.podcast-wrapper {
  max-width: 800px;
  margin: 0 auto;
  padding: 20px;
}

.podcast-wrapper h1 {
  font-size: 2.5em;
  text-align: center;
  margin-bottom: 10px;
}

.podcast-wrapper p {
  font-size: 1.1em;
  text-align: center;
  margin-bottom: 30px;
}

.podcast-cta {
  background: #fef3c7;
  color: #7c2d12;
  padding: 15px;
  margin: 20px auto 30px;
  text-align: center;
  font-weight: bold;
  border: 1px solid #fcd34d;
  border-radius: 8px;
  max-width: 700px;
}

.podcast-cta span.comment-call {
  color: #b91c1c;
  text-decoration: underline;
}

.podcast-episode {
  border-bottom: 1px solid #ddd;
  padding-bottom: 20px;
  margin-bottom: 30px;
}

.podcast-flex {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  flex-wrap: wrap;
}

.podcast-thumb {
  flex: 0 0 200px;
}

.podcast-thumb img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.podcast-content {
  flex: 1;
}

.podcast-content h3 {
  margin-top: 0;
}

.podcast-episode audio {
  width: 100%;
  margin-top: 10px;
}

.podcast-episode a {
  display: inline-block;
  margin-top: 10px;
  text-decoration: none;
  color: #d33;
  font-weight: bold;
}

.pagination {
  text-align: center;
  margin-top: 40px;
}

/* 📱 MOBILE STACKING: Make image stack on top for screens < 768px */
@media (max-width: 767px) {
  .podcast-flex {
    flex-direction: column;
  }

  .podcast-thumb {
    width: 100%;
    text-align: center;
    margin-bottom: 15px;
  }

  .podcast-thumb img {
    width: 100%;
    max-width: 100%;
  }

  .podcast-content {
    width: 100%;
  }

  .podcast-content h3,
  .podcast-episode audio,
  .podcast-episode a {
    text-align: center;
  }
}
