/* ==========================================================================
   koran.domain-root.de · Stylesheet
   Moderne Lesefassung – respektvoll, klassisch, werbefrei
   Keine Google Fonts. System-Stacks + Serif für Headlines.
   ========================================================================== */

/* 1) Reset & Base ---------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }

/* 2) Design Tokens --------------------------------------------------------- */
:root {
  --primary: #1a4d3a;           /* dunkles Salbeigrün */
  --primary-dark: #123528;
  --primary-light: #2d6e54;
  --accent: #c8a96e;             /* gedämpftes Gold */
  --accent-dark: #a88a4f;
  --bg: #fdfbf7;                 /* warmes Off-White, Pergament */
  --bg-soft: #f5f1e8;            /* sand-touch für Boxen */
  --bg-card: #ffffff;
  --text: #1c1c1c;
  --text-soft: #4a4a4a;
  --text-muted: #7a7a7a;
  --border: #e8e3d5;
  --border-strong: #d4cdba;
  --shadow-1: 0 2px 8px rgba(26,77,58,.06);
  --shadow-2: 0 8px 24px rgba(26,77,58,.10);
  --shadow-3: 0 16px 40px rgba(26,77,58,.14);
  --radius: 6px;
  --radius-lg: 12px;
  --serif: Georgia, "Iowan Old Style", "Palatino Linotype", Palatino, "Book Antiqua", serif;
  --sans: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  --mono: ui-monospace, "SF Mono", Menlo, Consolas, monospace;
  --container: 1180px;
  --container-narrow: 820px;
}

body {
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.65;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

/* 3) Skip-Link & A11y ------------------------------------------------------ */
.skip-link {
  position: absolute; left: -9999px; top: 0;
  background: var(--primary); color: #fff;
  padding: 12px 20px; z-index: 9999;
  font-weight: 600; text-decoration: none;
}
.skip-link:focus { left: 0; }

:focus-visible {
  outline: 3px solid var(--accent);
  outline-offset: 2px;
  border-radius: 3px;
}

/* 4) Layout helpers -------------------------------------------------------- */
.container { max-width: var(--container); margin: 0 auto; padding: 0 24px; }
.container-narrow { max-width: var(--container-narrow); margin: 0 auto; padding: 0 24px; }

/* 5) Typography ------------------------------------------------------------ */
h1, h2, h3, h4 { font-family: var(--serif); font-weight: 700; color: var(--primary-dark); line-height: 1.25; }
h1 { font-size: clamp(1.9rem, 4vw, 2.6rem); letter-spacing: -0.01em; }
h2 { font-size: clamp(1.4rem, 2.6vw, 1.75rem); margin-top: 2.2em; margin-bottom: 0.8em; }
h3 { font-size: 1.2rem; margin-top: 1.6em; margin-bottom: 0.6em; }

p { margin-bottom: 1em; }
a { color: var(--primary); text-decoration: underline; text-decoration-thickness: 1px; text-underline-offset: 3px; }
a:hover { color: var(--accent-dark); }

strong { color: var(--primary-dark); }

/* 6) Header & Mega-Menu ---------------------------------------------------- */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(253,251,247,.96);
  backdrop-filter: saturate(140%) blur(8px);
  border-bottom: 1px solid var(--border);
}
.site-header .container {
  display: flex; align-items: center; justify-content: space-between;
  height: 72px; gap: 24px;
}

.logo {
  display: flex; align-items: center; gap: 12px;
  text-decoration: none; color: var(--primary-dark);
  font-family: var(--serif); font-weight: 700;
}
.logo-icon {
  display: inline-flex; align-items: center; justify-content: center;
  width: 42px; height: 42px;
  background: var(--primary); color: var(--bg);
  border-radius: 50%;
  font-family: var(--serif); font-size: 1.1rem;
  letter-spacing: 0.02em;
}
.logo-text { display: flex; flex-direction: column; line-height: 1.1; }
.logo-title { font-size: 1.15rem; }
.logo-sub { font-family: var(--sans); font-weight: 500; font-size: 0.7rem; letter-spacing: 0.08em; text-transform: uppercase; color: var(--text-muted); }

