/* Agent-View Stylesheet — lesbar für Menschen UND Maschinen, niedriger Footprint */
:root {
  --paper: #f7f1e6;
  --ink: #1a1a1a;
  --leaf: #4a5d23;
  --line: #d4c8b0;
  --mute: #6a6a6a;
  --link: #2a4d8f;
}
* { box-sizing: border-box }
html { font-size: 16px }
body {
  margin: 0;
  font-family: ui-serif, Georgia, "Times New Roman", serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.6;
}
.agent-shell { max-width: 760px; margin: 0 auto; padding: 2.5rem 1.25rem 4rem }
.agent-bar {
  border-bottom: 1px solid var(--line);
  padding-bottom: 1rem;
  margin-bottom: 2rem;
  font-family: ui-sans-serif, system-ui, sans-serif;
  font-size: 0.85rem;
  color: var(--mute);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}
.agent-bar a { color: var(--link); text-decoration: none }
.agent-bar a:hover { text-decoration: underline }
.agent-eyebrow {
  font-family: ui-sans-serif, system-ui, sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.78rem;
  color: var(--leaf);
  margin: 0 0 0.5rem;
}
h1 { font-size: 2.1rem; line-height: 1.2; margin: 0 0 1rem; font-weight: 600 }
h2 { font-size: 1.4rem; margin: 2rem 0 0.7rem; font-weight: 600; border-bottom: 1px solid var(--line); padding-bottom: 0.3rem }
h3 { font-size: 1.1rem; margin: 1.4rem 0 0.5rem; font-weight: 600 }
p { margin: 0 0 1rem }
ul, ol { margin: 0 0 1rem 1.5rem }
li { margin: 0.2rem 0 }
a { color: var(--link) }
.agent-meta {
  font-family: ui-sans-serif, system-ui, sans-serif;
  font-size: 0.85rem;
  color: var(--mute);
  margin-bottom: 1.5rem;
}
.agent-meta dt { font-weight: 600; color: var(--ink); display: inline; margin-right: 0.3rem }
.agent-meta dd { display: inline; margin: 0 1rem 0 0 }
.agent-canonical {
  background: rgba(74, 93, 35, 0.06);
  border-left: 3px solid var(--leaf);
  padding: 0.7rem 1rem;
  margin: 1.5rem 0;
  font-size: 0.9rem;
}
.agent-toc {
  background: rgba(255,255,255,0.5);
  border: 1px solid var(--line);
  padding: 1rem 1.4rem;
  margin: 1.5rem 0;
  border-radius: 4px;
}
.agent-toc h2 { margin-top: 0; border: none; font-size: 1rem }
.agent-toc ul { margin-bottom: 0 }
.agent-footer {
  border-top: 1px solid var(--line);
  margin-top: 3rem;
  padding-top: 1rem;
  font-family: ui-sans-serif, system-ui, sans-serif;
  font-size: 0.8rem;
  color: var(--mute);
}
.agent-footer a { color: var(--link) }
.agent-prev-next {
  display: flex; justify-content: space-between; gap: 1rem;
  margin: 2rem 0 1rem;
  font-family: ui-sans-serif, system-ui, sans-serif;
  font-size: 0.9rem;
}
@media (prefers-color-scheme: dark) {
  :root { --paper: #1a1a1a; --ink: #e8e2d4; --line: #3a3a3a; --leaf: #8da961; --mute: #999; --link: #8aa9d4; }
}
