/* ── Podcasts Page Specific Styling ──────────────── */

.podcasts-list {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0 0 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.podcasts-list li {
  all: unset;
  display: block;
}

.podcasts-list a {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.25rem 1.5rem;
  background: rgba(247, 244, 239, 0.72);
  border: 1px solid var(--st-line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft-sm);
  text-decoration: none;
  color: var(--st-field);
  font-size: 1.1rem;
  font-weight: 500;
  font-family: var(--font-ui);
  transition: all 150ms ease;
}

.podcasts-list a:hover {
  background: rgba(66, 86, 74, 0.06);
  border-color: color-mix(in srgb, var(--st-plum) 55%, var(--st-line));
  color: var(--st-ink);
  transform: translateY(-2px);
  box-shadow: var(--shadow-soft);
}

.podcasts-list a:focus-visible {
  outline: 2px solid color-mix(in srgb, var(--st-plum) 70%, white);
  outline-offset: 2px;
  border-radius: var(--radius-md);
}

/* ── Podcast Cover Image ─────────────────────────── */

.podcast-cover {
  display: block;
  max-width: 240px;
  width: 100%;
  height: auto;
  margin: 1.5rem 0;
  border-radius: var(--radius-lg);
  border: 1px solid var(--st-line);
  box-shadow: var(--shadow-soft-sm);
  object-fit: cover;
}

@media (max-width: 768px) {
  .podcasts-list {
    gap: 0.75rem;
  }

  .podcasts-list a {
    padding: 1rem 1.25rem;
    font-size: 1rem;
  }

  .podcast-cover {
    max-width: 100%;
    margin: 1rem 0;
  }
}
