:root {
  --paper:  #ffffff;
  --ink:    #101010;
  --body:   #575757;
  --muted:  #6e6e6e;
  --line:   rgba(16, 16, 16, 0.10);
  --hair:   rgba(16, 16, 16, 0.06);

  --f: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

  --gutter: clamp(1.25rem, 5vw, 3.5rem);
  --shell:  76rem;

  --ease: cubic-bezier(0.22, 0.61, 0.22, 1);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  background: var(--paper);
  color: var(--body);
  font-family: var(--f);
  font-weight: 400;
  font-size: 1rem;
  line-height: 1.75;
  letter-spacing: -0.005em;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img { max-width: 100%; }

/* ---------- Typografie ---------- */

h1, h2, h3 {
  margin: 0;
  color: var(--ink);
  font-weight: 300;
  letter-spacing: -0.035em;
  line-height: 1.1;
  text-wrap: balance;
}
h1 { font-size: clamp(2.15rem, 5.4vw, 3.75rem); letter-spacing: -0.042em; }
h2 { font-size: clamp(1.6rem, 3.2vw, 2.3rem); }
h3 { font-size: 1.02rem; font-weight: 500; letter-spacing: -0.015em; line-height: 1.4; }

p { margin: 0; max-width: 40ch; }
strong, b { color: var(--ink); font-weight: 500; }

a { color: inherit; }
a:focus-visible, button:focus-visible, input:focus-visible,
select:focus-visible, textarea:focus-visible {
  outline: 1px solid var(--ink);
  outline-offset: 3px;
}

.eyebrow {
  display: block;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
}

.lead {
  font-size: clamp(1.05rem, 1.5vw, 1.2rem);
  font-weight: 300;
  line-height: 1.65;
  letter-spacing: -0.015em;
  color: var(--ink);
  max-width: 34ch;
}

/* ---------- Raster ---------- */

.shell { max-width: var(--shell); margin: 0 auto; padding: 0 var(--gutter); }
.sec   { padding: clamp(4.5rem, 10vw, 9rem) 0; }
.sec + .sec { border-top: 1px solid var(--hair); }

.split { display: grid; grid-template-columns: 1fr 1.25fr; gap: clamp(2rem, 6vw, 6rem); align-items: start; }
@media (max-width: 54rem) { .split { grid-template-columns: 1fr; gap: 2rem; } }

.stack { display: flex; flex-direction: column; gap: 1.35rem; align-items: flex-start; }

.sec-head { margin-bottom: clamp(2.5rem, 5vw, 4rem); }
.sec-head .eyebrow { margin-bottom: 1.1rem; }

/* ---------- Schaltflächen ---------- */

.btn {
  display: inline-flex; align-items: center; justify-content: center;
  background: var(--ink); color: var(--paper);
  font-family: var(--f); font-size: 0.92rem; font-weight: 500;
  letter-spacing: -0.01em;
  padding: 14px 26px; border: 1px solid var(--ink); border-radius: 0;
  text-decoration: none; cursor: pointer;
  transition: background 0.4s var(--ease), color 0.4s var(--ease), opacity 0.3s var(--ease);
}
.btn:hover { background: var(--paper); color: var(--ink); }
.btn:disabled { opacity: 0.4; cursor: default; }

.link {
  display: inline-block;
  font-size: 0.92rem; font-weight: 500; letter-spacing: -0.01em;
  color: var(--ink); text-decoration: none;
  background-image: linear-gradient(currentColor, currentColor);
  background-repeat: no-repeat;
  background-size: 100% 1px;
  background-position: 0 100%;
  padding-bottom: 2px;
  transition: background-size 0.5s var(--ease), opacity 0.3s var(--ease);
}
.link:hover { background-size: 0% 1px; opacity: 0.55; }

/* ---------- Kopfzeile ---------- */

.ticker {
  background: var(--paper);
  color: var(--muted);
  border-bottom: 1px solid var(--hair);
  font-size: 0.74rem; font-weight: 400; letter-spacing: 0.02em;
  text-align: center;
  padding: 0.7rem var(--gutter);
}
.ticker a { color: var(--ink); text-decoration: none; border-bottom: 1px solid var(--line); }

nav {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255, 255, 255, 0.86);
  backdrop-filter: saturate(180%) blur(12px);
  border-bottom: 1px solid var(--hair);
}
.nav-in {
  max-width: var(--shell); margin: 0 auto; padding: 0 var(--gutter);
  height: 4.5rem;
  display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; gap: 1rem;
}
.nav-links { display: flex; gap: 1.9rem; }
.nav-links a, .nav-right a {
  font-size: 0.88rem; font-weight: 400; letter-spacing: -0.005em;
  color: var(--body); text-decoration: none;
  transition: color 0.35s var(--ease);
}
.nav-links a:hover, .nav-right a:hover { color: var(--ink); }
.brand {
  font-size: 0.94rem; font-weight: 500;
  letter-spacing: 0.26em; text-transform: uppercase;
  color: var(--ink); text-decoration: none; white-space: nowrap;
  transition: opacity 0.35s var(--ease);
}
.brand:hover { opacity: 0.6; }
.nav-right { display: flex; justify-content: flex-end; }
@media (max-width: 56rem) {
  .nav-in { grid-template-columns: auto 1fr; height: 4rem; }
  .nav-links { display: none; }
  .brand { justify-self: start; }
  .nav-right { grid-column: 2; }
}

