/* ============================================================
   THE STARTED STACK — landscape cards between the clocks and
   the deck. .ui-next only, and only on a window wide enough to
   give it a column (css/v6.css puts it in the grid at 1600px).
   Card height and gap are ST_H / ST_GAP in js/started.js.
   ============================================================ */
.started{display:none}

.st-cap{
  margin:0 0 12px;font-family:var(--wk);
  font-size:10px;letter-spacing:.16em;text-transform:uppercase;
  color:var(--wk-white-60);
}
.st-cap b{color:var(--wk-white);margin-left:6px}
.st-stage{position:relative;overflow:hidden;outline:none}
.st-stage:focus-visible{outline:2px solid rgba(255,255,255,.45);outline-offset:6px;border-radius:18px}

.st-card{
  position:absolute;left:0;right:0;top:0;height:104px;box-sizing:border-box;
  display:flex;flex-direction:column;justify-content:space-between;
  padding:14px 16px 13px;border-radius:18px;
  background:rgba(44,40,36,.92);
  border:1px solid rgba(255,255,255,.14);
  box-shadow:0 14px 34px rgba(0,0,0,.35);
  font-family:var(--wk);cursor:pointer;
  will-change:transform,opacity;
  /* the spring writes transform and opacity every frame - neither may
     carry a transition, or the card lags a beat behind it */
  transition:border-color .2s ease, background .2s ease;
}
.st-card:hover{border-color:rgba(255,255,255,.3);background:rgba(52,48,44,.94)}
.st-card.is-off{visibility:hidden}
.st-card.is-running{border-color:rgba(255,255,255,.34)}

.st-top{display:flex;align-items:center;justify-content:space-between;gap:8px;min-height:22px}
.st-store{
  font-size:10px;letter-spacing:.12em;text-transform:uppercase;color:var(--wk-white-60);
  white-space:nowrap;overflow:hidden;text-overflow:ellipsis;
}
.st-state{
  flex:none;padding:4px 9px;border-radius:999px;
  font-size:10px;font-weight:600;letter-spacing:.12em;text-transform:uppercase;
}
.st-card.is-running .st-state{background:var(--wk-white);color:#12131a}
.st-card.is-paused .st-state{background:rgba(255,255,255,.10);color:var(--wk-white-70);border:1px solid rgba(255,255,255,.22)}

.st-title{
  margin:4px 0 0;font-size:15px;font-weight:600;line-height:1.25;color:var(--wk-white);
  white-space:nowrap;overflow:hidden;text-overflow:ellipsis;
}
.st-meta{display:flex;align-items:baseline;justify-content:space-between;gap:10px;font-size:11px;color:var(--wk-white-60)}
.st-meta b{
  font-size:14px;font-weight:600;color:var(--wk-white);
  font-family:var(--mono);font-variant-numeric:tabular-nums;
}
.st-more{
  margin:10px 0 0;text-align:center;
  font-size:10px;letter-spacing:.14em;text-transform:uppercase;color:var(--wk-white-60);
}
