/* humandesign4you — Design angelehnt an die alte Soledad-Seite:
   Oswald (Labels/Nav) + Work Sans (Text), Lila #613f75, Hellblau #79a9d1.
   Alle Assets selbst gehostet, keine externen Requests. */
:root {
  --ink: #313131;
  --ink-soft: #555555;
  --bg: #ffffff;
  --surface: #ffffff;
  --accent: #613f75;
  --accent-dark: #4c2f5d;
  --accent-soft: #f3eef7;
  --blue: #79a9d1;
  --border: #dedede;
  --max: 1080px;
  --max-narrow: 780px; /* Artikelspalte bewusst breiter als beim alten Theme */
}
* { box-sizing: border-box; }
body {
  margin: 0;
  font-family: "Work Sans", -apple-system, "Segoe UI", Arial, sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.7;
  font-size: 1.0625rem;
}
img { max-width: 100%; height: auto; }
a { color: var(--accent); }
a:hover { color: var(--accent-dark); }
h1, h2, h3, h4 { line-height: 1.3; color: var(--ink); font-weight: 700; }
h1 { font-size: clamp(1.7rem, 4vw, 2.3rem); }
h2 { font-size: clamp(1.3rem, 3vw, 1.65rem); margin-top: 2.2em; }
h3 { font-size: 1.15rem; }

.wrap { max-width: var(--max); margin: 0 auto; padding: 0 1.25rem; }
.wrap-narrow { max-width: var(--max-narrow); margin: 0 auto; padding: 0 1.25rem; }