/* Navigation */
.main-nav { display: flex; align-items: center; gap: 4px; }
.nav-item { position: relative; }
.nav-link {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 10px 14px; border-radius: var(--radius);
  background: transparent; border: 0;
  font-family: var(--sans); font-size: 0.97rem; font-weight: 500;
  color: var(--text); text-decoration: none;
  cursor: pointer; transition: background .15s ease, color .15s ease;
}
.nav-link:hover, .nav-link[aria-expanded="true"] { background: var(--bg-soft); color: var(--primary-dark); }
.nav-chevron { transition: transform .2s ease; }
.nav-link[aria-expanded="true"] .nav-chevron { transform: rotate(180deg); }

/* Mega Dropdown */
.nav-dropdown {
  position: absolute; top: calc(100% + 8px); left: 0;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-3);
  padding: 24px;
  min-width: 280px;
}
.nav-dropdown[hidden] { display: none; }

.nav-dropdown-mega {
  left: 50%; transform: translateX(-50%);
  width: min(880px, calc(100vw - 48px));
}
.mega-grid {
  display: grid; grid-template-columns: 1fr 1fr 1fr;
  gap: 28px;
}
.mega-col { display: flex; flex-direction: column; gap: 6px; }
.mega-title {
  font-family: var(--serif); font-size: 0.8rem; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--accent-dark); margin-bottom: 8px;
}
.mega-col a {
  display: flex; align-items: baseline; gap: 8px;
  padding: 7px 10px; border-radius: 4px;
  font-size: 0.94rem; color: var(--text);
  text-decoration: none;
  transition: background .12s ease, color .12s ease;
}
.mega-col a:hover { background: var(--bg-soft); color: var(--primary-dark); }
.mega-col a .num { color: var(--accent-dark); font-family: var(--serif); font-weight: 700; min-width: 28px; }
.mega-sep { border: 0; border-top: 1px solid var(--border); margin: 8px 0; }
.mega-allink { font-weight: 600; color: var(--primary-dark) !important; }

/* Burger */
.burger {
  display: none;
  background: transparent; border: 0; cursor: pointer;
  width: 44px; height: 44px; padding: 10px;
}
.burger span { display: block; width: 24px; height: 2px; background: var(--text); margin: 5px 0; transition: transform .2s ease, opacity .2s ease; }
.burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.burger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* 7) Hero ------------------------------------------------------------------ */
.hero {
  padding: 80px 0 70px;
  background:
    radial-gradient(ellipse at top left, rgba(200,169,110,.10), transparent 60%),
    radial-gradient(ellipse at bottom right, rgba(26,77,58,.08), transparent 55%),
    var(--bg);
  border-bottom: 1px solid var(--border);
  text-align: center;
}
.hero-eyebrow {
  display: inline-block;
  font-size: 0.78rem; font-weight: 600; letter-spacing: 0.16em;
  text-transform: uppercase; color: var(--accent-dark);
  padding: 6px 14px; border: 1px solid var(--accent);
  border-radius: 999px; margin-bottom: 24px;
}
.hero h1 { margin-bottom: 18px; max-width: 800px; margin-left: auto; margin-right: auto; }
.hero-lead {
  max-width: 680px; margin: 0 auto 32px;
  font-size: 1.18rem; color: var(--text-soft);
  line-height: 1.6;
}
.hero-cta { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* Buttons */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 13px 22px; border-radius: var(--radius);
  font-weight: 600; font-size: 0.97rem;
  text-decoration: none; cursor: pointer; border: 1px solid transparent;
  transition: transform .12s ease, background .15s ease, box-shadow .15s ease;
}
.btn-primary { background: var(--primary); color: var(--bg); border-color: var(--primary); }
.btn-primary:hover { background: var(--primary-dark); color: var(--bg); transform: translateY(-1px); box-shadow: var(--shadow-2); }
.btn-ghost { background: transparent; color: var(--primary-dark); border-color: var(--border-strong); }
.btn-ghost:hover { background: var(--bg-soft); color: var(--primary-dark); }

