/* ================================================================
   Mishpacha — Podcast Single Page  (taxonomy-podcasts.php)
   ================================================================ */

/* CSS variables (podcasts.css is not loaded here, so define locally) */
:root {
  --pod-red:      var(--red);
  --pod-red-dark: var(--red-dark);
  --pod-red-deep: #520003;
  --pod-ink:      var(--ink);
  --pod-ink-2:    #030813;
  --pod-gm:       #737373;
  --pod-g1:       #5C5C5C;
  --pod-g2:       #A8A8A8;
  --pod-g3:       #DFDFDF;
  --pod-g4:       #EDEDED;
  --pod-cream:    #FBF7F3;
  --pod-serif:    var(--font-serif);
  --pod-sans:     var(--font-sans);
}

#taxonomy-podcast { font-family: var(--pod-sans); font-size: 14px; color: var(--pod-ink); }
#taxonomy-podcast *, #taxonomy-podcast *::before, #taxonomy-podcast *::after { box-sizing: border-box; }
#taxonomy-podcast a   { color: inherit; text-decoration: none; }
#taxonomy-podcast img { display: block; max-width: 100%; }
#taxonomy-podcast button { font: inherit; background: none; border: 0; cursor: pointer; color: inherit; }

/* ── Wrapper ── */
.ps-wrap { max-width: 1440px; margin: 0 auto; padding: 0 38px; }

/* ── Eyebrow ── */
.ps-eyebrow {
  font-size: 11px; font-weight: 700; letter-spacing: .16em; text-transform: uppercase;
  color: var(--pod-red); display: inline-flex; align-items: center; gap: 10px;
}
.ps-eyebrow::before { content: ""; display: block; width: 24px; height: 1px; background: var(--pod-red); }