/* ---------- Auftakt ---------- */

.hero {
  position: relative;
  min-height: clamp(32rem, 84vh, 52rem);
  display: flex; align-items: flex-end;
  background: #0c0c0c; overflow: hidden;
}
.hero-img {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; object-position: 62% 34%; display: block;
  transform: scale(1.06);
  animation: ruhe 14s var(--ease) forwards;
}
@keyframes ruhe { to { transform: scale(1); } }
.hero::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.82) 0%, rgba(0,0,0,0.62) 26%, rgba(0,0,0,0.24) 58%, rgba(0,0,0,0.02) 100%);
}
.hero-in {
  position: relative; z-index: 1; width: 100%;
  max-width: var(--shell); margin: 0 auto;
  padding: 0 var(--gutter) clamp(3rem, 7vw, 5.5rem);
}
.hero-in .eyebrow { color: rgba(255,255,255,0.62); }
.hero-in h1 { color: #fff; margin-top: 1.3rem; max-width: 15ch; font-weight: 200; }
.hero-sub {
  margin-top: 1.4rem; max-width: 38ch;
  color: rgba(255,255,255,0.74); font-weight: 300;
  font-size: clamp(1rem, 1.4vw, 1.12rem); line-height: 1.6;
}
.hero-actions { margin-top: 2.2rem; display: flex; gap: 1.9rem; flex-wrap: wrap; }
.hero-actions .link { color: #fff; }

/* ---------- Listen ---------- */

.dots { list-style: none; margin: 0; padding: 0; }
.dots li { padding: 1.35rem 0; border-top: 1px solid var(--hair); }
.dots li:last-child { border-bottom: 1px solid var(--hair); }
.dots li b { display: block; color: var(--ink); font-weight: 500; margin-bottom: 0.3rem; }
.dots li span { display: block; max-width: 44ch; }

/* ---------- Produkt ---------- */

.feature { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 6vw, 5rem); align-items: start; }
@media (max-width: 54rem) { .feature { grid-template-columns: 1fr; } }
.feature.no-media { grid-template-columns: 1fr; }
.feature.no-media .feature-body { max-width: 42rem; }

.gallery { display: flex; flex-direction: column; gap: 0.75rem; }
.feature-media { overflow: hidden; background: #f7f5f2; }
.feature-media img {
  display: block; width: 100%; height: auto;
  aspect-ratio: 4 / 5; object-fit: cover;
  transition: opacity 0.5s var(--ease);
}
.feature-media.wechsel img { opacity: 0; }
.feature-media.leer { aspect-ratio: 4 / 5; }

.shots { display: flex; gap: 0.75rem; }
.shots button {
  flex: 1 1 0; padding: 0; border: 0; background: none; cursor: pointer; line-height: 0;
  opacity: 0.4; transition: opacity 0.45s var(--ease);
}
.shots button[aria-current="true"], .shots button:hover { opacity: 1; }
.shots img { width: 100%; aspect-ratio: 4 / 5; object-fit: cover; display: block; }

.feature-body { display: flex; flex-direction: column; align-items: flex-start; gap: 1rem; }
.piece-name { font-size: clamp(1.5rem, 2.6vw, 2rem); font-weight: 300; letter-spacing: -0.035em; color: var(--ink); }
.piece-status { font-size: 0.8rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--muted); }

.spec { margin: 0.75rem 0 0; width: 100%; max-width: 28rem; }
.spec-row {
  display: grid; grid-template-columns: minmax(4.5rem, 8rem) 1fr; gap: 1rem;
  padding: 0.85rem 0; border-top: 1px solid var(--hair); font-size: 0.92rem;
}
.spec-row:first-child { border-top: 0; padding-top: 0; }
.spec-row dt { margin: 0; color: var(--muted); font-size: 0.82rem; letter-spacing: 0.02em; }
.spec-row dd { margin: 0; color: var(--ink); }
@media (max-width: 34rem) {
  .spec-row { grid-template-columns: 1fr; gap: 0.15rem; }
}

/* ---------- Kauf ---------- */

.order { margin-top: 2rem; padding-top: 2rem; border-top: 1px solid var(--line); width: 100%; }
.order-head { display: flex; align-items: baseline; gap: 1.1rem; flex-wrap: wrap; }
.price { font-size: clamp(1.5rem, 2.4vw, 1.9rem); font-weight: 300; letter-spacing: -0.035em; color: var(--ink); }
.stock { font-size: 0.78rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--muted); }
.stock.out { color: var(--ink); }
.vat { margin-top: 0.7rem; font-size: 0.82rem; line-height: 1.6; color: var(--muted); max-width: 42ch; }