/* Sticky Header — Logo links, Navigation daneben, Scrollbalken unten */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255, 255, 255, 0.97); border-bottom: 1px solid var(--border);
  backdrop-filter: blur(4px);
}
.header-inner { display: flex; align-items: center; gap: 1.6rem; padding: 0.7rem 1.25rem; }
.logo { display: inline-block; flex: 0 0 auto; }
.logo img { height: 40px; width: auto; display: block; }
/* Menü nutzt die volle Content-Breite: Punkte verteilen sich zwischen Logo und Button */
.main-nav { display: flex; gap: 1.1rem; flex-wrap: wrap; align-items: center; flex: 1; justify-content: space-between; margin-left: 1.5rem; }
.main-nav a {
  text-decoration: none; color: var(--ink);
  font-family: "Oswald", "Work Sans", sans-serif;
  font-weight: 400; font-size: 1rem; letter-spacing: 0.06em; text-transform: uppercase;
}
.main-nav a:hover { color: var(--accent); }
/* "Chart berechnen" als Button: farbig hinterlegt, weiße Schrift */
.main-nav .nav-cta { color: #fff; padding: 0.45rem 1rem; font-size: 0.82rem; }
.main-nav .nav-cta:hover { color: #fff; }

/* Gruppierte Nav-Dropdowns */
.nav-group { position: relative; }
.nav-group summary {
  cursor: pointer; list-style: none; color: var(--ink);
  font-family: "Oswald", "Work Sans", sans-serif; font-weight: 400;
  font-size: 1rem; letter-spacing: 0.06em; text-transform: uppercase;
}
.nav-group summary::-webkit-details-marker { display: none; }
/* Echter CSS-Pfeil statt Mini-Glyphe — klar sichtbar */
.nav-group summary::after {
  content: ""; display: inline-block; vertical-align: middle; margin-left: 0.45rem;
  border-left: 6px solid transparent; border-right: 6px solid transparent;
  border-top: 7px solid var(--accent); transition: transform 0.15s ease;
}
.nav-group[open] summary::after { transform: rotate(180deg); }
.nav-group summary:hover { color: var(--accent); }
.nav-group[open] summary { color: var(--accent); }
/* Dropdown auch per Hover öffnen (Maus-Geräte); Klick bleibt für Touch/Tastatur */
.nav-drop { display: none; }
.nav-group[open] .nav-drop { display: flex; }
@media (hover: hover) {
  .nav-group:hover .nav-drop { display: flex; }
  .nav-group:hover summary { color: var(--accent); }
}
.nav-drop {
  position: absolute; top: calc(100% + 0.6rem); left: -0.6rem; z-index: 110;
  background: var(--surface); border: 1px solid var(--border); border-top: 3px solid var(--accent);
  border-radius: 0 0 4px 4px; box-shadow: 0 8px 24px rgba(42, 29, 51, 0.15);
  min-width: 180px; padding: 0.4rem 0; display: flex; flex-direction: column;
}
.nav-drop a { padding: 0.5rem 1.1rem; text-transform: none; letter-spacing: 0; font-family: "Work Sans", sans-serif; font-size: 0.95rem; }
.nav-drop a:hover { background: var(--accent-soft); }

/* Mobile-Navigation: Burger-Button, Menü als aufklappbares Panel unter dem Header */
.nav-toggle { display: none; }
@media (max-width: 899px) {
  .header-inner { justify-content: space-between; }
  .nav-toggle {
    display: flex; flex-direction: column; justify-content: center; gap: 5px;
    width: 44px; height: 44px; padding: 0 10px; margin-left: auto;
    background: none; border: 1px solid var(--border); border-radius: 4px; cursor: pointer;
  }
  .nav-toggle span { display: block; height: 2px; background: var(--ink); border-radius: 1px; transition: transform 0.2s ease, opacity 0.2s ease; }
  .nav-open .nav-toggle span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .nav-open .nav-toggle span:nth-child(2) { opacity: 0; }
  .nav-open .nav-toggle span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
  .main-nav {
    display: none; position: absolute; left: 0; right: 0; top: 100%; z-index: 120;
    flex-direction: column; align-items: stretch; gap: 0; margin: 0;
    background: var(--surface); border-bottom: 1px solid var(--border);
    box-shadow: 0 12px 24px rgba(42, 29, 51, 0.14); padding: 0.3rem 0 1rem;
    max-height: calc(100vh - 70px); overflow-y: auto;
  }
  .nav-open .main-nav { display: flex; }
  .main-nav > a { padding: 0.75rem 1.25rem; }
  .nav-group summary { display: flex; align-items: center; justify-content: space-between; padding: 0.75rem 1.25rem; }
  .nav-drop { position: static; border: none; border-top: none; box-shadow: none; min-width: 0; padding: 0 0 0.4rem 1rem; }
  .main-nav .nav-cta { margin: 0.7rem 1.25rem 0; text-align: center; }
}
.scroll-progress { height: 3px; background: transparent; }
.scroll-progress-bar { height: 100%; width: 0; background: linear-gradient(90deg, var(--accent), var(--blue)); }

/* Buttons */
.btn {
  display: inline-block; background: var(--accent); color: #fff; text-decoration: none;
  padding: 0.65rem 1.4rem; border-radius: 3px; font-weight: 600;
  font-family: "Oswald", sans-serif; letter-spacing: 0.05em; text-transform: uppercase; font-size: 0.9rem;
}
.btn:hover { background: var(--accent-dark); color: #fff; }
.btn-nav { padding: 0.45rem 1rem; font-size: 0.8rem; }
.btn-hero { font-size: 1rem; padding: 0.85rem 1.8rem; }

/* Hero */
.hero { background: linear-gradient(150deg, var(--accent-soft), #eef4fa); padding: 3.2rem 0; text-align: center; }
.hero h1 { margin: 0 0 0.6rem; }
.hero .lead, .lead { color: var(--ink-soft); font-size: 1.1rem; max-width: 46em; }
.hero .lead { margin: 0 auto 1.6rem; }

/* Abschnitts-Label im Stil der alten Kategorie-Balken */
.wrap > h2, .section-label {
  font-family: "Oswald", sans-serif; font-weight: 500; text-transform: uppercase;
  letter-spacing: 0.08em; font-size: 1.05rem; color: var(--ink);
  border-bottom: 2px solid var(--accent); display: table; padding-bottom: 0.25rem;
}

/* Cards */
.card-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 1.25rem; margin: 1.5rem 0 2.5rem; }
.card {
  background: var(--surface); border: 1px solid var(--border); border-radius: 4px;
  overflow: hidden; text-decoration: none; color: inherit; display: flex; flex-direction: column;
  transition: box-shadow 0.15s ease;
}
.card:hover { box-shadow: 0 4px 18px rgba(97, 63, 117, 0.18); }
.card img { aspect-ratio: 16/9; object-fit: cover; width: 100%; }
.card-body { padding: 1rem 1.1rem 1.2rem; }
.card h3 { margin: 0 0 0.4rem; font-size: 1.02rem; }
.card p { margin: 0; color: var(--ink-soft); font-size: 0.9rem; }

/* Themen-Grid */
.topic-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 1rem; margin: 1.5rem 0 2.5rem; }
.topic {
  background: var(--surface); border: 1px solid var(--border); border-left: 4px solid var(--accent);
  border-radius: 4px; padding: 1.1rem 1.2rem; text-decoration: none; color: inherit;
}
.topic:hover { border-left-color: var(--blue); }
.topic strong {
  display: block; margin-bottom: 0.3rem; color: var(--accent);
  font-family: "Oswald", sans-serif; font-weight: 500; text-transform: uppercase; letter-spacing: 0.06em;
}
.topic span { font-size: 0.9rem; color: var(--ink-soft); }

/* Artikel */
.article { padding: 2rem 1.25rem 3rem; }
.article-meta { color: var(--ink-soft); font-size: 0.88rem; margin-top: -0.5rem; }
.featured { border-radius: 4px; margin: 1rem 0 1.5rem; }
.article-body table { border-collapse: collapse; width: 100%; margin: 1.5rem 0; display: block; overflow-x: auto; }
.article-body th, .article-body td { border: 1px solid var(--border); padding: 0.6rem 0.85rem; text-align: left; }
.article-body th { background: var(--accent); color: #fff; font-weight: 600; }
.article-body blockquote { border-left: 4px solid var(--blue); margin: 1.5rem 0; padding: 0.3rem 0 0.3rem 1.2rem; color: var(--ink-soft); }

/* Breadcrumb */
.breadcrumb { font-size: 0.85rem; margin: 1.5rem 0 0.5rem; }
.breadcrumb ol { list-style: none; display: flex; flex-wrap: wrap; gap: 0.4rem; padding: 0; margin: 0; }
.breadcrumb li + li::before { content: "›"; margin-right: 0.4rem; color: var(--ink-soft); }
.breadcrumb a { color: var(--ink-soft); text-decoration: none; }
.breadcrumb a:hover { color: var(--accent); }
.breadcrumb li[aria-current] { color: var(--ink-soft); }

/* CTA-Box */
.cta-box {
  background: var(--accent-soft); border: 1px solid var(--border); border-top: 3px solid var(--accent);
  border-radius: 4px; padding: 1.8rem 2rem; margin: 3rem 0 2rem; text-align: center;
}
.cta-box h2 { margin: 0 0 0.5rem; font-size: 1.3rem; border: none; display: block; text-transform: none; letter-spacing: 0; font-family: "Work Sans", sans-serif; }
.cta-box p { color: var(--ink-soft); max-width: 40em; margin: 0 auto 1.2rem; }

/* Chartreader */
.chartreader { padding-bottom: 3rem; }
.embed-placeholder {
  border: 2px dashed var(--accent); border-radius: 4px; padding: 2.5rem 2rem;
  text-align: center; margin: 2rem 0; background: var(--surface);
}
.reading-offer { background: var(--accent-soft); border-radius: 4px; padding: 1.8rem 2rem; margin: 2.5rem 0; }
.faq h3 { margin-bottom: 0.3rem; }
.faq p { margin-top: 0; color: var(--ink-soft); }

/* Footer — dunkles Lila statt neutralem Dunkelgrau */
.site-footer { background: #2a1d33; color: #cfc4d9; margin-top: 3rem; }
.footer-inner { display: flex; justify-content: space-between; gap: 2rem; padding: 2.5rem 1.25rem; flex-wrap: wrap; }
.logo-footer { display: inline-block; margin-bottom: 0.8rem; }
.logo-footer img { height: 48px; width: auto; display: block; }
.site-footer p { max-width: 34em; font-size: 0.92rem; }
.site-footer nav { display: flex; flex-direction: column; gap: 0.5rem; }
.site-footer a { color: #cfc4d9; }
.site-footer a:hover { color: #fff; }

@media (max-width: 640px) {
  .footer-inner { flex-direction: column; }
}

/* Sekundärlink unter dem CTA */
.cta-alt { font-size: 0.88rem; margin-top: 0.9rem; }

/* Autoren-Element im Artikel-Hero (Trust-Signal, verlinkt auf /ueber/) */
.hero-author {
  display: inline-flex; align-items: center; gap: 0.8rem; margin-top: 0.9rem;
  text-decoration: none; color: inherit;
  background: rgba(255, 255, 255, 0.75); border: 1px solid var(--border);
  border-radius: 999px; padding: 0.45rem 1.2rem 0.45rem 0.5rem;
}
.hero-author:hover { border-color: var(--accent); }
.hero-author-avatar {
  width: 44px; height: 44px; border-radius: 50%; object-fit: cover; flex: 0 0 auto;
}
.hero-author-initial {
  background: var(--accent); color: #fff; display: grid; place-items: center;
  font-family: "Oswald", sans-serif; font-size: 1.25rem;
}
.hero-author-text { display: flex; flex-direction: column; line-height: 1.35; }
.hero-author-text strong { font-size: 0.95rem; }
.hero-author-text > span { color: var(--ink-soft); font-size: 0.8rem; }

/* Artikel-Hero: Titel links, Bild rechts auf Farbfläche — mobil gestapelt */
.article { padding: 0 0 3rem; }
.article-hero { background: linear-gradient(150deg, var(--accent-soft), #eef4fa); border-bottom: 1px solid var(--border); }
.article-hero-inner { display: grid; grid-template-columns: 1fr; gap: 1.5rem; align-items: center; padding-top: 1rem; padding-bottom: 2rem; }
.article-hero-text h1 { margin: 0.4rem 0 0.6rem; }
.article-hero-img { border-radius: 6px; width: 100%; aspect-ratio: 16/10; object-fit: cover; }
@media (min-width: 900px) {
  .article-hero-inner { grid-template-columns: 3fr 2fr; gap: 3rem; padding-bottom: 2.5rem; }
}

/* Kategorie-Chip */
.chip {
  display: inline-block; background: var(--accent); color: #fff; text-decoration: none;
  font-family: "Oswald", sans-serif; font-size: 0.72rem; letter-spacing: 0.1em; text-transform: uppercase;
  padding: 0.25rem 0.7rem; border-radius: 3px;
}
.chip:hover { background: var(--accent-dark); color: #fff; }
.chip-static { pointer-events: none; }

/* Inhaltsverzeichnis */
.toc {
  background: #faf8fc; border: 1px solid var(--border); border-left: 4px solid var(--accent);
  border-radius: 4px; padding: 0.9rem 1.2rem; margin: 2rem 0 1rem;
}
.toc summary {
  cursor: pointer; font-family: "Oswald", sans-serif; font-weight: 500;
  text-transform: uppercase; letter-spacing: 0.06em; font-size: 0.92rem;
}
.toc ol { margin: 0.8rem 0 0.2rem; padding-left: 1.3rem; }
.toc li { margin: 0.35rem 0; }
.toc a { color: var(--ink); text-decoration: none; }
.toc a:hover { color: var(--accent); text-decoration: underline; }

/* Autorbox */
.author-box {
  display: flex; gap: 1rem; align-items: flex-start;
  border: 1px solid var(--border); border-radius: 4px; padding: 1.2rem 1.4rem; margin: 2rem 0;
}
.author-avatar {
  flex: 0 0 auto; width: 52px; height: 52px; border-radius: 50%;
  background: var(--accent); color: #fff; display: grid; place-items: center;
  font-family: "Oswald", sans-serif; font-size: 1.4rem;
}
.author-box p { margin: 0.3rem 0 0; color: var(--ink-soft); font-size: 0.92rem; }

/* Related */
.related { margin-top: 2.5rem; }

/* Featured-Card auf Kategorieseiten */
.featured-card {
  display: grid; grid-template-columns: 1fr; gap: 0; margin: 1.5rem 0;
  border: 1px solid var(--border); border-radius: 4px; overflow: hidden;
  text-decoration: none; color: inherit; background: var(--surface);
  transition: box-shadow 0.15s ease;
}
.featured-card:hover { box-shadow: 0 4px 18px rgba(97, 63, 117, 0.18); }
.featured-card img { width: 100%; aspect-ratio: 16/9; object-fit: cover; }
.featured-card-body { padding: 1.3rem 1.5rem; }
.featured-card-body h2 { margin: 0.6rem 0 0.5rem; border: none; display: block; text-transform: none; letter-spacing: 0; font-family: "Work Sans", sans-serif; font-size: 1.35rem; }
.featured-card-body p { margin: 0; color: var(--ink-soft); font-size: 0.95rem; }
@media (min-width: 800px) {
  .featured-card { grid-template-columns: 5fr 4fr; }
  .featured-card img { height: 100%; aspect-ratio: auto; }
}

/* Starte-hier-Pfad auf der Startseite */
.start-path { list-style: none; padding: 0; margin: 1.5rem 0 2.5rem; display: grid; gap: 0.9rem; }
.start-path a {
  display: flex; gap: 1rem; align-items: center; text-decoration: none; color: inherit;
  border: 1px solid var(--border); border-radius: 4px; padding: 1rem 1.2rem; background: var(--surface);
}
.start-path a:hover { border-color: var(--accent); }
.step-num {
  flex: 0 0 auto; width: 40px; height: 40px; border-radius: 50%;
  background: var(--accent); color: #fff; display: grid; place-items: center;
  font-family: "Oswald", sans-serif; font-size: 1.15rem;
}
.step-body { display: flex; flex-direction: column; }
.step-body strong { font-size: 1.02rem; }
.step-body span { color: var(--ink-soft); font-size: 0.88rem; }
@media (min-width: 800px) {
  .start-path { grid-template-columns: repeat(3, 1fr); }
  .start-path a { flex-direction: column; text-align: center; padding: 1.4rem 1.2rem; }
}

/* ---------- Startseite (Magazin-Layout nach Designvorlagen) ---------- */

/* Oben: großer Featured-Artikel + Beliebt-Liste rechts */
.home-top { display: grid; grid-template-columns: 1fr; gap: 2rem; padding-top: 2rem; }
.home-featured { text-decoration: none; color: inherit; display: block; }
.home-featured img { width: 100%; aspect-ratio: 16/9; object-fit: cover; border-radius: 6px; }
.home-featured-body { padding: 1rem 0 0; }
.home-featured h1 { margin: 0.6rem 0 0.5rem; font-size: clamp(1.5rem, 3.5vw, 2.1rem); }
.home-featured:hover h1 { color: var(--accent); }
.home-featured p { margin: 0; color: var(--ink-soft); }
.popular-list ol { list-style: none; margin: 1.2rem 0 0; padding: 0; }
.popular-list li { border-bottom: 1px solid var(--border); }
.popular-list li:last-child { border-bottom: none; }
.popular-list a { display: block; padding: 0.85rem 0; text-decoration: none; color: inherit; }
.popular-list a:hover .popular-title { color: var(--accent); }
.popular-cat {
  display: block; font-family: "Oswald", sans-serif; font-size: 0.7rem;
  letter-spacing: 0.1em; text-transform: uppercase; color: var(--accent); margin-bottom: 0.15rem;
}
.popular-title { font-weight: 600; font-size: 0.96rem; line-height: 1.4; }
@media (min-width: 900px) {
  .home-top { grid-template-columns: 5fr 2fr; gap: 3rem; }
}

/* Farbige Bänder für Rhythmus */
.band { padding: 2.5rem 0 3rem; margin: 2.5rem 0 0; }
.band-soft { background: linear-gradient(150deg, var(--accent-soft), #eef4fa); }

/* Start-Pfad-Band: hell und freundlich */
.band-start { background: linear-gradient(150deg, #f7f3fb, #eef6f3); }
.band-start h2 { font-size: clamp(1.3rem, 3vw, 1.8rem); }
.band-lead { color: var(--ink-soft); max-width: 46em; }
.band-cta { margin-top: 1.4rem; }
.band-cta a { color: var(--accent); font-weight: 600; }

.about-actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; margin-top: 1.6rem; }
.btn-outline { background: transparent; color: var(--accent); border: 2px solid var(--accent); }
.btn-outline:hover { background: var(--accent); color: #fff; }

/* Reiche Themen-Karten */
.topic-rich-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 1rem; margin: 1.5rem 0 2.5rem; }
.topic-rich { border: 1px solid var(--border); border-top: 3px solid var(--accent); border-radius: 4px; background: var(--surface); padding: 1rem 1.2rem 0.8rem; }
.topic-rich-head { display: flex; justify-content: space-between; align-items: baseline; gap: 0.6rem; text-decoration: none; }
.topic-rich-head strong {
  color: var(--accent); font-family: "Oswald", sans-serif; font-weight: 500;
  text-transform: uppercase; letter-spacing: 0.06em; font-size: 1rem;
}
.topic-count { font-size: 0.78rem; color: var(--ink-soft); white-space: nowrap; }
.topic-rich ul { list-style: none; margin: 0.7rem 0 0.4rem; padding: 0; }
.topic-rich li { padding: 0.32rem 0; border-top: 1px solid #efecf3; font-size: 0.92rem; }
.topic-rich li a { color: var(--ink); text-decoration: none; }
.topic-rich li a:hover { color: var(--accent); }
.topic-all a { color: var(--accent) !important; font-weight: 600; font-size: 0.88rem; }

/* Trust-Sektion */
.trust-band { margin-bottom: -3rem; }
.trust-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 1rem; margin: 1.6rem 0; }
.trust-stat { background: var(--surface); border: 1px solid var(--border); border-radius: 4px; padding: 1.1rem 1.3rem; }
.trust-stat strong { display: block; font-family: "Oswald", sans-serif; font-size: 1.5rem; color: var(--accent); font-weight: 500; }
.trust-stat span { color: var(--ink-soft); font-size: 0.9rem; }
.trust-principles { list-style: none; padding: 0; margin: 1rem 0 0; display: grid; gap: 0.7rem; }
.trust-principles li { background: var(--surface); border-left: 3px solid var(--blue); border-radius: 0 4px 4px 0; padding: 0.7rem 1rem; font-size: 0.95rem; color: var(--ink-soft); }
.trust-principles strong { color: var(--ink); }
@media (min-width: 900px) { .trust-principles { grid-template-columns: 1fr 1fr; } }

/* Floating-CTA: Desktop schwebende Karte rechts, Mobile Sticky-Bar unten (Thumb Zone) */
.float-cta[hidden] { display: none; }
.float-cta {
  position: fixed; z-index: 90; background: var(--surface);
  border: 1px solid var(--border); box-shadow: 0 6px 24px rgba(42, 29, 51, 0.18);
}
.float-cta-close {
  position: absolute; top: 0.3rem; right: 0.45rem; border: none; background: none;
  font-size: 1.15rem; line-height: 1; color: var(--ink-soft); cursor: pointer; padding: 0.2rem;
}
.float-cta-close:hover { color: var(--ink); }
/* Mobile: Bar am unteren Rand */
@media (max-width: 899px) {
  .float-cta {
    left: 0; right: 0; bottom: 0; border-radius: 0; border-left: none; border-right: none; border-bottom: none;
    display: flex; align-items: center; gap: 0.8rem; padding: 0.6rem 2.2rem 0.6rem 1rem;
    padding-bottom: calc(0.6rem + env(safe-area-inset-bottom));
  }
  .float-cta-body { flex: 1; min-width: 0; }
  .float-cta-body strong { display: block; font-size: 0.9rem; }
  .float-cta-body span { display: none; }
  .float-cta .btn { flex: 0 0 auto; padding: 0.6rem 1rem; font-size: 0.82rem; min-height: 44px; display: inline-flex; align-items: center; }
}
/* Desktop: Karte rechts unten */
@media (min-width: 900px) {
  .float-cta {
    right: 1.5rem; bottom: 1.5rem; width: 270px; border-radius: 6px;
    border-top: 3px solid var(--accent); padding: 1.1rem 1.2rem;
  }
  .float-cta-body strong { display: block; margin-bottom: 0.25rem; }
  .float-cta-body span { display: block; color: var(--ink-soft); font-size: 0.88rem; margin-bottom: 0.8rem; }
}

/* KI-Bildkennzeichnung (Beitragsbild + eingebettete Bilder) */
.article-hero-fig, .ki-img { margin: 0; position: relative; display: block; }
.ki-img { margin: 1.5rem 0; }
.ki-img img { border-radius: 4px; display: block; }
.article-hero-fig figcaption, .ki-img figcaption {
  position: absolute; right: 0.5rem; bottom: 0.5rem;
  background: rgba(42, 29, 51, 0.72); color: #fff; font-size: 0.68rem;
  padding: 0.15rem 0.5rem; border-radius: 3px; letter-spacing: 0.03em;
}

/* Schnellfinder — Links bewusst groß und fett, das ist die Hauptnavigation innerhalb der Kategorie */
.quickfinder {
  background: #faf8fc; border: 1px solid var(--border); border-left: 4px solid var(--accent);
  border-radius: 4px; padding: 1rem 1.2rem; margin: 1.4rem 0; font-size: 1.08rem;
  line-height: 2.3;
}
/* Flex mit Umbruch — die Linkzeile darf nie nach rechts rauslaufen */
.quickfinder p { margin: 0; display: flex; flex-wrap: wrap; align-items: baseline; column-gap: 0.15rem; row-gap: 0.1rem; }

/* Bodygraph-Embed */
.chart-note {
  background: var(--accent-soft); border-left: 4px solid var(--accent); border-radius: 4px;
  padding: 0.9rem 1.2rem; margin: 1.6rem 0 0; font-size: 1.08rem;
}
.chart-note strong { font-weight: 700; }
.chart-embed { margin: 1rem 0 2rem; }
.chart-embed bodygraph-embed { display: block; min-height: 480px; }
.qf-head {
  display: block; font-family: "Oswald", sans-serif; font-weight: 500; font-size: 0.8rem;
  text-transform: uppercase; letter-spacing: 0.08em; color: var(--ink-soft); margin-bottom: 0.2rem;
}
.quickfinder a { text-decoration: none; white-space: nowrap; padding: 0.1rem 0.2rem; font-weight: 700; }
.quickfinder a:hover { text-decoration: underline; }
.qf-sep { color: #c9c2d4; margin: 0 0.5rem; font-weight: 400; }
.qf-current { font-weight: 700; color: var(--ink-soft); white-space: nowrap; }

/* Neues Logo ist breites Querformat — Größe zentral hier */
.logo img { height: 54px; }
@media (max-width: 640px) { .logo img { height: 38px; } }

/* Aufklappbare FAQ */
.faq-item {
  border: 1px solid var(--border); border-radius: 4px; margin: 0.6rem 0;
  background: var(--surface);
}
.faq-item summary {
  cursor: pointer; padding: 0.85rem 1.1rem; font-weight: 600; font-size: 0.98rem;
  list-style-position: inside;
}
.faq-item summary:hover { color: var(--accent); }
.faq-item[open] summary { border-bottom: 1px solid var(--border); color: var(--accent); }
.faq-answer { padding: 0.8rem 1.1rem 0.4rem; color: var(--ink-soft); }

/* Kategorie-Introtext */
.cat-intro { max-width: 50em; }
.cat-intro p { color: var(--ink-soft); }
