/* ============================================================
   pneuma·soma — Player de session guidée (styles)
   Hérite des variables de style.css (--terra, --creme, --ink…).
   ============================================================ */

.ps-player{
  display:grid;
  grid-template-columns:120px 1fr;
  gap:24px;
  align-items:center;
  background:var(--white);
  border:1px solid var(--line);
  border-radius:var(--radius);
  padding:24px 26px;
  box-shadow:var(--shadow);
  -webkit-user-select:none;user-select:none;
}
.ps-player audio{display:none}

/* Pochette */
.ps-cover{
  width:120px;height:120px;border-radius:14px;overflow:hidden;
  background:var(--creme);flex:0 0 auto;
}
.ps-cover img{width:100%;height:100%;object-fit:cover;-webkit-user-drag:none}

/* Corps */
.ps-body{min-width:0}
.ps-title{
  font-family:var(--font-display);font-weight:600;color:var(--ink);
  font-size:19px;line-height:1.2;margin-bottom:14px;
}

/* Contrôles */
.ps-controls{display:flex;align-items:center;gap:14px;margin-bottom:16px}
.ps-play{
  width:56px;height:56px;border-radius:50%;
  background:var(--terra);color:var(--bg);
  border:none;cursor:pointer;display:flex;align-items:center;justify-content:center;
  transition:.15s;flex:0 0 auto;
}
.ps-play:hover{background:var(--terra-deep);transform:translateY(-1px)}
.ps-play svg{margin-left:1px}
.ps-back,.ps-fwd{
  background:var(--creme);color:var(--ink);
  border:1px solid var(--line);border-radius:11px;
  font-weight:700;font-size:13px;padding:9px 12px;cursor:pointer;
  font-family:var(--font-body);transition:.15s;flex:0 0 auto;min-width:48px;
}
.ps-back:hover,.ps-fwd:hover{border-color:var(--terra);color:var(--terra)}

/* Barre de progression */
.ps-seek{
  position:relative;height:8px;border-radius:6px;
  background:var(--line);cursor:pointer;margin:4px 0;touch-action:none;
}
.ps-seek:focus-visible{outline:2px solid var(--sage-deep);outline-offset:3px}
.ps-seek-fill{
  position:absolute;left:0;top:0;height:100%;width:0;
  background:var(--terra);border-radius:6px;pointer-events:none;
}
.ps-seek-knob{
  position:absolute;top:50%;left:0;width:16px;height:16px;border-radius:50%;
  background:var(--white);border:2px solid var(--terra);
  transform:translate(-50%,-50%);pointer-events:none;box-shadow:0 2px 6px rgba(17,17,17,.15);
}

/* Temps */
.ps-times{
  display:flex;justify-content:space-between;
  font-size:13.5px;color:var(--muted);font-variant-numeric:tabular-nums;margin-top:8px;
}

.ps-player-err{color:var(--terra-deep);font-size:14px;margin-top:6px}

/* Mobile */
@media(max-width:520px){
  .ps-player{grid-template-columns:1fr;gap:18px;padding:22px 20px;text-align:center}
  .ps-cover{width:140px;height:140px;margin:0 auto}
  .ps-controls{justify-content:center}
  .ps-title{text-align:center}
}