.finder { display: flex; flex-direction: column; gap: 1.9rem; align-items: stretch; }
.finder > .btn { align-self: flex-start; }

button, input, select, textarea { font-family: var(--f); }

.order-form { margin-top: 1.9rem; display: flex; flex-direction: column; gap: 1.3rem; max-width: 32rem; }
.fields { display: grid; grid-template-columns: repeat(auto-fit, minmax(9rem, 1fr)); gap: 1rem; }
.field { display: flex; flex-direction: column; gap: 0.45rem; }
.field.menge { max-width: 7rem; }
.field label { font-size: 0.78rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--muted); }
.field input, .field select, .field textarea, .order-form textarea {
  font-family: var(--f); font-size: 0.98rem; color: var(--ink);
  background: transparent; border: 0; border-bottom: 1px solid var(--line);
  border-radius: 0; padding: 0.55rem 0; width: 100%; appearance: none;
  transition: border-color 0.4s var(--ease);
}
.field input:focus, .field select:focus, .order-form textarea:focus { border-bottom-color: var(--ink); }
.field select {
  background-image: linear-gradient(45deg, transparent 50%, var(--ink) 50%), linear-gradient(135deg, var(--ink) 50%, transparent 50%);
  background-position: calc(100% - 9px) 55%, calc(100% - 4px) 55%;
  background-size: 5px 5px; background-repeat: no-repeat; padding-right: 1.6rem;
}
.field .hint { font-size: 0.78rem; color: var(--muted); }
.field .opt { color: var(--muted); letter-spacing: 0.06em; }
.order-form textarea { resize: vertical; }

.check { display: flex; gap: 0.75rem; align-items: flex-start; font-size: 0.86rem; line-height: 1.6; max-width: 42ch; }
.check > span { flex: 1; }
.check input { flex: 0 0 auto; margin-top: 0.3rem; accent-color: var(--ink); }
.check a { color: var(--ink); text-underline-offset: 0.2em; }

.order-note { font-size: 0.84rem; color: var(--muted); max-width: 40ch; min-height: 1.2rem; }
.order-done { padding-left: 1.2rem; border-left: 1px solid var(--ink); }
.order-done h3 { margin-bottom: 0.5rem; font-size: 1.1rem; }

