.pma2-grid{display:grid;grid-template-columns:repeat(12,1fr);gap:14px}
.pma2-list{display:flex;flex-direction:column;gap:12px}
.pma2-card{grid-column:span 4;background:rgba(20,27,39,.6);border:1px solid rgba(0,0,0,.12);padding:14px;border-radius:16px}
.pma2-title{margin:6px 0 0 0;font-weight:800}
.pma2-meta{font-size:12px;opacity:.75}
.pma2-excerpt{margin:8px 0 0 0;opacity:.9}
.pma2-search{display:flex;gap:8px;align-items:center;margin:10px 0}
.pma2-search input{flex:1;padding:10px 12px;border-radius:12px;border:1px solid rgba(0,0,0,.14);background:rgba(255,255,255,.7)}
.pma2-search button{padding:10px 12px;border-radius:12px;border:1px solid rgba(0,0,0,.14);background:rgba(255,255,255,.7);cursor:pointer}
.pma2-player{margin:14px 0;padding:14px;border-radius:16px;border:1px solid rgba(0,0,0,.12);background:rgba(255,255,255,.5)}
.pma2-btn{display:inline-block;margin-top:10px;padding:10px 12px;border-radius:12px;border:1px solid rgba(0,0,0,.12);text-decoration:none}
.pma2-form{max-width:560px;display:flex;flex-direction:column;gap:10px}
.pma2-form input{width:100%;padding:10px 12px;border-radius:12px;border:1px solid rgba(0,0,0,.14);background:rgba(255,255,255,.7)}
.pma2-form button{padding:10px 12px;border-radius:12px;border:1px solid rgba(0,0,0,.14);background:rgba(255,255,255,.7);cursor:pointer}
.pma2-notice{padding:10px 12px;border-radius:12px;border:1px solid rgba(0,0,0,.12);background:rgba(34,197,94,.12);margin-bottom:10px}
@media (max-width:900px){.pma2-card{grid-column:span 12}}
/* ── PMA2 Podcast Cards Grid ─────────────────────────────────────── */
.pmu-podcasts-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 18px;
  padding: 16px 0;
}
.pmu-podcast-card {
  display: flex;
  flex-direction: column;
  border-radius: 12px;
  overflow: hidden;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.10);
  text-decoration: none;
  color: inherit;
  transition: transform .18s, box-shadow .18s;
}
.pmu-podcast-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 28px rgba(0,0,0,.35);
}
.pmu-podcast-card__cover {
  width: 100%;
  aspect-ratio: 1;
  overflow: hidden;
  background: #1a1a2e;
}
.pmu-podcast-card__cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.pmu-podcast-card__body {
  padding: 10px 12px 12px;
}
.pmu-podcast-card__title {
  font-size: .875rem;
  font-weight: 700;
  margin: 0 0 4px;
  line-height: 1.3;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* ── Episode List Items ──────────────────────────────────────────── */
.pmu-episodes-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 8px 0;
}
.pmu-ep-item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 10px;
  border-radius: 10px;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  transition: background .15s;
}
.pmu-ep-item:hover { background: rgba(255,255,255,.09); }
.pmu-ep-item__cover {
  flex-shrink: 0;
  width: 88px;
  height: 88px;
  border-radius: 8px;
  overflow: hidden;
  position: relative;
  background: #111;
}
.pmu-ep-item__cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.pmu-ep-item__play-icon {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0,0,0,.45);
  color: #fff;
  font-size: 22px;
  opacity: 0;
  transition: opacity .18s;
  text-decoration: none;
}
.pmu-ep-item__cover:hover .pmu-ep-item__play-icon { opacity: 1; }
.pmu-ep-item__thumb-link { display: block; width: 100%; height: 100%; position: relative; }
.pmu-ep-item__body {
  flex: 1;
  min-width: 0;
}
.pmu-ep-item__title {
  font-size: .9rem;
  font-weight: 700;
  margin: 0 0 5px;
  line-height: 1.35;
}
.pmu-ep-item__title a { color: inherit; text-decoration: none; }
.pmu-ep-item__title a:hover { text-decoration: underline; }
.pmu-ep-item__show {
  display: block;
  font-size: .78rem;
  color: rgba(244,246,255,.6);
  margin-bottom: 3px;
}
.pmu-ep-item__show a { color: inherit; text-decoration: none; }
.pmu-ep-item__date { font-size: .75rem; color: rgba(244,246,255,.4); }

/* ── YouTube Embed Player ────────────────────────────────────────── */
.pmu-yt-embed-wrap {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%; /* 16:9 */
  height: 0;
  overflow: hidden;
  border-radius: 12px;
  background: #000;
  margin-bottom: 20px;
}
.pmu-yt-embed {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

/* ── Audio Player ────────────────────────────────────────────────── */
.pmu-audio-player {
  margin-bottom: 20px;
  padding: 16px;
  background: rgba(255,255,255,.06);
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,.10);
}
.pmu-audio { width: 100%; }

/* ── Episode cover art fallback ──────────────────────────────────── */
.pmu-ep-cover-art {
  margin-bottom: 20px;
  border-radius: 12px;
  overflow: hidden;
  max-width: 280px;
}
.pmu-ep-cover-art img { width: 100%; display: block; }

/* ── Archive Page Title ──────────────────────────────────────────── */
.pmu-archive-title {
  font-size: 1.6rem;
  font-weight: 800;
  margin: 20px 0 16px;
  letter-spacing: -.02em;
}

/* ── Ad Zones ────────────────────────────────────────────────────── */
.pmu-ad-zone {
  width: 100%;
  min-height: 0;
  margin: 12px 0;
  text-align: center;
  overflow: hidden;
}
.pmu-ad-zone:empty { display: none; }
.pmu-ad-zone ins,
.pmu-ad-zone > * { display: block; margin: 0 auto; }

/* ── Responsive ──────────────────────────────────────────────────── */
@media (max-width: 600px) {
  .pmu-podcasts-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .pmu-ep-item__cover { width: 68px; height: 68px; }
  .pmu-yt-embed-wrap { border-radius: 8px; }
}