/* =============================================================
   Podcasts Index
   ============================================================= */

.podcasts-index {
  padding: 4rem 2rem;
}

.podcasts-index__inner {
  max-width: var(--column-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

.podcast-card {
  display: flex;
  gap: 1.5rem;
  background: #f9f9f9;
  border-radius: 4px;
  overflow: hidden;
  text-decoration: none;
  color: var(--dark);
  transition: box-shadow 0.2s;
  padding: 1.5rem;
  align-items: flex-start;
}

.podcast-card:hover {
  box-shadow: 0 4px 16px rgba(0,0,0,0.08);
}

.podcast-card__image {
  flex-shrink: 0;
  width: 100px;
  height: 100px;
  border-radius: 4px;
  overflow: hidden;
  background: var(--sage);
  display: flex;
  align-items: center;
  justify-content: center;
}

.podcast-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.podcast-card__image-placeholder {
  font-size: 2rem;
}

.podcast-card__episode {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--terracotta);
}

.podcast-card__title {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 400;
  margin: 0.25rem 0;
  color: var(--dark);
}

.podcast-card__date,
.podcast-card__duration {
  font-size: 0.8rem;
  color: #888;
  margin: 0;
}

.podcast-card__description {
  font-size: 0.875rem;
  line-height: 1.6;
  color: #555;
  margin-top: 0.5rem;
}

@media (max-width: 768px) {
  .podcasts-index__inner {
    grid-template-columns: 1fr;
  }
}

/* =============================================================
   Podcast Entry
   ============================================================= */

.podcast-entry {
  padding: 16rem 2rem 4rem;
    background: linear-gradient(to bottom, #75a096 0px, #75a096 80px, #ffffff 250px);
}

.podcast-entry__inner {
  max-width: 860px;
  margin: 0 auto;
}

.podcast-entry__header {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 2.5rem;
  align-items: start;
  margin-bottom: 3rem;
}

.podcast-entry__image {
  width: 100%;
  border-radius: 4px;
}

.podcast-entry__episode {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--terracotta);
}

.podcast-entry__title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 400;
  color: var(--sage);
  margin: 0.25rem 0 0.5rem;
}

.podcast-entry__host {
  font-size: 0.9rem;
  color: #666;
  margin-bottom: 0.75rem;
}

.podcast-entry__details {
  display: flex;
  gap: 1rem;
  font-size: 0.8rem;
  color: #888;
  margin-bottom: 1.5rem;
}

.podcast-entry__embed {
  margin-bottom: 2rem;
}

.podcast-entry__description {
  font-size: 1rem;
  line-height: 1.8;
  color: #444;
}

@media (max-width: 600px) {
  .podcast-entry__header {
    grid-template-columns: 1fr;
  }
}