.result { border-top: 1px solid var(--line); padding-top: 1.5rem; display: none; flex-direction: column; gap: 0.6rem; }
.result.show { display: flex; }
.result .size { font-size: clamp(1.9rem, 4vw, 2.6rem); font-weight: 200; letter-spacing: -0.045em; color: var(--ink); line-height: 1; }
.result .msg { font-size: 0.94rem; max-width: 46ch; }

/* ---------- Journal ---------- */

.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: clamp(2rem, 5vw, 4.5rem); }
@media (max-width: 48rem) { .grid-2 { grid-template-columns: 1fr; } }
.card { display: flex; flex-direction: column; gap: 0.7rem; padding-top: 1.4rem; border-top: 1px solid var(--hair); }
.card p { font-size: 0.94rem; max-width: none; }

/* ---------- Fußzeile ---------- */

footer { border-top: 1px solid var(--hair); padding: clamp(3.5rem, 7vw, 5.5rem) 0 3rem; }
.foot-grid { display: grid; grid-template-columns: 1.6fr repeat(2, 1fr); gap: 2.5rem; align-items: start; }
@media (max-width: 48rem) { .foot-grid { grid-template-columns: 1fr; gap: 2rem; } }
.foot-col { display: flex; flex-direction: column; gap: 0.7rem; align-items: flex-start; }
.foot-col .eyebrow { margin-bottom: 0.2rem; }
.foot-col a { font-size: 0.9rem; color: var(--body); text-decoration: none; transition: color 0.35s var(--ease); }
.foot-col a:hover { color: var(--ink); }
.foot-bar { margin-top: clamp(3rem, 6vw, 4.5rem); padding-top: 1.4rem; border-top: 1px solid var(--hair); }
.foot-c { font-size: 0.8rem; color: var(--muted); }

/* ---------- Rechtsseiten ---------- */

.legal { padding: clamp(3.5rem, 7vw, 5.5rem) 0 clamp(3.5rem, 7vw, 6rem); }
.legal-in { max-width: 42rem; }
.legal h1 { margin-bottom: 2.75rem; }
.legal h2 { font-size: 1.15rem; font-weight: 500; letter-spacing: -0.02em; margin: 3rem 0 0.9rem; }
.legal h3 { margin: 1.8rem 0 0.6rem; }
.legal p, .legal li { max-width: none; }
.legal p { margin-bottom: 1rem; }
.legal ul { margin: 0 0 1.2rem; padding-left: 1.2rem; display: flex; flex-direction: column; gap: 0.45rem; }
.legal a { color: var(--ink); text-underline-offset: 0.2em; }
.legal .meta { font-size: 0.86rem; color: var(--muted); margin-top: 3rem; padding-top: 1.3rem; border-top: 1px solid var(--hair); }
.legal address { font-style: normal; line-height: 1.85; }

/* ---------- Bewegung ---------- */

[data-reveal] {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.9s var(--ease), transform 0.9s var(--ease);
  transition-delay: var(--d, 0ms);
}
[data-reveal].in { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }
  [data-reveal] { opacity: 1; transform: none; }
  .hero-img { transform: none; }
}

/* ---------- Kurze Aussagen ---------- */

.facts { list-style: none; margin: 0.4rem 0 0; padding: 0; width: 100%; }
.facts li {
  padding: 0.85rem 0; border-top: 1px solid var(--hair);
  color: var(--ink); font-size: 0.95rem;
}
.facts li:last-child { border-bottom: 1px solid var(--hair); }

.benefits {
  list-style: none; margin: clamp(3rem, 6vw, 5rem) 0 0; padding: 0;
  display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(1.75rem, 4vw, 3.5rem);
}
@media (max-width: 48rem) { .benefits { grid-template-columns: 1fr; gap: 0; } }
.benefits li { padding-top: 1.3rem; border-top: 1px solid var(--line); }
@media (max-width: 48rem) {
  .benefits li { padding: 1.3rem 0; }
  .benefits li:last-child { border-bottom: 1px solid var(--line); }
}
.benefits h3 { margin-bottom: 0.45rem; }
.benefits p { font-size: 0.94rem; max-width: 32ch; }

