/* Page-scoped enhancements for show/episode pages */

.shows-tools {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 18px;
}

.shows-search {
  font-weight: 700;
  color: var(--ink, #0f172a);
}

/* Many pages already have .input in site.css. This keeps it consistent if not. */
.input {
  width: min(520px, 100%);
  padding: 10px 12px;
  border: 1px solid rgba(15, 23, 42, 0.18);
  border-radius: 12px;
  background: #fff;
}

.episodes {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

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

.episode {
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 16px;
  padding: 14px 14px 12px;
  background: #fff;
  box-shadow: 0 1px 2px rgba(15, 23, 42, 0.06);
}

.episode h3 {
  margin: 0 0 10px;
  font-size: 1rem;
  line-height: 1.35;
}

/* Make players look intentional, not full width */
.episode audio {
  width: 100%;
  max-width: 560px;
  display: block;
}

/* Center the player if the card is wider than max-width */
.episode audio {
  margin-left: auto;
  margin-right: auto;
}
