/* meinHERMES — Ansicht «Feld» (eine Phase in einem Modul).
   Baut auf den Grundklassen aus style.css auf (.eintrag, .chip, .fakten,
   .badge) und ergänzt nur, was diese Seite eigenes hat. */

/* --- Kopf und Einordnung -------------------------------------------------- */

/* Knapper Seitenkopf — stand früher in css/ueberblick.css, wird aber nur noch
   hier gebraucht. */
.kopf--knapp { margin-bottom: 12px; }

.feld-zurueck { margin: 0 0 10px; font-size: 11px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; }
.feld-badges { display: flex; flex-wrap: wrap; align-items: center; gap: 6px; margin-bottom: 8px; }
a.badge { text-decoration: none; }
a.badge:hover { color: var(--akzent); }

.feld-abschnitt { margin: 22px 0 0; }
.feld-abschnitt h2 { font-size: 18px; margin: 0 0 4px; padding-top: 8px; border-top: 1px solid var(--linie-stark); }
.feld-abschnitt__text { margin: 0 0 10px; font-size: 14px; color: var(--text-leise); max-width: 60ch; text-wrap: pretty; }

.feld-weiter { display: flex; flex-wrap: wrap; gap: 6px 18px; margin: 22px 0 0; padding-top: 12px; border-top: 1px solid var(--rand); }

/* --- Marken und Einträge -------------------------------------------------- */

/* Marken sind versale Kleinbeschriftungen; die Ergebnisart steht als weisse
   Schrift auf Tinte, «minimal gefordert» auf Akzent. */
.feld-marke {
  display: inline-flex;
  align-items: center;
  padding: 2px 6px;
  background: var(--flaeche-2);
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--text-leise);
  white-space: nowrap;
}
.feld-marke--entscheid { background: var(--text); color: #fff; }
.feld-marke--modul { background: var(--flaeche-2); color: var(--text); }
.feld-marke--min { background: var(--akzent); color: #fff; }
.feld-marke--leise { background: transparent; font-weight: 600; padding-inline: 0; }
.feld-marke--typ { background: var(--text); color: #fff; }

.feld-einordnung { list-style: none; margin: 0 0 8px; padding: 0; display: grid; gap: 4px; font-size: 14px; }
.feld-einordnung li { color: var(--text-leise); }

.feld-e { padding: 12px 0 14px; }
.feld-e__kopf { display: flex; flex-wrap: wrap; align-items: center; gap: 8px; margin: 0 0 6px; }
.feld-e__titel { font-weight: 800; font-size: 16px; letter-spacing: -.01em; }
.feld-e__titel a { color: var(--text); }
.feld-e__titel a:hover { color: var(--akzent); }
.feld-e__text { margin: 0 0 6px; font-size: 14.5px; color: var(--text-weich); line-height: 1.55; max-width: 60ch; text-wrap: pretty; }
.feld-e__zeile { margin: 0 0 3px; font-size: 13.5px; color: var(--text-leise); }
.feld-e__zeile:last-child { margin-bottom: 0; }
.feld-e__label { font-weight: 700; color: var(--text-leise); }
.feld-e__label::after { content: ": "; }

.feld-abschnitt .chips { margin-bottom: 10px; }
.feld-abschnitt .chip { text-decoration: none; }
.feld-abschnitt .chip[aria-current="page"] {
  color: var(--text);
  font-weight: 800;
  box-shadow: inset 0 -3px 0 var(--akzent);
  cursor: default;
}