/* 8) Sections -------------------------------------------------------------- */
.section { padding: 70px 0; }
.section-soft { background: var(--bg-soft); }
.section-head { text-align: center; max-width: 700px; margin: 0 auto 48px; }
.section-head h2 { margin-top: 0; }
.section-head p { color: var(--text-soft); font-size: 1.08rem; }

/* Disclaimer Box */
.disclaimer {
  background: var(--bg-card);
  border-left: 4px solid var(--accent);
  border-radius: var(--radius);
  padding: 22px 26px;
  margin: 32px auto;
  max-width: 820px;
  box-shadow: var(--shadow-1);
  font-size: 0.97rem;
  color: var(--text-soft);
}
.disclaimer p { margin-bottom: 0.5em; }
.disclaimer p:last-child { margin-bottom: 0; }
.disclaimer strong { color: var(--primary-dark); }

/* 9) Suren-Cards (Übersicht) ----------------------------------------------- */
.suren-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 18px;
}
.sure-card {
  display: block;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 22px 24px;
  text-decoration: none; color: var(--text);
  transition: transform .15s ease, box-shadow .15s ease, border-color .15s ease;
}
.sure-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-2);
  border-color: var(--accent);
  color: var(--text);
}
.sure-card .sure-num {
  font-family: var(--serif); font-size: 0.9rem; font-weight: 700;
  color: var(--accent-dark); letter-spacing: 0.04em;
}
.sure-card .sure-name {
  font-family: var(--serif); font-size: 1.25rem; font-weight: 700;
  color: var(--primary-dark); margin: 4px 0 6px;
}
.sure-card .sure-name-ar {
  font-style: italic; color: var(--text-muted); font-size: 0.92rem;
}
.sure-card .sure-meta {
  margin-top: 14px; display: flex; gap: 10px; flex-wrap: wrap;
  font-size: 0.82rem; color: var(--text-muted);
}
.sure-card .sure-meta span {
  background: var(--bg-soft); padding: 3px 10px; border-radius: 999px;
}

/* 10) Themen-Cards --------------------------------------------------------- */
.themes-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 16px;
}
.theme-card {
  display: flex; flex-direction: column; gap: 6px;
  padding: 20px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  text-decoration: none; color: var(--text);
  transition: border-color .15s ease, box-shadow .15s ease;
}
.theme-card:hover { border-color: var(--accent); box-shadow: var(--shadow-1); color: var(--text); }
.theme-card .theme-icon { font-size: 1.6rem; }
.theme-card .theme-name { font-family: var(--serif); font-weight: 700; color: var(--primary-dark); }
.theme-card .theme-desc { font-size: 0.88rem; color: var(--text-muted); }

/* 11) Sure-Page (Detail) --------------------------------------------------- */
.sure-page { padding: 60px 0 80px; }
.sure-head {
  text-align: center;
  padding-bottom: 36px;
  border-bottom: 1px solid var(--border);
  margin-bottom: 40px;
}
.sure-head .eyebrow {
  font-family: var(--serif); font-weight: 700; color: var(--accent-dark);
  letter-spacing: 0.1em; text-transform: uppercase; font-size: 0.85rem;
}
.sure-head h1 { margin: 8px 0 6px; }
.sure-head .ar-translit {
  font-style: italic; color: var(--text-soft); font-size: 1.1rem;
}
.sure-meta-bar {
  display: flex; gap: 14px; justify-content: center; flex-wrap: wrap;
  margin-top: 20px;
}
.sure-meta-bar .meta-pill {
  background: var(--bg-soft); border: 1px solid var(--border);
  padding: 6px 14px; border-radius: 999px;
  font-size: 0.86rem; color: var(--text-soft);
}
.sure-meta-bar .meta-pill strong { color: var(--primary-dark); margin-right: 6px; }

.sure-content { max-width: 760px; margin: 0 auto; }
.sure-content > h2:first-child { margin-top: 0; }

