/* CBCC podcast component styles (shared: homepage + podcast page) */
/* ── Podcast Section ── */
.cbcc-podcast-section__inner {
  display: flex;
  gap: 64px;
  align-items: flex-start;
}
.cbcc-podcast-section__info {
  flex: 0 0 280px;
}
.cbcc-podcast-section__artwork {
  margin-bottom: 20px;
}
.cbcc-podcast-section__artwork img {
  width: 140px;
  height: 140px;
  border-radius: 16px;
  object-fit: cover;
  box-shadow: var(--shadow-large);
}
.cbcc-podcast-section__artwork-placeholder {
  width: 140px;
  height: 140px;
  border-radius: 16px;
  background: rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 48px;
}
.cbcc-podcast-section__info h2 { margin-bottom: 10px; }
.cbcc-podcast-platform-links {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.cbcc-podcast-platform-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  color: rgba(255,255,255,0.65);
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-pill);
  padding: 7px 14px;
  text-decoration: none;
  transition: background 0.15s, color 0.15s;
  width: fit-content;
}
.cbcc-podcast-platform-link:hover { background: rgba(255,255,255,0.15); color: #fff; text-decoration: none; }

.cbcc-podcast-section__episodes {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.cbcc-podcast-episode {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 14px 16px;
  border-radius: var(--radius-md);
  transition: background 0.15s;
  cursor: pointer;
}
.cbcc-podcast-episode:hover { background: rgba(255,255,255,0.05); }
.cbcc-podcast-episode--latest {
  background: rgba(255,255,255,0.07);
}
.cbcc-podcast-episode__play {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: rgba(255,255,255,0.7);
  transition: background 0.15s;
}
.cbcc-podcast-episode:hover .cbcc-podcast-episode__play { background: var(--c-primary); color: #fff; }
.cbcc-podcast-episode__info { flex: 1; overflow: hidden; }
.cbcc-podcast-episode__meta {
  font-family: var(--font-body);
  font-size: 12px;
  color: rgba(255,255,255,0.38);
  margin-bottom: 3px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.cbcc-podcast-episode__title {
  font-family: var(--font-body);
  font-size: 14.5px;
  font-weight: 600;
  color: rgba(255,255,255,0.82);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.cbcc-podcast-episode--latest .cbcc-podcast-episode__title { font-size: 15.5px; color: #fff; }
.cbcc-podcast-episode__time { text-align: right; flex-shrink: 0; }
.cbcc-podcast-episode__date { font-size: 12px; color: rgba(255,255,255,0.35); margin-bottom: 3px; }
.cbcc-podcast-episode__duration { font-size: 12.5px; font-weight: 600; color: rgba(255,255,255,0.45); }


/* ===== Podcast page-specific ===== */
.cbcc-podcast-page .cbcc-podcast-section__inner{align-items:flex-start;}
.cbcc-podcast-page .cbcc-podcast-section__info{position:sticky;top:100px;flex:0 0 300px;}
.cbcc-podcast-page .cbcc-podcast-section__artwork img{width:180px;height:180px;border-radius:16px;object-fit:cover;box-shadow:var(--shadow-large);}
.cbcc-podcast-page .cbcc-podcast-section__platform-links{flex-direction:row;flex-wrap:wrap;}
.cbcc-podcast-episode__title a{color:inherit;text-decoration:none;}
.cbcc-podcast-episode__title a:hover{text-decoration:underline;}
button.cbcc-podcast-episode__play{cursor:pointer;padding:0;font:inherit;color:inherit;}
button.cbcc-podcast-episode__play[disabled]{cursor:default;opacity:.45;}
.cbcc-podcast-page{--x:0;}
@media(max-width:860px){.cbcc-podcast-page .cbcc-podcast-section__inner{flex-direction:column;gap:36px;}.cbcc-podcast-page .cbcc-podcast-section__info{position:static;flex-basis:auto;width:100%;}}