.lead.zeilen { line-height: 1.45; }

/* ---------- Journal ---------- */

.article { padding: clamp(3rem, 6vw, 5rem) 0 clamp(4rem, 8vw, 7rem); }
.article-in { max-width: 40rem; }
.guide-no { display: block; font-size: 0.7rem; font-weight: 500; letter-spacing: 0.18em; text-transform: uppercase; color: var(--muted); margin-bottom: 1.4rem; }
.article h1 { font-size: clamp(1.9rem, 4.2vw, 2.9rem); margin-bottom: 1.75rem; }
.article-lead { font-size: clamp(1.1rem, 1.7vw, 1.3rem); font-weight: 300; line-height: 1.6; letter-spacing: -0.015em; color: var(--ink); max-width: none; margin-bottom: 2.5rem; }
.article h2 { font-size: 1.25rem; font-weight: 500; letter-spacing: -0.02em; margin: 3rem 0 1rem; }
.article p { max-width: none; margin-bottom: 1.15rem; }
.article ul { margin: 0 0 1.5rem; padding-left: 1.15rem; display: flex; flex-direction: column; gap: 0.5rem; }
.article li { max-width: none; }
.article a { color: var(--ink); text-underline-offset: 0.2em; }

.figure { margin: 2.5rem 0; padding: 2rem; border: 1px solid var(--hair); }
.figure dl { margin: 0; display: grid; grid-template-columns: auto 1fr; gap: 0.9rem 1.5rem; }
.figure dt { color: var(--muted); font-size: 0.88rem; white-space: nowrap; }
.figure dd { margin: 0; color: var(--ink); font-size: 0.94rem; }

.quellen { margin-top: 3.5rem; border-top: 1px solid var(--hair); padding-top: 1.5rem; }
.quellen summary { cursor: pointer; font-size: 0.86rem; color: var(--muted); list-style: none; }
.quellen summary::-webkit-details-marker { display: none; }
.quellen summary::after { content: " →"; }
.quellen[open] summary::after { content: " ↓"; }
.quellen summary:hover { color: var(--ink); }
.quellen ol { margin: 1.4rem 0 0; padding-left: 1.3rem; display: flex; flex-direction: column; gap: 0.9rem; }
.quellen li { font-size: 0.85rem; line-height: 1.6; color: var(--muted); }
.quellen a { color: var(--muted); }
.quellen .methode { font-size: 0.85rem; color: var(--muted); margin-top: 1.4rem; }

.article-cta { margin-top: 3rem; padding-top: 1.75rem; border-top: 1px solid var(--line); }

.index-liste { list-style: none; margin: 0; padding: 0; }
.index-liste li { border-top: 1px solid var(--hair); }
.index-liste li:last-child { border-bottom: 1px solid var(--hair); }
.index-liste a {
  display: grid; grid-template-columns: 7rem 1fr; gap: 1.5rem;
  padding: 1.9rem 0; text-decoration: none;
  transition: opacity 0.4s var(--ease);
}
.index-liste a:hover { opacity: 0.55; }
@media (max-width: 40rem) { .index-liste a { grid-template-columns: 1fr; gap: 0.5rem; } }
.index-liste .nr { font-size: 0.7rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--muted); padding-top: 0.35rem; white-space: nowrap; }
.index-liste h2 { font-size: 1.25rem; font-weight: 400; letter-spacing: -0.02em; margin-bottom: 0.4rem; }
.index-liste p { font-size: 0.94rem; max-width: 46ch; }
.bald { opacity: 0.45; }
.bald a { pointer-events: none; }

.foot-bar { display: flex; flex-wrap: wrap; gap: 0.8rem 2.5rem; align-items: baseline; }
.foot-kontext { font-size: 0.8rem; color: var(--muted); max-width: 56ch; margin-right: auto; }

/* ---------- Second Chances ---------- */

