/* ---------- B2B-Arbeitgeber-Portal: ergänzende Stile ---------- */
/* Baut auf style.css auf (Variablen, Karten, Buttons, Modal, Drop). */

/* Rechtlicher Hinweis (DSGVO Art. 22 / AGG) – dauerhaft sichtbar */
.recht-banner {
  background: #fff7e8;
  border: 1px solid #ffe2ad;
  color: #7a5200;
  border-radius: 14px;
  padding: 12px 16px;
  font-size: 13.5px;
  line-height: 1.45;
  margin-bottom: 16px;
}
.recht-banner strong { color: #b06f00; }

/* Stellen-Karte in der Liste */
.stelle {
  background: #fbfbfd; border: 1px solid var(--linie); border-radius: 14px;
  padding: 14px 16px; margin-bottom: 12px;
  cursor: pointer; transition: border-color .2s, transform .1s;
}
.stelle:hover { border-color: var(--akzent); }
.stelle:active { transform: scale(.99); }
.stelle-kopf { display: flex; justify-content: space-between; align-items: flex-start; gap: 10px; }
.stelle-titel { font-weight: 650; font-size: 16px; }
.stelle-meta { color: var(--grau); font-size: 14px; margin-top: 2px; }
.stelle-fuss { display: flex; flex-wrap: wrap; align-items: center; gap: 14px; margin-top: 12px; }

/* Bewerber-Karte im Ranking */
.bewerber {
  background: #fbfbfd; border: 1px solid var(--linie); border-radius: 14px;
  padding: 14px 16px; margin-bottom: 12px;
}
.bewerber-kopf { display: flex; align-items: center; gap: 14px; }
.rang {
  flex-shrink: 0; width: 30px; height: 30px; border-radius: 50%;
  display: grid; place-items: center; font-weight: 700; font-size: 14px;
  background: #eef0f2; color: var(--grau);
}
.rang.top { background: var(--akzent); color: #fff; }
.bewerber-name { font-weight: 650; font-size: 16px; flex: 1; min-width: 0; }
.bewerber-datei { color: var(--grau); font-size: 13px; }

/* Mini-Score-Ring */
.score-mini {
  flex-shrink: 0; width: 52px; height: 52px; border-radius: 50%;
  display: grid; place-items: center; font-size: 16px; font-weight: 700; color: #fff;
}

.bewerber-zus { font-size: 14.5px; margin-top: 10px; color: var(--ink); }
.mini-titel { font-size: 13px; font-weight: 650; color: var(--grau); margin: 12px 0 6px; }
.mini-liste { list-style: none; display: flex; flex-direction: column; gap: 5px; }
.mini-liste li { display: flex; gap: 8px; font-size: 14px; align-items: flex-start; }
.mini-liste.gut li::before { content: "✓"; color: var(--gut); font-weight: 700; flex-shrink: 0; }
.mini-liste.fehlt li::before { content: "–"; color: var(--warn); font-weight: 700; flex-shrink: 0; }
.bewerber-fuss { margin-top: 12px; }
