/* ═══════════════════════════════════════════════
   STAMMDATEN + BRIEFKOPF
═══════════════════════════════════════════════ */

/* Briefkopf-Liste linke Spalte */
.bk-listitem {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border-radius: 6px;
  cursor: pointer;
  font-size: 13px;
  font-weight: 500;
  color: var(--text);
  transition: background .15s;
}
.bk-listitem:hover { background: var(--bg2); }
.bk-listitem.active {
  background: var(--accent-pale2);
  color: var(--accent);
  font-weight: 700;
}

.bk-section-title {
  font-weight: 700;
  font-size: 12px;
  color: var(--text2);
  text-transform: uppercase;
  letter-spacing: .5px;
  margin: 18px 0 10px;
  padding-bottom: 6px;
  border-bottom: 1px solid var(--border);
}
.bk-section-title:first-child { margin-top: 0; }
