/* =========================================================
   Zusatz-Stylesheet für die neue Rubrik "Geräteverleih".
   Ergänzt nur Komponenten, die in style.css noch fehlen
   (Ablauf-Schritte, Geräte-Karten, Zuständigkeits-Hinweis).
   Hinweisboxen und Tabellen nutzen bewusst die vorhandenen
   Klassen .framing-note / .price-note / .content-wrap table.
   Bei der Integration kann dieser Block ans Ende der
   Haupt-style.css gehängt werden.
   ========================================================= */

/* ---------- Ablauf-Schritte (echte Reihenfolge) ---------- */
.process-steps{
  list-style:none;
  margin:1.6rem 0 0;
  padding:0;
  counter-reset:pstep;
}
.process-steps li{
  counter-increment:pstep;
  display:grid;
  grid-template-columns:48px 1fr;
  gap:1.1rem;
  padding:1.2rem 0;
  border-top:1px solid var(--sage);
}
.process-steps li::before{
  content:counter(pstep);
  font-family:var(--font-display);
  font-weight:600;
  font-size:1.1rem;
  color:var(--gold-text);
  border:1.5px solid var(--gold);
  border-radius:50%;
  width:40px; height:40px;
  display:flex; align-items:center; justify-content:center;
}
.process-steps h3{ margin-bottom:.2rem; font-size:1.1rem; }
.process-steps p{ color:var(--muted); margin-bottom:0; font-size:.94rem; }

/* ---------- Geräte-Übersichtskarten ---------- */
.device-card .device-photo{
  aspect-ratio:4/3;
  border-radius:var(--radius);
  background:repeating-linear-gradient(135deg, var(--paper-alt), var(--paper-alt) 10px, var(--sage) 10px, var(--sage) 20px);
  display:flex; align-items:center; justify-content:center;
  color:var(--muted);
  font-size:.8rem;
  text-align:center;
  margin-bottom:1.1rem;
  padding:1rem;
}
.card-tag-soon{
  display:inline-block;
  font-size:.72rem;
  color:var(--muted);
  border:1px dashed var(--sage);
  border-radius:999px;
  padding:.3rem .8rem;
  margin-bottom:.8rem;
}

/* ---------- Zuständigkeits-Hinweis (Marcus/Silke) ---------- */
.practitioner-note{
  display:flex;
  gap:1rem;
  align-items:flex-start;
  background:var(--white);
  border:1px solid var(--sage);
  border-radius:var(--radius);
  padding:1.2rem 1.4rem;
  margin-top:1.4rem;
}
.practitioner-note .initial{
  flex:none;
  width:2.6rem; height:2.6rem;
  border-radius:50%;
  background:var(--teal);
  color:var(--white);
  font-family:var(--font-display);
  display:flex; align-items:center; justify-content:center;
  font-size:1.05rem;
}
.practitioner-note p{ margin:0; font-size:.94rem; color:var(--muted); }