/* Vers-Liste */
.verses { list-style: none; margin: 24px 0; padding: 0; }
.verse {
  display: grid; grid-template-columns: 48px 1fr;
  gap: 18px; align-items: baseline;
  padding: 14px 0;
  border-bottom: 1px dashed var(--border);
}
.verse:last-child { border-bottom: 0; }
.verse-num {
  font-family: var(--serif); font-weight: 700; color: var(--accent-dark);
  font-size: 1.05rem; text-align: right;
}
.verse-text {
  font-family: var(--serif); font-size: 1.1rem; line-height: 1.7;
  color: var(--text);
}

/* Einordnung-Box */
.einordnung {
  background: var(--bg-soft);
  border-radius: var(--radius-lg);
  padding: 30px 32px;
  margin: 40px 0;
}
.einordnung h2 { margin-top: 0; }
.einordnung h3 { color: var(--primary); }

/* Begriffe-Liste */
.begriffe { list-style: none; padding: 0; margin: 16px 0; }
.begriffe li {
  padding: 10px 0; border-bottom: 1px solid var(--border);
}
.begriffe li:last-child { border-bottom: 0; }
.begriffe .begriff {
  font-family: var(--serif); font-weight: 700; color: var(--primary-dark);
}

/* Sure-Navigation */
.sure-nav {
  display: grid; grid-template-columns: 1fr auto 1fr;
  gap: 16px; align-items: stretch;
  margin-top: 48px; padding-top: 32px;
  border-top: 1px solid var(--border);
}
.sure-nav a, .sure-nav .nav-placeholder {
  display: flex; flex-direction: column;
  padding: 14px 18px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  text-decoration: none; color: var(--text);
  transition: border-color .15s ease, background .15s ease;
}
.sure-nav a:hover { border-color: var(--accent); background: var(--bg-soft); color: var(--text); }
.sure-nav .label { font-size: 0.78rem; color: var(--text-muted); letter-spacing: 0.05em; text-transform: uppercase; }
.sure-nav .name { font-family: var(--serif); font-weight: 700; color: var(--primary-dark); margin-top: 2px; }
.sure-nav .next { text-align: right; }
.sure-nav .nav-placeholder { visibility: hidden; }

/* 12) Stats Bar (Startseite) ----------------------------------------------- */
.stats {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 0; background: var(--primary);
  border-radius: var(--radius-lg); overflow: hidden;
  margin: 40px auto; max-width: 900px;
}
.stat {
  padding: 28px 20px; text-align: center; color: var(--bg);
  border-right: 1px solid rgba(255,255,255,.08);
}
.stat:last-child { border-right: 0; }
.stat-num { font-family: var(--serif); font-size: 2.2rem; font-weight: 700; color: var(--accent); }
.stat-label { font-size: 0.85rem; letter-spacing: 0.08em; text-transform: uppercase; opacity: 0.9; margin-top: 4px; }

/* 13) Footer --------------------------------------------------------------- */
.site-footer {
  background: var(--primary-dark);
  color: rgba(255,255,255,.85);
  padding: 60px 0 28px;
  margin-top: 80px;
}
.footer-grid {
  display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px; margin-bottom: 40px;
}
.footer-col p, .footer-col a { color: rgba(255,255,255,.78); font-size: 0.92rem; }
.footer-col a { text-decoration: none; }
.footer-col a:hover { color: var(--accent); }
.footer-title {
  font-family: var(--serif); font-weight: 700; color: var(--accent);
  margin-bottom: 14px; font-size: 1rem; letter-spacing: 0.04em;
}
.footer-col ul { list-style: none; padding: 0; }
.footer-col li { margin-bottom: 8px; }
.footer-brand {
  font-family: var(--serif); font-size: 1.3rem; color: #fff;
  margin-bottom: 12px; display: block;
}
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.12);
  padding-top: 22px;
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 14px;
  font-size: 0.85rem; color: rgba(255,255,255,.6);
}
.footer-bottom a { color: rgba(255,255,255,.75); }