/* ── Badge ── */
.ps-badge {
  display: inline-flex; align-items: center; gap: 5px; font-size: 10px;
  font-weight: 600; letter-spacing: .08em; text-transform: uppercase; padding: 4px 9px; border-radius: 999px;
}
.ps-badge--new  { background: var(--pod-red); color: #fff; }
.ps-badge--cat  { background: rgba(222,28,34,.1); color: var(--pod-red); }
.ps-badge--dark { background: rgba(255,255,255,.1); color: #fff; border: 1px solid rgba(255,255,255,.2); }

/* ── Buttons ── */
#taxonomy-podcast .ps-btn-primary {
  display: inline-flex; align-items: center; gap: 10px; background: var(--pod-red);
  color: #fff; font-weight: 600; font-size: 14px; padding: 14px 22px; border-radius: 6px;
  transition: background .15s, transform .15s;
}
#taxonomy-podcast .ps-btn-primary:hover { background: var(--pod-red-dark); transform: translateY(-1px); }

.ps-btn-ghost {
  display: inline-flex; align-items: center; gap: 10px; background: transparent;
  color: #fff; font-weight: 500; font-size: 14px; padding: 14px 22px; border-radius: 6px;
  border: 1px solid rgba(255,255,255,.22); transition: background .15s, border-color .15s;
}
.ps-btn-ghost:hover { background: rgba(255,255,255,.06); border-color: rgba(255,255,255,.4); }

/* ── Section header ── */
.ps-sec-head { display: flex; align-items: flex-end; justify-content: space-between; gap: 24px; margin-bottom: 28px; }
.ps-sec-h {
  font-family: var(--pod-serif); font-size: 32px; font-weight: 600;
  line-height: 1.05; letter-spacing: -.015em; margin-top: 14px;
}
.ps-sec-link {
  font-size: 13px; font-weight: 600; color: var(--pod-red);
  display: inline-flex; align-items: center; gap: 6px; flex-shrink: 0; padding-bottom: 6px;
}
.ps-sec-link::after { content: "→"; transition: transform .2s; }
.ps-sec-link:hover::after { transform: translateX(4px); }

/* ================================================================
   BREADCRUMB
   ================================================================ */
.ps-bc { background: var(--pod-cream); padding: 14px 0; border-bottom: 1px solid var(--pod-g3); }
.ps-bc-in { display: flex; align-items: center; gap: 8px; font-size: 12px; color: var(--pod-gm); }
.ps-bc-in a { color: var(--pod-gm); transition: color .15s; }
.ps-bc-in a:hover { color: var(--pod-red); }
.ps-bc-sep { color: var(--pod-g2); font-size: 11px; }
.ps-bc-cur { color: var(--pod-ink); font-weight: 500; }

/* ================================================================
   HERO
   ================================================================ */
.ps-hero {
  background: var(--pod-ink); color: #fff; position: relative; overflow: hidden;
  padding: 64px 0 48px; border-bottom: 6px solid var(--pod-red);
}
.ps-hero::before {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background:
    radial-gradient(900px 360px at 88% 20%, rgba(222,28,34,.18), transparent 60%),
    radial-gradient(700px 300px at 12% 100%, rgba(222,28,34,.12), transparent 55%);
}
.ps-hero-bg {
  position: absolute; inset: 0; pointer-events: none;
  opacity: .18; filter: blur(60px) saturate(1.3);
  background-size: cover; background-position: center;
}
.ps-hero-grid {
  position: relative;
  display: grid; grid-template-columns: 300px 1fr; gap: 48px; align-items: center;
}
.ps-hero-cov {
  position: relative; width: 300px; height: 300px;
  border-radius: 14px; overflow: hidden;
  box-shadow: 0 30px 70px -20px rgba(0,0,0,.6), 0 0 0 1px rgba(255,255,255,.06);
  flex-shrink: 0;
}
.ps-hero-cov img { width: 100%; height: 100%; object-fit: cover; position: absolute; inset: 0; }
.ps-hero-cov-fb {
  position: absolute; inset: 0; display: flex; align-items: center; justify-content: center;
  font-family: var(--pod-serif); font-weight: 700; font-size: 120px; color: #fff;
  background: linear-gradient(135deg, #520003, var(--pod-red));
}
.ps-hero-cov-play {
  position: absolute; right: 18px; bottom: 18px;
  width: 60px; height: 60px; border-radius: 50%;
  background: #fff; color: var(--pod-ink);
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 12px 30px -8px rgba(0,0,0,.5);
  transition: transform .2s, background .2s;
}
.ps-hero-cov-play:hover { transform: scale(1.05); background: var(--pod-red); color: #fff; }

.ps-hero-eye {
  font-size: 11px; font-weight: 700; letter-spacing: .18em; text-transform: uppercase;
  color: rgba(255,255,255,.8); display: inline-flex; align-items: center; gap: 10px;
  margin-bottom: 16px;
}
.ps-hero-eye::before { content: ""; width: 32px; height: 1px; background: var(--pod-red); }
.ps-hero-tags { display: flex; gap: 8px; margin-bottom: 16px; flex-wrap: wrap; }
.ps-hero-h {
  font-family: var(--pod-serif); font-weight: 700;
  font-size: clamp(48px, 6vw, 80px); line-height: 1; letter-spacing: -.02em; margin-bottom: 16px;
}
.ps-hero-tag {
  font-style: italic; color: rgba(255,255,255,.55); font-size: 17px;
  font-family: var(--pod-serif); font-weight: 400;
  margin-bottom: 22px; display: block; line-height: 1.45; max-width: 560px;
}
.ps-hero-tag em { color: var(--pod-red); font-style: italic; font-weight: 600; }
.ps-hero-meta {
  display: flex; flex-wrap: wrap; gap: 16px; align-items: center;
  font-size: 13px; color: rgba(255,255,255,.55); margin-bottom: 28px;
}
.ps-hero-meta strong { color: #fff; font-weight: 500; }
.ps-hero-meta-dot { width: 3px; height: 3px; background: rgba(255,255,255,.25); border-radius: 50%; }
.ps-hero-cta { display: flex; gap: 12px; flex-wrap: wrap; align-items: center; }

/* Stats strip */
.ps-hstats {
  margin-top: 40px; padding-top: 32px; border-top: 1px solid rgba(255,255,255,.1);
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; position: relative;
}
.ps-hs-n {
  font-family: var(--pod-serif); font-size: 36px; font-weight: 600;
  line-height: 1; letter-spacing: -.02em; margin-bottom: 6px; color: #fff;
}
.ps-hs-l {
  font-size: 11px; font-weight: 600; letter-spacing: .12em;
  text-transform: uppercase; color: rgba(255,255,255,.45);
}

/* ================================================================
   PLATFORMS BAR
   ================================================================ */
.ps-plats-bar { background: var(--pod-cream); padding: 24px 0; border-bottom: 1px solid var(--pod-g3); }
.ps-plats-row { display: flex; align-items: center; gap: 14px; flex-wrap: wrap; }
.ps-plats-lbl {
  font-size: 11px; font-weight: 700; letter-spacing: .14em;
  text-transform: uppercase; color: var(--pod-gm); margin-right: 6px;
}
.ps-plat {
  display: inline-flex; align-items: center; gap: 10px;
  background: #fff; border: 1px solid var(--pod-g3); color: var(--pod-ink);
  font-size: 13px; font-weight: 500; padding: 10px 16px; border-radius: 8px;
  transition: border-color .15s, transform .15s, box-shadow .15s;
}
.ps-plat:hover { border-color: var(--pod-red); transform: translateY(-1px); box-shadow: 0 4px 16px -4px rgba(0,0,0,.1); }
.ps-plat-dot { width: 10px; height: 10px; border-radius: 50%; flex-shrink: 0; }

/* ================================================================
   MAIN SECTION (episodes + sidebar)
   ================================================================ */
.ps-main { padding: 64px 0 88px; background: #fff; }
.ps-main-grid { display: grid; grid-template-columns: 1fr 360px; gap: 64px; align-items: start; }

/* ── Episode filter ── */
.ps-ep-filter { display: flex; align-items: center; gap: 14px; margin-bottom: 24px; flex-wrap: wrap; justify-content: space-between; }
.ps-ep-filter-l { display: flex; gap: 6px; flex-wrap: wrap; }
.ps-ep-chip {
  font-size: 12px; font-weight: 500; color: var(--pod-g1);
  padding: 8px 14px; border-radius: 999px; border: 1px solid var(--pod-g3);
  transition: all .15s; cursor: pointer; background: #fff;
}
.ps-ep-chip:hover { border-color: var(--pod-ink); color: var(--pod-ink); }
.ps-ep-chip.active { background: var(--pod-ink); color: #fff; border-color: var(--pod-ink); }
.ps-ep-chip:disabled { opacity: .45; cursor: default; }

.ps-ep-search {
  display: flex; align-items: center; gap: 8px;
  background: var(--pod-cream); border: 1px solid var(--pod-g3);
  border-radius: 999px; padding: 8px 16px; width: 240px; transition: border-color .15s;
}
.ps-ep-search:focus-within { border-color: var(--pod-ink); }
.ps-ep-search input {
  border: 0; background: transparent; outline: none;
  font: inherit; font-size: 13px; flex: 1; color: var(--pod-ink); width: 100%;
}
.ps-ep-search input::placeholder { color: var(--pod-g2); }

/* ── Episode list ── */
.ps-ep-list { display: flex; flex-direction: column; }

.ps-ep-item {
  display: grid; grid-template-columns: 64px 1fr auto;
  align-items: start; gap: 20px; padding: 24px 16px;
  border-radius: 10px; border-bottom: 1px solid var(--pod-g3);
  transition: background .2s; cursor: pointer; margin: 0 -16px;
}
.ps-ep-item:first-child { border-top: 1px solid var(--pod-g3); }
.ps-ep-item:hover { background: var(--pod-cream); }
.ps-ep-item.ps-playing { background: linear-gradient(90deg, rgba(222,28,34,.04), transparent); }

.ps-ep-cov {
  position: relative; width: 64px; height: 64px; border-radius: 8px; overflow: hidden;
  background: linear-gradient(135deg, #520003, var(--pod-red));
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; box-shadow: 0 4px 12px -4px rgba(0,0,0,.15);
}
.ps-ep-cov img { width: 100%; height: 100%; object-fit: cover; position: absolute; inset: 0; }
.ps-ep-cov-num {
  position: relative; font-family: var(--pod-serif); font-style: italic;
  font-size: 22px; color: rgba(255,255,255,.9); font-weight: 500; z-index: 1;
}
.ps-ep-cov-overlay {
  position: absolute; inset: 0; background: rgba(0,0,0,.55);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; transition: opacity .2s; color: #fff; z-index: 2;
}
.ps-ep-item:hover .ps-ep-cov-overlay,
.ps-ep-item.ps-playing .ps-ep-cov-overlay { opacity: 1; }
.ps-ep-item.ps-playing .ps-ep-cov-overlay { background: rgba(222,28,34,.85); }

.ps-ep-body { min-width: 0; }
.ps-ep-badge-row { display: flex; align-items: center; gap: 8px; margin-bottom: 6px; }
.ps-ep-num { font-size: 11px; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; color: var(--pod-gm); }
.ps-ep-title {
  font-family: var(--pod-serif); font-size: 19px; font-weight: 600;
  line-height: 1.25; color: var(--pod-ink); margin-bottom: 8px;
  letter-spacing: -.01em; transition: color .15s;
}
.ps-ep-item:hover .ps-ep-title,
.ps-ep-item.ps-playing .ps-ep-title { color: var(--pod-red); }
.ps-ep-desc {
  font-size: 13px; color: var(--pod-g1); line-height: 1.55; margin-bottom: 10px;
  display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical;
  overflow: hidden; max-width: 560px;
}
.ps-ep-foot { display: flex; align-items: center; gap: 10px; font-size: 12px; color: var(--pod-gm); flex-wrap: wrap; }
.ps-ep-dot { width: 3px; height: 3px; background: var(--pod-g2); border-radius: 50%; flex-shrink: 0; }

.ps-ep-side { display: flex; flex-direction: column; align-items: flex-end; gap: 10px; flex-shrink: 0; }
.ps-ep-dur {
  font-size: 13px; font-weight: 500; color: var(--pod-ink);
  font-variant-numeric: tabular-nums; background: var(--pod-cream);
  padding: 5px 10px; border-radius: 6px; white-space: nowrap;
}
.ps-ep-actions { display: flex; gap: 6px; opacity: 0; transition: opacity .2s; }
.ps-ep-item:hover .ps-ep-actions { opacity: 1; }
.ps-ep-act {
  width: 30px; height: 30px; border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  color: var(--pod-gm); transition: background .15s, color .15s;
  border: 1px solid var(--pod-g3); background: #fff;
}
.ps-ep-act:hover { background: var(--pod-ink); color: #fff; border-color: var(--pod-ink); }

.ps-ep-empty { padding: 48px 0; text-align: center; color: var(--pod-gm); font-size: 14px; }

/* ── Related articles ── */
.ps-rel-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.ps-rel-card { display: flex; flex-direction: column; gap: 10px; }
.ps-rel-img {
  aspect-ratio: 16/10; overflow: hidden; border-radius: 8px;
  background: var(--pod-g4); position: relative;
}
.ps-rel-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s; }
.ps-rel-card:hover .ps-rel-img img { transform: scale(1.03); }
.ps-rel-img-badge {
  position: absolute; top: 10px; left: 10px;
  background: rgba(255,255,255,.95); color: var(--pod-red);
  font-size: 10px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase;
  padding: 4px 8px; border-radius: 4px;
}
.ps-rel-title {
  font-family: var(--pod-serif); font-size: 16px; font-weight: 600;
  line-height: 1.3; color: var(--pod-ink); transition: color .15s;
}
.ps-rel-card:hover .ps-rel-title { color: var(--pod-red); }
.ps-rel-meta { font-size: 11px; color: var(--pod-gm); }

/* ================================================================
   SIDEBAR
   ================================================================ */
.ps-sidebar { display: flex; flex-direction: column; gap: 24px; }

.ps-card {
  border-radius: 12px; padding: 24px; background: #fff;
  border: 1px solid var(--pod-g3);
}
.ps-card--cream { background: var(--pod-cream); border: 0; }
.ps-card--ink   { background: var(--pod-ink); color: #fff; border: 0; }

.ps-card-h {
  font-size: 11px; font-weight: 600; letter-spacing: .12em; text-transform: uppercase;
  color: var(--pod-gm); margin-bottom: 14px;
  display: flex; align-items: center; gap: 8px;
}
.ps-card--ink .ps-card-h { color: rgba(255,255,255,.55); }
.ps-card-h::before { content: ""; width: 18px; height: 1px; background: var(--pod-red); }

/* Host card */
.ps-host-card { display: flex; flex-direction: column; gap: 8px; }
.ps-host-row {
  display: flex; gap: 14px; align-items: center;
  padding: 10px;
  border-radius: 10px;
  text-decoration: none; color: inherit;
  transition: background .15s, transform .15s;
}
.ps-host-row--link { cursor: pointer; }
.ps-host-row--link:hover {
  background: rgba(0,0,0,.04);
  transform: translateX(2px);
}
.ps-host-row--link:hover .ps-host-name { color: var(--pod-red); }
.ps-host-row--link:hover .ps-host-arrow { color: var(--pod-red); transform: translateX(3px); }
.ps-host-avatar {
  width: 64px; height: 64px; border-radius: 50%;
  background: var(--pod-g4); border: 2px solid #fff;
  box-shadow: 0 0 0 1px var(--pod-g3); overflow: hidden; flex-shrink: 0;
}
.ps-host-avatar img { width: 100%; height: 100%; object-fit: cover; }
.ps-host-avatar-fb {
  width: 100%; height: 100%;
  background: linear-gradient(135deg, #520003, var(--pod-red));
  display: flex; align-items: center; justify-content: center;
  font-family: var(--pod-serif); font-weight: 700; font-size: 24px; color: #fff;
}
.ps-host-info { flex: 1; min-width: 0; }
.ps-host-name { font-family: var(--pod-serif); font-size: 19px; font-weight: 600; color: var(--pod-ink); margin-bottom: 2px; transition: color .15s; }
.ps-host-role { font-size: 12px; color: var(--pod-gm); line-height: 1.4; }
.ps-host-arrow {
  font-size: 18px; color: var(--pod-gm);
  flex-shrink: 0;
  transition: transform .2s, color .15s;
}

/* Subscribe card */
.ps-sub-title { font-family: var(--pod-serif); font-size: 21px; font-weight: 600; margin-bottom: 14px; line-height: 1.2; }
.ps-plat-list { display: flex; flex-direction: column; gap: 8px; }
.ps-plat-row {
  display: flex; align-items: center; gap: 12px;
  background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.1);
  padding: 12px 14px; border-radius: 8px; font-size: 13px; font-weight: 500; color: #fff;
  transition: background .15s, transform .15s;
}
.ps-plat-row:hover { background: rgba(255,255,255,.12); transform: translateX(2px); }
.ps-plat-row-name { flex: 1; }
.ps-plat-row-arrow { font-size: 12px; opacity: .45; }

/* From the magazine */
.ps-ra {
  display: grid; grid-template-columns: 80px 1fr; gap: 14px;
  padding: 14px 8px; border-bottom: 1px solid var(--pod-g3);
  transition: background .15s; border-radius: 6px; margin: 0 -8px;
}
.ps-ra:last-child { border-bottom: 0; }
.ps-ra:hover { background: var(--pod-cream); }
.ps-ra-img { aspect-ratio: 1; border-radius: 6px; overflow: hidden; background: var(--pod-g4); }
.ps-ra-img img { width: 100%; height: 100%; object-fit: cover; }
.ps-ra-series { font-size: 10px; font-weight: 600; text-transform: uppercase; letter-spacing: .08em; color: var(--pod-red); margin-bottom: 4px; }
.ps-ra-title { font-family: var(--pod-serif); font-size: 14px; font-weight: 600; line-height: 1.3; color: var(--pod-ink); transition: color .15s; }
.ps-ra:hover .ps-ra-title { color: var(--pod-red); }

/* Feedback card — inline AJAX form (Hila 2026-06-08) */
.ps-fb-text { font-size: 13px; color: var(--pod-g1); line-height: 1.6; margin-bottom: 12px; }
.ps-fb-form { display: flex; flex-direction: column; gap: 8px; }
.ps-fb-form input,
.ps-fb-form textarea {
  font: inherit; font-size: 13px; line-height: 1.4;
  padding: 9px 11px; border: 1px solid rgba(0,0,0,.12); border-radius: 6px;
  background: #fff; color: var(--pod-ink); width: 100%; box-sizing: border-box;
  transition: border-color .15s;
}
.ps-fb-form input:focus,
.ps-fb-form textarea:focus { border-color: var(--pod-ink); outline: 0; }
.ps-fb-form textarea { resize: vertical; min-height: 76px; font-family: inherit; }
#taxonomy-podcast .ps-fb-btn {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  background: var(--pod-ink); color: #fff; font-size: 13px; font-weight: 600;
  padding: 11px 12px; border-radius: 8px; border: 0; cursor: pointer;
  transition: background .15s;
}
#taxonomy-podcast .ps-fb-btn:hover:not(:disabled) { background: var(--pod-red); color: #fff; }
#taxonomy-podcast .ps-fb-btn:disabled { opacity: .6; cursor: default; }
.ps-fb-msg { font-size: 12px; color: var(--pod-red); margin-top: 2px; }
.ps-fb-thanks { font-size: 13px; color: var(--pod-ink); margin: 6px 0 0; }

/* ================================================================
   OTHER SHOWS
   ================================================================ */
.ps-other { background: var(--pod-cream); padding: 80px 0; }
.ps-other-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.ps-op-card {
  background: #fff; border-radius: 10px; overflow: hidden;
  display: grid; grid-template-columns: 88px 1fr;
  transition: box-shadow .2s, transform .2s; border: 1px solid transparent;
}
.ps-op-card:hover { box-shadow: 0 12px 30px -10px rgba(0,0,0,.12); transform: translateY(-2px); border-color: var(--pod-g3); }
.ps-op-img { position: relative; background: var(--pod-g4); aspect-ratio: 1; }
.ps-op-img img { width: 100%; height: 100%; object-fit: cover; position: absolute; inset: 0; }
.ps-op-img-fb {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--pod-serif); font-style: italic; font-size: 36px; font-weight: 700;
  color: rgba(255,255,255,.9);
}
.ps-op-body { padding: 14px 16px; }
.ps-op-cat { font-size: 10px; font-weight: 600; text-transform: uppercase; letter-spacing: .08em; color: var(--pod-red); margin-bottom: 5px; }
.ps-op-name {
  font-family: var(--pod-serif); font-size: 15px; font-weight: 600;
  line-height: 1.2; color: var(--pod-ink); margin-bottom: 4px;
  letter-spacing: -.01em; transition: color .15s;
}
.ps-op-card:hover .ps-op-name { color: var(--pod-red); }
.ps-op-eps { font-size: 11px; color: var(--pod-gm); }

/* ================================================================
   MINI PLAYER
   ================================================================ */
.ps-mini {
  position: fixed; left: 0; right: 0; bottom: 0;
  background: rgba(29,5,6,.96); backdrop-filter: blur(12px);
  border-top: 1px solid rgba(255,255,255,.08);
  color: #fff; padding: 14px 0; z-index: 200;
  transform: translateY(110%); transition: transform .3s ease;
}
.ps-mini.ps-mini--show { transform: translateY(0); }
.ps-mini-in { display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; gap: 24px; }
.ps-mini-l { display: flex; align-items: center; gap: 14px; min-width: 0; }
.ps-mini-cov {
  width: 48px; height: 48px; border-radius: 6px; overflow: hidden; flex-shrink: 0;
  background: linear-gradient(135deg, #520003, var(--pod-red));
  display: flex; align-items: center; justify-content: center;
  font-family: var(--pod-serif); font-style: italic; color: #fff; font-weight: 600;
}
.ps-mini-cov img { width: 100%; height: 100%; object-fit: cover; }
.ps-mini-meta { min-width: 0; }
.ps-mini-show { font-size: 11px; color: rgba(255,255,255,.55); font-weight: 600; letter-spacing: .06em; text-transform: uppercase; margin-bottom: 2px; }
.ps-mini-title { font-size: 14px; font-weight: 500; line-height: 1.3; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.ps-mini-c { display: flex; flex-direction: column; align-items: center; gap: 6px; min-width: 380px; }
.ps-mini-controls { display: flex; align-items: center; gap: 14px; }
.ps-mini-skip {
  width: 32px; height: 32px; border-radius: 50%; color: rgba(255,255,255,.7);
  display: flex; align-items: center; justify-content: center;
  transition: color .15s, background .15s;
}
.ps-mini-skip:hover { color: #fff; background: rgba(255,255,255,.08); }
.ps-mini-play {
  width: 40px; height: 40px; border-radius: 50%; background: #fff; color: var(--pod-ink);
  display: flex; align-items: center; justify-content: center; transition: transform .15s;
}
.ps-mini-play:hover { transform: scale(1.06); }
.ps-mini-bar-row { display: flex; align-items: center; gap: 10px; width: 100%; font-size: 11px; color: rgba(255,255,255,.45); font-variant-numeric: tabular-nums; }
.ps-mini-bar { flex: 1; height: 4px; background: rgba(255,255,255,.12); border-radius: 99px; overflow: hidden; cursor: pointer; position: relative; }
.ps-mini-bar-fill { height: 100%; background: var(--pod-red); border-radius: 99px; width: 0%; transition: width .15s linear; }
.ps-mini-r { display: flex; justify-content: flex-end; align-items: center; gap: 8px; }
.ps-mini-icon {
  width: 36px; height: 36px; border-radius: 50%; color: rgba(255,255,255,.6);
  display: flex; align-items: center; justify-content: center;
  transition: background .15s, color .15s;
}
.ps-mini-icon:hover { background: rgba(255,255,255,.08); color: #fff; }
