/* queueplayer.css — shared "station page" skeleton, single source of truth for any page that drops a
   .mhero + a .trow list (program.php, mood_station.php, ...). Change the hero / rows / tools HERE and
   every such page updates at once. The live player chrome (.qpbar / .qpc / .qpnow / .qpherofill /
   .qpamb) is injected separately by queueplayer.js. Pages keep only their own reset / :root / body. */

.wrap{max-width:760px;margin:0 auto;padding:24px 18px 60px}

/* hero — taller (closer to square) so more of the cover shows; tune the min-height clamp to taste */
.mhero{border-radius:20px;padding:24px 22px;background:linear-gradient(150deg,var(--accent),rgba(0,0,0,.55));box-shadow:0 14px 32px -14px rgba(0,0,0,.6);position:relative;overflow:hidden;min-height:clamp(250px,64vw,400px);display:flex;flex-direction:column}
.mhero .mherobg{position:absolute;inset:0;background-size:cover;background-position:center;opacity:.5;z-index:0;border-radius:inherit;-webkit-clip-path:inset(0 round 20px);clip-path:inset(0 round 20px)}
.mhero::after{content:"";position:absolute;inset:0;z-index:1;border-radius:inherit;-webkit-clip-path:inset(0 round 20px);clip-path:inset(0 round 20px);background:linear-gradient(150deg,rgba(0,0,0,.12),transparent 42%,rgba(0,0,0,.55))}
/* iOS Safari belt-and-suspenders: promote the card to its own layer so the rounded clip is honored even with filtered children */
.mhero{isolation:isolate}
.mhero .me,.mhero h1,.mhero .mc{position:relative;z-index:2}
.mhero .me{font-size:2.6rem}
.mhero h1{font-size:clamp(1.6rem,6vw,2.2rem);font-weight:900;margin-top:6px}
.mhero .mc{opacity:.85;font-size:.9rem;margin-top:4px}
.mhero .mt{position:relative;z-index:2;display:inline-block;margin-top:10px;font-size:.78rem;font-weight:700;background:rgba(0,0,0,.3);border:1px solid rgba(255,255,255,.18);padding:4px 11px;border-radius:20px;direction:ltr}

.qptools{display:flex;gap:10px;margin:16px 0 2px;flex-wrap:wrap}
.qpbtn{display:inline-flex;align-items:center;gap:8px;background:var(--accent);color:#07070b;border:none;border-radius:30px;padding:11px 22px;font:inherit;font-weight:800;font-size:.92rem;cursor:pointer}
.qpbtn.save{background:rgba(255,255,255,.07);border:1px solid rgba(255,255,255,.16);color:#fff}

.tlist{display:flex;flex-direction:column;gap:2px;margin-top:14px;max-width:680px}
.trow{display:flex;align-items:center;gap:13px;padding:9px 10px;border-radius:13px;color:inherit;transition:background .15s}
.trow:hover{background:rgba(255,255,255,.05)}
.trow .th{width:52px;height:52px;border-radius:10px;object-fit:cover;background:#15151c;flex-shrink:0;box-shadow:0 6px 16px rgba(0,0,0,.4)}
.trow .meta{flex:1;min-width:0}
.trow .tt{font-weight:600;font-size:.94rem;white-space:nowrap;overflow:hidden;text-overflow:ellipsis}
.trow .ta{font-size:.78rem;opacity:.58;margin-top:2px;white-space:nowrap;overflow:hidden;text-overflow:ellipsis}
.rlike{background:none;border:none;color:rgba(255,255,255,.4);cursor:pointer;padding:7px;flex-shrink:0;display:flex}
.rlike svg{width:20px;height:20px;fill:none;stroke:currentColor;stroke-width:2;stroke-linejoin:round}
.rlike.isliked{color:#ff4d6d}.rlike.isliked svg{fill:currentColor;stroke:none}
.empty{opacity:.5;padding:40px 4px;text-align:center}
