/* Podcast (Simplecast) deep-dive — augments the shared channel styles.
   Small palette + a few episode-title tweaks. */

.page-lede {
  font-size: 13px;
  line-height: 1.55;
  color: var(--color-ink-soft);
  margin: 8px 2px 18px;
  padding: 12px 14px;
  background: var(--color-bg-subtle);
  border-left: 3px solid #ef5b25;    /* Simplecast brand orange */
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
}

.ep-title {
  font-weight: 500;
  max-width: 480px;
}
.ep-num {
  display: inline-block;
  font-family: var(--font-serif);
  font-size: 12px;
  color: var(--color-muted);
  margin-right: 6px;
  padding: 1px 6px;
  border-radius: 999px;
  background: var(--color-bg-subtle);
}

.sub-h {
  font-family: var(--font-serif);
  font-size: 13px;
  font-weight: 600;
  color: var(--color-muted);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin: 0 0 8px;
}

.card-note {
  font-size: 11px;
  line-height: 1.4;
  color: var(--color-muted);
  margin: 10px 2px 0;
}

/* Listening card — two-section layout (Podcast apps + Video platform).
   Self-contained styles (don't inherit from social.css, which this page
   doesn't load). Grid gives the app label / bar / value a stable 3-column
   layout regardless of app-name length. */
#apps-list .app-section {
  margin-top: 18px;
}
#apps-list .app-section:first-child {
  margin-top: 0;
}
.app-section-title {
  font-family: var(--font-serif);
  font-size: 11px;
  font-weight: 700;
  color: var(--color-muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin: 0 0 10px;
  padding-bottom: 6px;
  border-bottom: 1px solid var(--color-line);
}
.app-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.app-row {
  display: grid;
  grid-template-columns: 170px 1fr 140px;
  align-items: center;
  gap: 10px;
  font-size: 13px;
}
@media (max-width: 640px) {
  .app-row { grid-template-columns: 120px 1fr 110px; font-size: 12px; }
}
.app-label {
  display: flex;
  align-items: center;
  gap: 8px;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  color: var(--color-ink);
}
.app-dot {
  display: inline-block;
  width: 9px; height: 9px;
  border-radius: 2px;
  background: #ef5b25;     /* Simplecast palette accent for podcast apps */
  flex-shrink: 0;
}
.app-dot-youtube { background: #ff0000; }

.app-bar-track {
  background: var(--color-bg-subtle);
  border-radius: 999px;
  height: 8px;
  overflow: hidden;
}
.app-bar-fill {
  height: 100%;
  border-radius: 999px;
  background: #ef5b25;
  min-width: 2px;
  transition: width 200ms;
}
.app-bar-youtube { background: #ff0000; }

.app-value {
  font-size: 12px;
  font-weight: 600;
  text-align: right;
  color: var(--color-ink-soft);
  white-space: nowrap;
}

.app-note {
  font-size: 11px;
  color: var(--color-muted);
  margin: 10px 2px 0;
  line-height: 1.45;
}
.app-note em { color: var(--color-ink-soft); font-style: normal; font-weight: 600; }

/* Small badges in the episode-table header showing which platform each
   column comes from. Two colors — Simplecast orange, YouTube red. */
.ep-src {
  display: inline-block;
  width: 16px; height: 16px;
  border-radius: 4px;
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  line-height: 16px;
  text-align: center;
  margin-right: 4px;
  vertical-align: -2px;
}
.ep-src-simplecast { background: #ef5b25; }
.ep-src-youtube    { background: #ff0000; }

.ep-yt-link {
  display: inline-block;
  margin-left: 6px;
  color: var(--color-muted);
  text-decoration: none;
  font-size: 12px;
}
.ep-yt-link:hover { color: #ff0000; }
