@charset "utf-8";

:root { --bg: #FFFFFF; --ink: #111111; --blue: #2563EB; --blue-dark: #1E40AF; --blue-soft: #DBEAFE; --blue-bg: #EFF6FF; --gray-600: #4B5563; --gray-200: #E5E7EB; --gray-50: #F9FAFB; --max: 800px; }

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body { font-family: "Plus Jakarta Sans", -apple-system, BlinkMacSystemFont, sans-serif; font-size: 17px; line-height: 1.7; color: var(--ink); background: var(--bg); -webkit-font-smoothing: antialiased; text-rendering: optimizeLegibility; }

.wrap { max-width: var(--max); margin: 0 auto; padding: 0 24px; }

header.site { padding: 20px 0; border-bottom: 1px solid var(--gray-200); position: sticky; top: 0; background: rgba(255,255,255,.92); backdrop-filter: blur(8px); z-index: 10; }

header.site .wrap { display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap; }

.brand { display: inline-block; text-decoration: none; line-height: 0; }

.brand img { height: 32px; width: auto; display: block; }

nav.main { display: flex; gap: 18px; flex-wrap: wrap; }

nav.main a { font-size: 14px; font-weight: 600; color: var(--gray-600); text-decoration: none; }

nav.main a:hover { color: var(--blue); }

@media (max-width: 560px) {
  .brand img { height: 26px; }
  nav.main { gap: 12px; }
  nav.main a { font-size: 13px; }
}

.breadcrumb { font-size: 13px; color: var(--gray-600); padding: 18px 0 0; }

.breadcrumb ol { list-style: none; display: flex; flex-wrap: wrap; gap: 6px; }

.breadcrumb li + li::before { content: "›"; margin-right: 6px; color: var(--gray-200); }

.breadcrumb a { color: var(--gray-600); text-decoration: none; }

.breadcrumb a:hover { color: var(--blue); }

.hero { padding: 56px 0 40px; }

article.page .hero { padding: 40px 0 24px; }

.kicker { display: inline-flex; align-items: center; gap: 8px; padding: 6px 14px; background: var(--blue-bg); color: var(--blue-dark); border-radius: 999px; font-size: 13px; font-weight: 600; letter-spacing: .02em; margin-bottom: 24px; }

.kicker::before { content: ""; width: 7px; height: 7px; background: var(--blue); border-radius: 50%; }

h1 { font-weight: 800; font-size: clamp(34px, 5vw, 50px); line-height: 1.1; letter-spacing: -.035em; color: var(--ink); margin-bottom: 24px; }

h1 .highlight { color: var(--blue); }

.subtitle { font-size: 20px; font-weight: 400; color: var(--gray-600); margin-bottom: 32px; line-height: 1.5; max-width: 640px; }

.lead { font-size: 17px; line-height: 1.75; color: var(--gray-600); margin-bottom: 16px; }

.byline { font-size: 13px; color: var(--gray-600); margin-bottom: 20px; }

.overview { margin: 56px 0; padding: 36px; background: var(--gray-50); border: 1px solid var(--gray-200); border-radius: 16px; }

.overview h2 { font-weight: 700; font-size: 22px; letter-spacing: -.02em; margin-bottom: 24px; }

.overview ol { list-style: none; }

.overview li { padding: 16px 0; border-top: 1px solid var(--gray-200); display: flex; gap: 20px; align-items: flex-start; }

.overview li:first-child { border-top: none; padding-top: 0; }

.overview .num-badge { min-width: 32px; height: 32px; background: var(--blue); color: #fff; border-radius: 8px; display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: 14px; flex-shrink: 0; }

.overview li:first-child .num-badge { background: linear-gradient(135deg, var(--blue) 0%, var(--blue-dark) 100%); box-shadow: 0 4px 12px rgba(37,99,235,.25); }

.overview a { font-weight: 700; font-size: 17px; color: var(--ink); text-decoration: none; transition: color .15s; }

.overview a:hover { color: var(--blue); }

.overview .desc { font-size: 15px; color: var(--gray-600); display: block; margin-top: 4px; line-height: 1.5; }

section.tool { padding: 64px 0 24px; border-top: 1px solid var(--gray-200); scroll-margin-top: 100px; }

.rank-row { display: flex; align-items: center; gap: 12px; margin-bottom: 16px; flex-wrap: wrap; }

.rank-badge { display: inline-flex; align-items: center; gap: 6px; padding: 5px 12px; background: var(--blue-bg); color: var(--blue-dark); border-radius: 6px; font-size: 13px; font-weight: 700; letter-spacing: .01em; }

.rank-badge.featured { background: var(--blue); color: #fff; }

.rank-badge svg { width: 14px; height: 14px; fill: currentColor; }

.rating { display: inline-flex; align-items: center; gap: 6px; font-size: 13px; font-weight: 700; color: var(--blue-dark); background: var(--gray-50); border: 1px solid var(--gray-200); border-radius: 6px; padding: 5px 12px; }

h2 { font-weight: 800; font-size: clamp(28px, 4vw, 38px); letter-spacing: -.03em; line-height: 1.12; margin-bottom: 14px; }

article.page h2 { font-size: clamp(24px, 3.4vw, 32px); margin: 48px 0 16px; }

.tagline { font-family: "Source Serif 4", Georgia, serif; font-style: italic; font-size: 20px; color: var(--gray-600); margin-bottom: 32px; line-height: 1.45; font-weight: 400; }

.bullets { list-style: none; margin-bottom: 32px; padding: 24px 28px; background: var(--blue-bg); border-radius: 12px; border-left: 3px solid var(--blue); }

.bullets li { padding: 6px 0; font-size: 16px; color: var(--ink); font-weight: 500; display: flex; gap: 12px; align-items: flex-start; }

.bullets li::before { content: ""; width: 18px; height: 18px; margin-top: 4px; flex-shrink: 0; background-color: var(--blue); border-radius: 50%; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 18 18'%3E%3Cpath d='M5 9l3 3 5-6' stroke='white' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round' fill='none'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: center; }

h3 { font-weight: 700; font-size: 22px; letter-spacing: -.015em; margin: 40px 0 16px; color: var(--ink); }

h4 { font-weight: 700; font-size: 17px; letter-spacing: -.005em; margin: 28px 0 10px; color: var(--ink); display: flex; gap: 10px; align-items: baseline; }

h4 .num { color: var(--blue); font-weight: 800; font-size: 15px; min-width: 22px; }

p { margin-bottom: 16px; color: var(--gray-600); }

p strong { color: var(--ink); font-weight: 600; }

main a:not(.btn):not(.card):not(.overview a) { color: var(--blue-dark); text-decoration: underline; text-decoration-color: var(--blue-soft); text-underline-offset: 3px; }

main a:not(.btn):not(.card):hover { text-decoration-color: var(--blue); }

ul.inline { margin: 10px 0 18px 8px; color: var(--gray-600); list-style: none; }

ul.inline li { padding: 5px 0 5px 22px; position: relative; }

ul.inline li::before { content: ""; position: absolute; left: 0; top: 14px; width: 12px; height: 2px; background: var(--blue); border-radius: 2px; }

.cta { margin: 36px 0; padding: 28px 32px; background: linear-gradient(135deg, var(--blue) 0%, var(--blue-dark) 100%); border-radius: 14px; display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 20px; color: #fff; box-shadow: 0 8px 24px rgba(37,99,235,.2); }

.cta-text { font-size: 16px; flex: 1 1 0%; min-width: 220px; line-height: 1.5; }

.cta-text strong { display: block; font-weight: 700; font-size: 18px; margin-bottom: 2px; }

.btn { display: inline-flex; align-items: center; gap: 8px; padding: 12px 22px; background: #fff; color: var(--blue-dark); text-decoration: none; font-weight: 700; font-size: 15px; border-radius: 8px; transition: transform .15s, box-shadow .15s; white-space: nowrap; }

.btn:hover { transform: translateY(-1px); box-shadow: 0 6px 16px rgba(0,0,0,.15); }

.btn svg { width: 14px; height: 14px; transition: transform .2s; }

.btn:hover svg { transform: translateX(3px); }

.prosperos { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin: 32px 0 16px; }

@media (max-width: 600px) {
  .prosperos { grid-template-columns: 1fr; }
}

.prosperos > div { padding: 24px; border: 1px solid var(--gray-200); border-radius: 12px; background: var(--bg); }

.prosperos .pros { border-left: 3px solid var(--blue); }

.prosperos .cons { border-left: 3px solid var(--gray-200); }

.prosperos h4 { font-weight: 700; font-size: 15px; margin: 0 0 14px; padding-bottom: 10px; border-bottom: 1px solid var(--gray-200); letter-spacing: .02em; text-transform: uppercase; display: block; }

.prosperos .pros h4 { color: var(--blue-dark); }

.prosperos .cons h4 { color: var(--gray-600); }

.prosperos ul { list-style: none; }

.prosperos li { padding: 6px 0 6px 22px; font-size: 15px; color: var(--gray-600); position: relative; line-height: 1.5; }

.prosperos .pros li::before { content: "+"; position: absolute; left: 0; top: 6px; width: 16px; height: 16px; background: var(--blue); color: #fff; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 12px; font-weight: 700; line-height: 1; }

.prosperos .cons li::before { content: "−"; position: absolute; left: 0; top: 6px; width: 16px; height: 16px; background: var(--gray-200); color: var(--gray-600); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 13px; font-weight: 700; line-height: 1; }

.divider { display: flex; justify-content: center; margin: 56px 0 0; }

.divider span { display: block; width: 4px; height: 4px; background: var(--gray-200); border-radius: 50%; margin: 0 6px; }

.divider span:nth-child(2) { background: var(--blue); }

/* Comparison tables */
.table-scroll { overflow-x: auto; margin: 28px 0; border: 1px solid var(--gray-200); border-radius: 12px; }

table.compare { width: 100%; border-collapse: collapse; font-size: 15px; min-width: 560px; }

table.compare th, table.compare td { padding: 12px 16px; text-align: left; border-bottom: 1px solid var(--gray-200); vertical-align: top; }

table.compare thead th { background: var(--gray-50); font-size: 13px; text-transform: uppercase; letter-spacing: .03em; color: var(--gray-600); }

table.compare tbody tr:last-child td { border-bottom: none; }

table.compare td:first-child, table.compare th:first-child { font-weight: 600; color: var(--ink); }

table.compare .win { color: var(--blue-dark); font-weight: 700; }

/* FAQ */
.faq { margin: 56px 0; }

.faq details { border: 1px solid var(--gray-200); border-radius: 12px; padding: 18px 22px; margin-bottom: 12px; background: var(--bg); }

.faq details[open] { border-color: var(--blue-soft); background: var(--gray-50); }

.faq summary { font-weight: 700; font-size: 16px; color: var(--ink); cursor: pointer; list-style: none; display: flex; justify-content: space-between; gap: 12px; align-items: center; }

.faq summary::after { content: "+"; font-size: 20px; color: var(--blue); font-weight: 700; flex-shrink: 0; }

.faq details[open] summary::after { content: "−"; }

.faq summary::-webkit-details-marker { display: none; }

.faq details p { margin: 12px 0 4px; font-size: 15px; }

/* Related-content cards */
.related { margin: 56px 0; }

.related h2 { font-size: 22px; margin-bottom: 20px; }

.card-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }

@media (max-width: 600px) { .card-grid { grid-template-columns: 1fr; } }

a.card { display: block; padding: 18px 20px; border: 1px solid var(--gray-200); border-radius: 12px; text-decoration: none; transition: border-color .15s, box-shadow .15s; background: var(--bg); }

a.card:hover { border-color: var(--blue); box-shadow: 0 4px 14px rgba(37,99,235,.08); }

a.card strong { display: block; font-size: 15px; color: var(--ink); margin-bottom: 4px; }

a.card span { font-size: 13.5px; color: var(--gray-600); line-height: 1.5; display: block; }

/* Info box */
.note { margin: 28px 0; padding: 18px 22px; background: var(--gray-50); border-left: 3px solid var(--blue); border-radius: 0 10px 10px 0; font-size: 15px; color: var(--gray-600); }

.fazit { margin: 80px 0 48px; padding: 48px 40px; background: var(--gray-50); border-radius: 20px; }

.fazit h2 { margin-bottom: 24px; }

.fazit p { font-size: 17px; }

footer.site { margin-top: 48px; padding: 40px 0 56px; border-top: 1px solid var(--gray-200); font-size: 14px; color: var(--gray-600); }

footer.site .footer-cols { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 24px; margin-bottom: 28px; }

footer.site .footer-cols h5 { font-size: 13px; text-transform: uppercase; letter-spacing: .04em; color: var(--ink); margin-bottom: 10px; }

footer.site .footer-cols ul { list-style: none; }

footer.site .footer-cols li { padding: 3px 0; }

footer.site .footer-links { display: flex; gap: 24px; flex-wrap: wrap; margin-bottom: 20px; }

footer.site a { color: var(--gray-600); text-decoration: none; font-weight: 500; }

footer.site a:hover { color: var(--blue); }

.affiliate-notice { font-size: 13px; line-height: 1.6; padding: 16px 20px; background: var(--gray-50); border-radius: 10px; margin-bottom: 20px; }

/* Legal pages */
.legal h2 { font-size: 22px; margin: 36px 0 12px; }

.legal p, .legal li { font-size: 15.5px; }

.legal ul { margin: 0 0 16px 22px; color: var(--gray-600); }

@media (max-width: 600px) {
  .overview { padding: 24px 20px; }
  .bullets { padding: 20px; }
  .cta { padding: 24px; }
  .fazit { padding: 40px 24px; }
  body { font-size: 16px; }
}

/* Work-in-progress-Hinweis */
.wip { margin: 24px 0 32px; padding: 18px 22px; background: #FEF3C7; border: 1px solid #FCD34D; border-left: 4px solid #F59E0B; border-radius: 0 10px 10px 0; font-size: 15px; line-height: 1.6; color: #78350F; }

.wip strong { color: #78350F; }

/* Breadcrumb: aktive Seite */
.breadcrumb span[aria-current="page"] { color: var(--ink); font-weight: 600; }

/* ============================================================
   Design-Elemente v2 (12.08.2026): Sticky-TOC, Meta-Zeile,
   Zusammenfassungs-Box, Autoren-Box
   ============================================================ */

/* --- Sticky-Inhaltsverzeichnis rechts --- */
.toc { display: none; }

@media (min-width: 1140px) {
  main.wrap-toc { max-width: 1128px; }
  .layout { display: grid; grid-template-columns: minmax(0, 752px) 264px; gap: 64px; align-items: start; }
  .layout > article, .layout > .col-main { min-width: 0; }

  .toc { display: block; position: sticky; top: 96px; padding: 20px 22px; border: 1px solid var(--gray-200); border-radius: 14px; background: var(--gray-50); max-height: calc(100vh - 128px); overflow: auto; }
  .toc-title { font-size: 12px; font-weight: 800; text-transform: uppercase; letter-spacing: .06em; color: var(--gray-600); margin-bottom: 10px; }
  .toc ol { list-style: none; counter-reset: toc; }
  .toc li { counter-increment: toc; }
  main .toc a { display: flex; gap: 10px; padding: 7px 10px; margin: 0 -10px; font-size: 13.5px; line-height: 1.4; color: var(--gray-600); text-decoration: none !important; border-radius: 8px; transition: background .15s, color .15s; }
  main .toc a::before { content: counter(toc, decimal-leading-zero); font-weight: 800; font-size: 11px; color: var(--blue); opacity: .65; margin-top: 3px; flex-shrink: 0; }
  main .toc a:hover { color: var(--ink); background: var(--blue-bg); }
  main .toc a.active { color: var(--blue-dark); font-weight: 700; background: var(--blue-bg); }
  main .toc a.active::before { opacity: 1; }
}

h2[id], section[id], aside[id] { scroll-margin-top: 110px; }

/* --- Meta-Zeile über der H1 --- */
.meta-row { display: flex; flex-wrap: wrap; gap: 6px 10px; align-items: center; font-size: 13.5px; color: var(--gray-600); margin: -10px 0 22px; }
.meta-row .dot { color: var(--gray-200); }
.meta-row strong { color: var(--ink); font-weight: 600; }

/* --- Zusammenfassungs-Box --- */
.summary-box { margin: 4px 0 24px; padding: 22px 26px; background: var(--blue-bg); border: 1px solid var(--blue-soft); border-radius: 14px; }
.summary-box .summary-label { display: inline-flex; align-items: center; gap: 8px; font-size: 12px; font-weight: 800; letter-spacing: .06em; text-transform: uppercase; color: var(--blue-dark); margin-bottom: 8px; }
.summary-box .summary-label::before { content: ""; width: 7px; height: 7px; background: var(--blue); border-radius: 50%; }
.summary-box p { margin: 0; color: var(--ink); font-size: 16.5px; line-height: 1.65; }
.summary-box p strong { color: var(--ink); }

/* --- Autoren-Box am Artikelende --- */
.author-box { margin: 48px 0 8px; padding: 28px; border: 1px solid var(--gray-200); border-radius: 16px; display: flex; gap: 20px; align-items: flex-start; background: var(--bg); }
.author-avatar { width: 56px; height: 56px; border-radius: 50%; background: linear-gradient(135deg, var(--blue) 0%, var(--blue-dark) 100%); color: #fff; display: flex; align-items: center; justify-content: center; font-weight: 800; font-size: 19px; letter-spacing: .02em; flex-shrink: 0; box-shadow: 0 4px 12px rgba(37,99,235,.2); }
.author-box .author-name { font-weight: 800; font-size: 17px; color: var(--ink); margin: 0 0 2px; letter-spacing: -.01em; }
.author-box .author-role { font-size: 13.5px; color: var(--gray-600); margin-bottom: 10px; }
.author-box p { font-size: 14.5px; line-height: 1.6; margin: 0 0 10px; }
.author-box .author-links { font-size: 13.5px; font-weight: 600; }
.author-box .author-links a { color: var(--blue-dark); }
@media (max-width: 600px) { .author-box { flex-direction: column; padding: 22px; } }

/* ============================================================
   Header-/Footer-Ausrichtung + Dropdown-Navigation (21.08.2026)
   ============================================================ */

/* Kopf- und Fusszeile auf die Breite der Inhaltsspalte bringen.
   Vorher: .wrap = var(--max) = 800px, die Artikelspalte ab 1140px
   aber 1128px breit -> Logo und Footer sassen sichtbar zu weit
   innen ("irgendwo in der Mitte"). */
@media (min-width: 1140px) {
  header.site .wrap,
  footer.site .wrap { max-width: 1128px; }
}

/* --- Dropdown-Navigation --- */
nav.main { align-items: center; }

.nav-item { position: relative; }

nav.main .nav-top { display: inline-flex; align-items: center; gap: 4px; padding: 6px 0; }

.nav-menu { display: none; }

@media (min-width: 861px) {
  nav.main .nav-top::after {
    content: ""; width: 5px; height: 5px; flex: none; margin-left: 2px;
    border-right: 1.5px solid currentColor; border-bottom: 1.5px solid currentColor;
    transform: rotate(45deg) translateY(-1px);
    transition: transform .15s;
  }
  .nav-item:hover .nav-top::after,
  .nav-item:focus-within .nav-top::after { transform: rotate(225deg) translateY(-1px); }

  .nav-menu {
    position: absolute; top: 100%; left: -12px; min-width: 232px; z-index: 30;
    flex-direction: column; gap: 2px; padding: 8px;
    background: #fff; border: 1px solid var(--gray-200); border-radius: 12px;
    box-shadow: 0 12px 32px rgba(17,17,17,.12);
  }
  .nav-item:hover > .nav-menu,
  .nav-item:focus-within > .nav-menu { display: flex; }

  nav.main .nav-menu a {
    display: block; padding: 7px 12px; border-radius: 8px; white-space: nowrap;
    font-size: 14px; font-weight: 500; line-height: 1.45; color: var(--gray-600);
  }
  nav.main .nav-menu a:hover,
  nav.main .nav-menu a:focus-visible { background: var(--gray-50); color: var(--blue); }
}

/* --- Listicle: Tool-Überschriften + ausgehende Tool-Links (21.08.2026) --- */
h3.tool-h { display: flex; gap: 10px; align-items: baseline; margin: 36px 0 12px; }

h3.tool-h .num { color: var(--blue); font-weight: 800; font-size: 15px; min-width: 22px; flex: none; }

h3[id] { scroll-margin-top: 110px; }

p.tool-link { margin: -6px 0 18px; font-size: 14.5px; font-weight: 600; }

/* Verschachtelte TOC-Einträge (Tool-Ebene) */
.toc .toc-sub { list-style: none; margin: 0 0 4px 0; }
.toc .toc-sub li { counter-increment: none; }
main .toc .toc-sub a { font-size: 12.5px; padding: 5px 10px 5px 22px; }
main .toc .toc-sub a::before { content: none; }

/* ============================================================
   Tool-Verzeichnis auf der Startseite (21.08.2026, v2: Plattform-Layout)
   ============================================================ */

/* --- Kompakter Kopf: Suche steht im Mittelpunkt, nicht die Prosa --- */
.dir-hero { padding: 40px 0 8px; }
.dir-hero h1 { font-size: clamp(28px, 3.4vw, 40px); margin-bottom: 12px; }
.dir-hero .dir-sub { font-size: 17px; color: var(--gray-600); max-width: 680px; margin-bottom: 22px; line-height: 1.55; }

.dir-stats { display: flex; flex-wrap: wrap; gap: 10px 26px; margin: 0 0 26px; padding: 0; list-style: none; }
.dir-stats li { font-size: 13.5px; color: var(--gray-600); }
.dir-stats strong { display: block; font-size: 22px; font-weight: 800; color: var(--ink); letter-spacing: -.02em; line-height: 1.2; }

/* --- Suchfeld --- */
.dir-search { position: relative; margin-bottom: 18px; }
.dir-search input { width: 100%; padding: 16px 18px 16px 48px; font: inherit; font-size: 17px; color: var(--ink); background: #fff; border: 1px solid var(--gray-200); border-radius: 12px; box-shadow: 0 1px 2px rgba(17,17,17,.04); }
.dir-search input::placeholder { color: var(--gray-600); opacity: .75; }
.dir-search input:focus { outline: 2px solid var(--blue); outline-offset: 1px; border-color: var(--blue); }
.dir-search::before { content: ""; position: absolute; left: 18px; top: 50%; width: 16px; height: 16px; margin-top: -9px; border: 2px solid var(--gray-600); border-radius: 50%; opacity: .55; pointer-events: none; }
.dir-search::after { content: ""; position: absolute; left: 31px; top: 50%; width: 7px; height: 2px; margin-top: 4px; background: var(--gray-600); border-radius: 2px; transform: rotate(45deg); opacity: .55; pointer-events: none; }

/* --- Kategorie-Chips --- */
.dir-chips { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 18px; }
.dir-chips button { display: inline-flex; align-items: center; gap: 7px; padding: 8px 14px; font: inherit; font-size: 14px; font-weight: 600; color: var(--gray-600); background: #fff; border: 1px solid var(--gray-200); border-radius: 999px; cursor: pointer; transition: border-color .15s, background .15s, color .15s; }
.dir-chips button span { font-size: 12px; font-weight: 700; padding: 1px 6px; border-radius: 999px; background: var(--gray-50); color: var(--gray-600); }
.dir-chips button:hover { border-color: var(--blue); color: var(--blue-dark); }
.dir-chips button.is-on { background: var(--blue); border-color: var(--blue); color: #fff; }
.dir-chips button.is-on span { background: rgba(255,255,255,.22); color: #fff; }

/* --- Filterleiste --- */
.dir-filters { display: grid; grid-template-columns: repeat(auto-fit, minmax(168px, 1fr)); gap: 12px; padding: 16px 18px; margin-bottom: 14px; background: var(--gray-50); border: 1px solid var(--gray-200); border-radius: 12px; }
.dir-filters .dir-field { display: flex; flex-direction: column; gap: 5px; min-width: 0; }
.dir-filters label { font-size: 11.5px; font-weight: 700; text-transform: uppercase; letter-spacing: .05em; color: var(--gray-600); }
.dir-filters select { width: 100%; padding: 9px 11px; font: inherit; font-size: 14.5px; color: var(--ink); background: #fff; border: 1px solid var(--gray-200); border-radius: 8px; }
.dir-filters select:focus { outline: 2px solid var(--blue); outline-offset: 1px; border-color: var(--blue); }

.dir-meta { display: flex; align-items: baseline; gap: 16px; flex-wrap: wrap; margin-bottom: 12px; font-size: 14px; color: var(--gray-600); }
.dir-meta #dir-count { font-weight: 800; color: var(--ink); font-size: 15px; }
#dir-reset { font: inherit; font-size: 14px; font-weight: 600; color: var(--blue-dark); background: none; border: none; padding: 0; cursor: pointer; text-decoration: underline; }

/* --- Tabelle --- */
#dir table.compare { min-width: 1080px; }
#dir table.compare td { font-size: 14.5px; vertical-align: top; }
#dir table.compare tbody tr:hover { background: var(--gray-50); }
tr.dir-fav { background: var(--blue-bg); box-shadow: inset 3px 0 0 var(--blue); }
tr.dir-fav:hover { background: var(--blue-soft); }
.dir-kurz { display: block; font-size: 12.5px; line-height: 1.45; color: var(--gray-600); margin-top: 3px; font-weight: 400; }
.dir-tag { display: inline-block; padding: 2px 7px; margin: 0 2px 2px 0; font-size: 11.5px; font-weight: 600; color: var(--gray-600); background: var(--gray-50); border: 1px solid var(--gray-200); border-radius: 5px; white-space: nowrap; }
.dir-pill { display: inline-block; padding: 2px 8px; margin-left: 3px; font-size: 11px; font-weight: 700; letter-spacing: .02em; color: var(--gray-600); background: var(--gray-50); border-radius: 999px; vertical-align: 1px; white-space: nowrap; }
.dir-pill-fav { color: #fff; background: var(--blue); }
.dir-score { display: inline-block; min-width: 34px; padding: 3px 8px; font-weight: 800; font-size: 14px; text-align: center; color: var(--blue-dark); background: var(--blue-bg); border-radius: 7px; }
.dir-na { color: var(--gray-200); font-weight: 700; cursor: help; }

.dir-loading #dir-body::after { content: "Tools werden geladen …"; }
#dir-empty { padding: 22px; background: var(--gray-50); border: 1px solid var(--gray-200); border-radius: 12px; font-size: 15px; color: var(--gray-600); margin-top: 12px; }

/* --- Kompakte Offenlegung + einklappbare Methodik --- */
.dir-note { margin: 14px 0 8px; font-size: 13px; line-height: 1.6; color: var(--gray-600); }
details.dir-method { margin: 24px 0 8px; padding: 0; border: 1px solid var(--gray-200); border-radius: 12px; background: #fff; }
details.dir-method > summary { padding: 16px 20px; font-size: 15.5px; font-weight: 700; color: var(--ink); cursor: pointer; list-style: none; display: flex; justify-content: space-between; gap: 12px; align-items: center; }
details.dir-method > summary::after { content: "+"; font-size: 20px; color: var(--blue); font-weight: 700; flex-shrink: 0; }
details.dir-method[open] > summary::after { content: "\2212"; }
details.dir-method > summary::-webkit-details-marker { display: none; }
details.dir-method .dir-method-body { padding: 0 20px 18px; }
details.dir-method p, details.dir-method li { font-size: 14.5px; }

@media (max-width: 560px) {
  .dir-hero { padding: 28px 0 4px; }
  .dir-search input { padding: 14px 16px 14px 44px; font-size: 16px; }
  .dir-filters { padding: 14px; }
}

/* Label nur fuer Screenreader */
.visually-hidden { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0; }