.zweit-raster {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(15rem, 1fr));
  gap: clamp(1.5rem, 3.5vw, 2.75rem);
}
.zweit-raster[data-leer]::after {
  content: "Aktuell ist nichts verfügbar. Es kommt unregelmäßig etwas dazu.";
  grid-column: 1 / -1;
  font-size: 0.94rem;
  color: var(--muted);
}

.zweit { display: flex; flex-direction: column; align-items: flex-start; gap: 0.55rem; }
.zweit.weg { opacity: 0.5; }
.zweit-media {
  width: 100%; aspect-ratio: 4 / 5; background: #f7f5f2;
  overflow: hidden; margin-bottom: 0.5rem;
}
.zweit-media img { width: 100%; height: 100%; object-fit: cover; display: block; }
.zweit-kopf { display: flex; flex-direction: column; gap: 0.15rem; }
.zweit-marke { font-size: 0.72rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--muted); }
.zweit-name { font-size: 1rem; font-weight: 500; letter-spacing: -0.01em; color: var(--ink); }

.chips { display: flex; flex-wrap: wrap; gap: 0.4rem; }
.chip {
  font-size: 0.68rem; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--muted); border: 1px solid var(--line); padding: 0.22rem 0.5rem;
}
.chip.zustand { color: var(--ink); border-color: var(--ink); }

.zweit-grund { font-size: 0.86rem; color: var(--body); max-width: none; }
.zweit-preis { display: flex; align-items: baseline; gap: 0.6rem; margin-top: 0.15rem; }
.zweit-preis .alt { color: var(--muted); font-size: 0.88rem; }
.zweit-preis .jetzt { color: var(--ink); font-size: 1.05rem; font-weight: 500; }
.zweit-weg { font-size: 0.8rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--muted); }

.zustandsliste { list-style: none; margin: 0; padding: 0; max-width: 46rem; }
.zustandsliste li {
  display: grid; grid-template-columns: 7rem 1fr; gap: 1.25rem;
  padding: 0.95rem 0; border-top: 1px solid var(--hair); font-size: 0.92rem;
}
.zustandsliste li:last-child { border-bottom: 1px solid var(--hair); }
.zustandsliste b { color: var(--ink); font-weight: 500; }
@media (max-width: 34rem) { .zustandsliste li { grid-template-columns: 1fr; gap: 0.2rem; } }

/* ---------- Empfehlungen unter Beiträgen ---------- */

.empfehlung {
  margin: 3rem 0 0;
  padding: 1.75rem 0 0;
  border-top: 1px solid var(--ink);
}
.emp-label {
  font-size: 0.68rem; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--muted); margin-bottom: 0.9rem;
}
.emp-titel { font-size: 1.15rem; font-weight: 500; letter-spacing: -0.02em; margin: 0 0 1.25rem; }
.emp-liste { list-style: none; margin: 0; padding: 0; }
.emp-liste li { padding: 1rem 0; border-top: 1px solid var(--hair); }
.emp-liste li:last-child { border-bottom: 1px solid var(--hair); }
.emp-kopf { display: flex; flex-wrap: wrap; align-items: baseline; gap: 0.5rem 0.9rem; }
.emp-kopf a { color: var(--ink); font-weight: 500; text-underline-offset: 0.2em; }
.emp-haendler { font-size: 0.72rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--muted); }
.emp-grund { font-size: 0.9rem; color: var(--body); margin: 0.35rem 0 0; max-width: none; }
.emp-hinweis { font-size: 0.8rem; color: var(--muted); margin-top: 1.25rem; max-width: 52ch; }

/* ---------- Evidence-Format ---------- */

.ev-block { border-top: 1px solid var(--hair); padding: 1.75rem 0 0; margin: 2.5rem 0 0; }
.ev-label {
  font-size: 0.68rem; font-weight: 500; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--muted); margin-bottom: 0.9rem;
}
.ev-block p:last-child { margin-bottom: 0; }