/* 14) Responsive ----------------------------------------------------------- */
@media (max-width: 900px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .burger { display: block; }
  .main-nav {
    position: fixed; top: 72px; left: 0; right: 0;
    flex-direction: column; align-items: stretch;
    background: var(--bg-card);
    border-bottom: 1px solid var(--border);
    padding: 16px 24px 24px;
    max-height: 0; overflow: hidden;
    transition: max-height .25s ease;
  }
  .main-nav.open { max-height: calc(100vh - 72px); overflow-y: auto; }
  .nav-link { width: 100%; justify-content: space-between; }
  .nav-dropdown, .nav-dropdown-mega {
    position: static; transform: none;
    width: 100%; box-shadow: none;
    border: 1px solid var(--border); margin-top: 6px;
    padding: 16px;
  }
  .mega-grid { grid-template-columns: 1fr; gap: 18px; }
  .hero { padding: 50px 0 45px; }
  .hero-lead { font-size: 1.05rem; }
  .section { padding: 50px 0; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  .sure-nav { grid-template-columns: 1fr; }
  .sure-nav .next { text-align: left; }
  .verse { grid-template-columns: 38px 1fr; gap: 12px; }
  .verse-text { font-size: 1.02rem; }
  .einordnung { padding: 22px 20px; }
}

@media (max-width: 480px) {
  .logo-sub { display: none; }
  .hero h1 { font-size: 1.7rem; }
}

/* 15) Print (allgemein) ---------------------------------------------------- */
@media print {
  .site-header, .site-footer, .sure-nav { display: none; }
  body { background: #fff; color: #000; }
  .verse-text { font-size: 11pt; }
}

/* 16) Breadcrumbs ---------------------------------------------------------- */
.breadcrumbs {
  background: var(--bg-soft);
  border-bottom: 1px solid var(--border);
  padding: 12px 0;
  font-size: 0.88rem;
}
.breadcrumbs ol {
  list-style: none; padding: 0; margin: 0;
  display: flex; flex-wrap: wrap; gap: 6px;
  color: var(--text-muted);
}
.breadcrumbs li:not(:last-child)::after {
  content: "›"; margin-left: 8px; color: var(--text-muted);
}
.breadcrumbs a { color: var(--primary); text-decoration: none; }
.breadcrumbs a:hover { text-decoration: underline; }
.breadcrumbs [aria-current="page"] { color: var(--text); font-weight: 500; }

/* 16) Tracking-Notice ------------------------------------------------------ */
.tracking-notice {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 18px 22px;
  margin: 24px 0;
  font-size: 0.9rem;
  color: var(--text-soft);
  display: flex; gap: 14px; align-items: flex-start;
}
.tracking-notice .icon {
  flex-shrink: 0;
  width: 32px; height: 32px;
  background: var(--bg-soft);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--primary);
  font-size: 1.2rem;
}
.tracking-notice strong { color: var(--primary-dark); }
.tracking-notice p { margin-bottom: 0.3em; }
.tracking-notice p:last-child { margin-bottom: 0; }

/* 17) Filter/Search (Suren-Übersicht) -------------------------------------- */
.filter-bar {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 16px 20px;
  margin-bottom: 28px;
  display: flex; gap: 14px; align-items: center; flex-wrap: wrap;
}
.filter-bar input {
  flex: 1 1 240px;
  padding: 10px 14px;
  border: 1px solid var(--border-strong);
  border-radius: var(--radius);
  font-family: inherit; font-size: 0.95rem;
  background: var(--bg);
  color: var(--text);
}
.filter-bar input:focus { outline: 2px solid var(--accent); outline-offset: 0; border-color: var(--accent); }
.filter-bar .filter-group {
  display: inline-flex; gap: 4px;
  background: var(--bg-soft); padding: 4px; border-radius: var(--radius);
}
.filter-bar .filter-btn {
  padding: 8px 14px; border: 0; background: transparent;
  font-family: inherit; font-size: 0.88rem; font-weight: 500;
  color: var(--text-soft); border-radius: 4px; cursor: pointer;
}
.filter-bar .filter-btn.active { background: var(--bg-card); color: var(--primary-dark); box-shadow: var(--shadow-1); }
.filter-bar .count { font-size: 0.85rem; color: var(--text-muted); white-space: nowrap; }

/* Suren-Liste – kompakte Variante für Übersicht */
.suren-list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 12px;
}
.suren-list .sure-card {
  padding: 16px 18px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 14px;
  align-items: center;
}
.suren-list .sure-num-box {
  font-family: var(--serif); font-size: 1.2rem; font-weight: 700;
  color: var(--bg);
  background: var(--primary);
  width: 44px; height: 44px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 50%;
  flex-shrink: 0;
}
.suren-list .sure-card.unavailable { opacity: 0.55; pointer-events: none; }
.suren-list .sure-card.unavailable .sure-num-box { background: var(--border-strong); }
.suren-list .sure-card .sure-title-mini { font-family: var(--serif); font-weight: 700; color: var(--primary-dark); line-height: 1.2; }
.suren-list .sure-card .sure-translit-mini { font-style: italic; color: var(--text-muted); font-size: 0.86rem; }
.suren-list .sure-card .sure-info-mini { text-align: right; font-size: 0.78rem; color: var(--text-muted); }
.suren-list .sure-card .badge-medina { background: rgba(200,169,110,.2); color: var(--accent-dark); padding: 2px 8px; border-radius: 999px; font-size: 0.72rem; }
.suren-list .sure-card .badge-mekka { background: rgba(26,77,58,.1); color: var(--primary-dark); padding: 2px 8px; border-radius: 999px; font-size: 0.72rem; }

@media (max-width: 600px) {
  .suren-list .sure-card { grid-template-columns: auto 1fr; }
  .suren-list .sure-card .sure-info-mini { grid-column: 2; text-align: left; }
}

/* 18) Generischer Article-Style (Einführung, Begriffe etc.) ---------------- */
.article-page { padding: 40px 0 80px; }
.article-content {
  font-size: 1.05rem; line-height: 1.75;
}
.article-content h2 { color: var(--primary-dark); }
.article-content h3 { color: var(--primary); }
.article-content ul, .article-content ol { padding-left: 1.5em; margin-bottom: 1em; }
.article-content li { margin-bottom: 0.4em; }
.article-content blockquote {
  border-left: 3px solid var(--accent);
  background: var(--bg-soft);
  padding: 14px 22px; margin: 1.4em 0;
  font-style: italic; color: var(--text-soft);
  border-radius: 0 var(--radius) var(--radius) 0;
}

/* 19) Print – siehe oben, leicht ergänzt ----------------------------------- */
@media print {
  .breadcrumbs, .tracking-notice, .filter-bar { display: none; }
}

/* 20) Themen-Seiten – verwandte Suren -------------------------------------- */
.theme-sure-list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 12px;
  margin: 18px 0;
}
.theme-sure-link {
  display: flex; align-items: center; gap: 14px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 14px 16px;
  text-decoration: none; color: var(--text);
  transition: border-color .15s ease, box-shadow .15s ease, transform .15s ease;
}
.theme-sure-link:hover {
  border-color: var(--accent); box-shadow: var(--shadow-1);
  transform: translateY(-1px); color: var(--text);
}
.theme-sure-link .num {
  font-family: var(--serif); font-weight: 700; font-size: 1.05rem;
  color: var(--bg);
  background: var(--primary);
  width: 36px; height: 36px;
  display: inline-flex; align-items: center; justify-content: center;
  border-radius: 50%;
  flex-shrink: 0;
}
.theme-sure-link strong {
  display: block; font-family: var(--serif); color: var(--primary-dark); line-height: 1.2;
}
.theme-sure-link small {
  display: block; font-style: italic; color: var(--text-muted); font-size: .82rem; margin-top: 2px;
}
.theme-sure-link.unavailable {
  opacity: .6; cursor: default;
}
.theme-sure-link.unavailable .num {
  background: var(--border-strong);
}