.ev-urteil { border-top: 1px solid var(--ink); padding-top: 1.75rem; margin-top: 2.5rem; }
.urteil-marke {
  display: inline-block;
  font-size: 0.78rem; font-weight: 500; letter-spacing: 0.16em; text-transform: uppercase;
  padding: 0.55rem 1rem; margin-bottom: 1.25rem;
  border: 1px solid var(--ink); color: var(--ink);
}
.urteil-marke.dagegen { background: var(--ink); color: var(--paper); }
.urteil-marke.dafuer { border-width: 2px; background: rgba(16,16,16,0.05); }
.urteil-marke.unklar { border-color: var(--line); color: var(--muted); }

.ev-skala { list-style: none; margin: 1.75rem 0 0; padding: 0; font-size: 0.84rem; color: var(--muted); }
.ev-skala li { padding: 0.5rem 0; border-top: 1px solid var(--hair); display: grid; grid-template-columns: 9rem 1fr; gap: 1rem; }
.ev-skala li:last-child { border-bottom: 1px solid var(--hair); }
.ev-skala b { color: var(--ink); font-weight: 500; letter-spacing: 0.08em; text-transform: uppercase; font-size: 0.72rem; }
@media (max-width: 34rem) { .ev-skala li { grid-template-columns: 1fr; gap: 0.1rem; } }

.transparenz {
  margin-top: 2rem; padding-left: 1.1rem; border-left: 1px solid var(--line);
  font-size: 0.86rem; color: var(--muted); max-width: 52ch;
}

/* ---------- Suche im Journal ---------- */

.suchzeile {
  display: flex; flex-wrap: wrap; align-items: baseline; gap: 1rem 2rem;
  padding-bottom: 1.1rem; border-bottom: 1px solid var(--line);
}
.suchfeld { flex: 1 1 16rem; min-width: 0; }
.suchfeld input {
  width: 100%; font-family: var(--f); font-size: 1rem; color: var(--ink);
  background: transparent; border: 0; padding: 0.4rem 0; appearance: none;
}
.suchfeld input::placeholder { color: var(--muted); }
.artfilter { display: flex; gap: 0.5rem; }
.artfilter button {
  background: none; border: 1px solid var(--line); cursor: pointer;
  font-family: var(--f); font-size: 0.78rem; letter-spacing: 0.04em;
  color: var(--muted); padding: 0.35rem 0.75rem;
  transition: color 0.3s var(--ease), border-color 0.3s var(--ease);
}
.artfilter button:hover { color: var(--ink); }
.artfilter button[aria-pressed="true"] { color: var(--ink); border-color: var(--ink); }
.suchstand { font-size: 0.84rem; color: var(--muted); min-height: 1.2rem; margin: 1.1rem 0 0; }
.index-liste li[hidden] { display: none; }

.visuell-versteckt {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}

.belegkraft {
  margin: 1.25rem 0 1.5rem;
  padding: 0.9rem 0 0;
  border-top: 1px solid var(--hair);
  display: grid; grid-template-columns: 8.5rem 1fr; gap: 1.25rem;
  font-size: 0.86rem;
}
.belegkraft dt { color: var(--muted); font-size: 0.72rem; letter-spacing: 0.14em; text-transform: uppercase; padding-top: 0.15rem; }
.belegkraft dd { margin: 0; color: var(--body); max-width: 52ch; }
@media (max-width: 34rem) { .belegkraft { grid-template-columns: 1fr; gap: 0.25rem; } }

/* ---------- Verwandte Beiträge ---------- */

.weiter { margin-top: 3rem; padding-top: 1.75rem; border-top: 1px solid var(--hair); }
.weiter ul { list-style: none; margin: 0.9rem 0 0; padding: 0; }
.weiter li { border-top: 1px solid var(--hair); }
.weiter li:last-child { border-bottom: 1px solid var(--hair); }
.weiter a {
  display: grid; grid-template-columns: 7rem 1fr; gap: 1.25rem;
  padding: 1rem 0; text-decoration: none; align-items: baseline;
  transition: opacity 0.4s var(--ease);
}
.weiter a:hover { opacity: 0.55; }
.w-nr { font-size: 0.68rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--muted); white-space: nowrap; }
.w-titel { color: var(--ink); font-size: 0.98rem; }
@media (max-width: 34rem) { .weiter a { grid-template-columns: 1fr; gap: 0.2rem; } }
