/* ──────────────────────────────────────────────────────────────
   RATGEBER ARTICLE STYLES — Stipendiumscoach.de
   Scoped to .kunst-article, ohne Nav/Footer (handled by Theme)
   Source: kunststipendium.html, scoped + cleaned for WordPress
   ────────────────────────────────────────────────────────────── */

/* Tokens */
.kunst-article {
  --navy: #001629;
  --navy-mid: #002B49;
  --rosa: #E8336D;
  --red: #B7102A;
  --red-container: #DB3140;
  --surface: #faf9f8;
  --surface-low: #f4f3f2;
  --surface-mid: #eeeeed;
  --surface-high: #e9e8e7;
  --surface-white: #ffffff;
  --text-primary: #1a1c1c;
  --text-secondary: #42474d;
  --text-muted: #73777e;
  --shadow-ambient: 0 20px 40px rgba(0,43,73,0.06);

  font-family: 'Plus Jakarta Sans', sans-serif !important;
  color: var(--text-primary);
  word-break: normal;
  overflow-wrap: break-word;
  hyphens: auto;
  /* Wrapper sorgt selbst für Außen-Reset */
  max-width: 1280px;
  margin: 0 auto;
  padding: 0;
}

.kunst-article *,
.kunst-article *::before,
.kunst-article *::after {
  box-sizing: border-box;
}

.kunst-article .material-symbols-outlined {
  font-variation-settings: 'FILL' 0, 'wght' 400, 'GRAD' 0, 'opsz' 24;
  font-size: inherit;
  line-height: 1;
  vertical-align: middle;
}

/* ── BREADCRUMB ── */
.kunst-article .breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 20px 40px 0;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.kunst-article .breadcrumb a {
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.2s;
}
.kunst-article .breadcrumb a:hover { color: var(--red); }
.kunst-article .breadcrumb-sep { font-size: 10px; opacity: 0.5; }
.kunst-article .breadcrumb-current { color: var(--red); }

/* ── ARTICLE HEADER ── */
.kunst-article .article-header {
  padding: 32px 40px 48px;
  display: grid;
  grid-template-columns: 7fr 5fr;
  gap: 64px;
  align-items: center;
}
.kunst-article .article-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}
.kunst-article .article-cat {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--red);
  background: rgba(183,16,42,0.08);
  padding: 4px 12px;
  border-radius: 9999px;
}
.kunst-article .article-meta-sep { width: 28px; height: 1px; background: rgba(0,22,41,0.2); }
.kunst-article .article-readtime { font-size: 11px; color: var(--text-muted); font-weight: 500; }
.kunst-article .article-h1 {
  font-family: 'Plus Jakarta Sans', sans-serif !important;
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 800;
  color: var(--navy);
  letter-spacing: -0.03em;
  line-height: 1.08;
  margin: 0 0 28px;
  hyphens: manual;
}
.kunst-article .article-author { display: flex; align-items: center; gap: 14px; }
.kunst-article .author-avatar {
  width: 64px; height: 64px;
  border-radius: 9999px;
  background: var(--navy-mid);
  overflow: hidden;
  border: 2px solid var(--surface);
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-size: 20px; font-weight: 700;
  flex-shrink: 0;
  font-family: 'Plus Jakarta Sans', sans-serif !important;
}
.kunst-article .author-avatar img {
  width: 100%; height: 100%; object-fit: cover; display: block;
}
.kunst-article .author-name {
  font-family: 'Plus Jakarta Sans', sans-serif !important;
  font-size: 16px; font-weight: 700; color: var(--navy);
  line-height: 1.3;
}
.kunst-article .author-date {
  font-family: 'Plus Jakarta Sans', sans-serif !important;
  font-size: 14px; color: var(--text-muted); margin-top: 4px;
  line-height: 1.3;
}

/* Hero visual */
.kunst-article .article-hero-visual { position: relative; }
.kunst-article .article-hero-img {
  aspect-ratio: 16/9;
  border-radius: 20px;
  overflow: hidden;
  background: var(--surface-high);
  box-shadow: 0 40px 60px rgba(0,43,73,0.15);
  position: relative;
  z-index: 2;
}
.kunst-article .article-hero-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}

/* ── LAYOUT ── */
.kunst-article .article-layout {
  padding: 0 40px 80px;
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 80px;
  align-items: stretch;
}

/* ── ARTICLE BODY ── */
.kunst-article article { min-width: 0; }
.kunst-article .article-lead {
  font-family: 'Newsreader', Georgia, serif !important;
  font-size: 21px;
  font-weight: 500;
  font-style: italic;
  line-height: 1.7;
  color: var(--navy);
  border-left: 4px solid var(--red);
  padding-left: 24px;
  margin: 0 0 48px;
}
.kunst-article .article-h2 {
  font-family: 'Plus Jakarta Sans', sans-serif !important;
  font-size: 32px;
  font-weight: 700;
  color: var(--navy-mid);
  letter-spacing: -0.02em;
  line-height: 1.2;
  margin: 56px 0 20px;
}
.kunst-article .article-h3 {
  font-family: 'Plus Jakarta Sans', sans-serif !important;
  font-size: 24px;
  font-weight: 700;
  color: var(--navy);
  margin: 32px 0 14px;
  line-height: 1.3;
}
.kunst-article .article-p {
  font-family: 'Newsreader', Georgia, serif !important;
  font-size: 21px;
  line-height: 1.8;
  color: var(--text-primary);
  margin: 0 0 20px;
}
.kunst-article .article-p strong { font-weight: 700; color: var(--navy); }
.kunst-article .article-p a {
  color: var(--red);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 4px;
}

/* Bullet list — branded dot */
.kunst-article .article-bullets {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin: 20px 0 28px;
  padding: 0;
}
.kunst-article .article-bullets li { display: flex; gap: 16px; align-items: flex-start; }
.kunst-article .bullet-dot {
  width: 10px; height: 10px;
  border-radius: 9999px;
  background: var(--red);
  flex-shrink: 0;
  margin-top: 7px;
}
.kunst-article .bullet-text {
  font-family: 'Newsreader', Georgia, serif !important;
  font-size: 21px;
  line-height: 1.7;
  color: var(--text-primary);
}
.kunst-article .bullet-text strong {
  font-weight: 700;
  color: var(--navy);
  font-family: 'Plus Jakarta Sans', sans-serif !important;
}

/* Numbered list */
.kunst-article .article-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin: 28px 0;
  padding: 0;
}
.kunst-article .article-list-item { display: flex; gap: 16px; align-items: flex-start; }
.kunst-article .list-num {
  font-family: 'Plus Jakarta Sans', sans-serif !important;
  font-size: 20px;
  font-weight: 700;
  color: var(--red);
  flex-shrink: 0;
  line-height: 1.6;
}
.kunst-article .list-text {
  font-family: 'Newsreader', Georgia, serif !important;
  font-size: 21px;
  line-height: 1.7;
  color: var(--text-primary);
}
.kunst-article .list-text strong {
  font-weight: 700;
  color: var(--navy);
  font-family: 'Plus Jakarta Sans', sans-serif !important;
}

/* Bewerbung Cards Grid */
.kunst-article .bewerbung-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin: 28px 0 40px;
}
.kunst-article .bewerbung-card {
  border-radius: 16px;
  padding: 24px 26px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.kunst-article .bewerbung-card:nth-child(1) { background: var(--navy); color: #fff; }
.kunst-article .bewerbung-card:nth-child(2) { background: rgba(183,16,42,0.07); border: 1px solid rgba(183,16,42,0.15); }
.kunst-article .bewerbung-card:nth-child(3) { background: var(--surface-high); }
.kunst-article .bewerbung-card:nth-child(4) { background: rgba(0,43,73,0.05); border: 1px solid rgba(0,43,73,0.1); }
.kunst-article .bc-header { display: flex; align-items: center; gap: 10px; }
.kunst-article .bc-num {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  opacity: 0.5;
}
.kunst-article .bc-icon { font-size: 22px; }
.kunst-article .bewerbung-card:nth-child(1) .bc-icon { color: var(--rosa); }
.kunst-article .bewerbung-card:nth-child(2) .bc-icon { color: var(--red); }
.kunst-article .bewerbung-card:nth-child(3) .bc-icon { color: var(--navy-mid); }
.kunst-article .bewerbung-card:nth-child(4) .bc-icon { color: var(--navy-mid); }
.kunst-article .bc-title {
  font-family: 'Plus Jakarta Sans', sans-serif !important;
  font-size: 17px;
  font-weight: 800;
  line-height: 1.3;
}
.kunst-article .bewerbung-card:nth-child(1) .bc-title { color: #fff; }
.kunst-article .bewerbung-card:nth-child(2) .bc-title { color: var(--red); }
.kunst-article .bewerbung-card:nth-child(3) .bc-title { color: var(--navy); }
.kunst-article .bewerbung-card:nth-child(4) .bc-title { color: var(--navy); }
.kunst-article .bc-bullets { display: flex; flex-direction: column; gap: 7px; margin-top: 4px; }
.kunst-article .bc-bullet { display: flex; gap: 8px; align-items: flex-start; }
.kunst-article .bc-dot {
  width: 6px; height: 6px;
  border-radius: 9999px;
  flex-shrink: 0;
  margin-top: 8px;
}
.kunst-article .bewerbung-card:nth-child(1) .bc-dot { background: var(--rosa); }
.kunst-article .bewerbung-card:nth-child(2) .bc-dot { background: var(--red); }
.kunst-article .bewerbung-card:nth-child(3) .bc-dot { background: var(--navy-mid); opacity: 0.5; }
.kunst-article .bewerbung-card:nth-child(4) .bc-dot { background: var(--navy-mid); opacity: 0.5; }
.kunst-article .bc-bullet-text {
  font-family: 'Plus Jakarta Sans', sans-serif !important;
  font-size: 15px;
  line-height: 1.55;
}
.kunst-article .bewerbung-card:nth-child(1) .bc-bullet-text { color: rgba(255,255,255,0.8); }
.kunst-article .bewerbung-card:nth-child(2) .bc-bullet-text { color: var(--text-secondary); }
.kunst-article .bewerbung-card:nth-child(3) .bc-bullet-text { color: var(--text-secondary); }
.kunst-article .bewerbung-card:nth-child(4) .bc-bullet-text { color: var(--text-secondary); }

/* TL;DR box */
.kunst-article .tldr-box {
  background: var(--navy);
  border-radius: 20px;
  padding: 36px 40px;
  margin: 0 0 48px;
}
.kunst-article .tldr-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 24px;
}
.kunst-article .tldr-header .material-symbols-outlined { font-size: 26px; color: #fff; }
.kunst-article .tldr-title {
  font-family: 'Plus Jakarta Sans', sans-serif !important;
  font-size: 20px;
  font-weight: 800;
  letter-spacing: -0.01em;
  color: #fff;
}
.kunst-article .tldr-list { display: flex; flex-direction: column; gap: 16px; }
.kunst-article .tldr-item { display: flex; gap: 14px; align-items: flex-start; }
.kunst-article .tldr-dot {
  width: 8px; height: 8px;
  border-radius: 9999px;
  background: var(--rosa);
  flex-shrink: 0;
  margin-top: 9px;
}
.kunst-article .tldr-text {
  font-family: 'Newsreader', Georgia, serif !important;
  font-size: 20px;
  line-height: 1.65;
  color: rgba(255,255,255,0.9);
}

/* Error cards — stripped, clean */
.kunst-article .error-list { display: flex; flex-direction: column; gap: 0; margin: 28px 0; }
.kunst-article .error-item {
  padding: 20px 0;
  border-bottom: 1px solid var(--surface-mid);
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.kunst-article .error-item:last-child { border-bottom: none; }
.kunst-article .error-icon { font-size: 18px; flex-shrink: 0; margin-top: 2px; }
.kunst-article .error-title {
  font-family: 'Plus Jakarta Sans', sans-serif !important;
  font-size: 18px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 6px;
}
.kunst-article .error-desc {
  font-family: 'Newsreader', Georgia, serif !important;
  font-size: 20px;
  line-height: 1.7;
  color: var(--text-secondary);
}

/* Tip box */
.kunst-article .tip-box {
  background: var(--surface-low);
  border-radius: 14px;
  padding: 22px 28px;
  margin: 32px 0;
  display: flex;
  gap: 14px;
  align-items: flex-start;
  border-left: 3px solid var(--navy);
}
.kunst-article .tip-box-icon { font-size: 22px; flex-shrink: 0; }
.kunst-article .tip-box-text {
  font-family: 'Plus Jakarta Sans', sans-serif !important;
  font-size: 16px;
  line-height: 1.65;
  color: var(--text-secondary);
}
.kunst-article .tip-box-text strong { color: var(--navy); }

/* Warning box */
.kunst-article .warning-box {
  background: rgba(183,16,42,0.05);
  border-radius: 14px;
  padding: 22px 28px;
  margin: 28px 0;
  display: flex;
  gap: 14px;
  align-items: flex-start;
  border-left: 3px solid var(--red);
}
.kunst-article .warning-box-text {
  font-family: 'Plus Jakarta Sans', sans-serif !important;
  font-size: 16px;
  line-height: 1.65;
  color: var(--text-secondary);
}
.kunst-article .warning-box-text strong { color: var(--red); }

/* FAQ section */
.kunst-article .faq-list { display: flex; flex-direction: column; gap: 0; margin-top: 8px; }
.kunst-article .faq-item {
  padding: 26px 30px;
  background: var(--surface-low);
  border-radius: 14px;
  margin-bottom: 10px;
}
.kunst-article .faq-q {
  font-family: 'Plus Jakarta Sans', sans-serif !important;
  font-size: 18px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 10px;
}
.kunst-article .faq-a {
  font-family: 'Newsreader', Georgia, serif !important;
  font-size: 20px;
  line-height: 1.75;
  color: var(--text-secondary);
}
.kunst-article .faq-a strong {
  font-weight: 700;
  color: var(--navy);
  font-family: 'Plus Jakarta Sans', sans-serif !important;
}

/* Inline CTA */
.kunst-article .inline-cta {
  background: var(--surface-low);
  border-radius: 16px;
  padding: 32px 36px;
  margin: 48px 0;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.kunst-article .inline-cta-deco {
  position: absolute;
  right: -10px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 100px;
  color: var(--navy);
  opacity: 0.03;
  pointer-events: none;
  font-weight: 800;
}
.kunst-article .inline-cta-title { font-size: 20px; font-weight: 700; color: var(--navy); margin-bottom: 6px; }
.kunst-article .inline-cta-sub { font-size: 14px; color: var(--text-secondary); line-height: 1.5; }
.kunst-article .inline-cta-btn {
  background: var(--red);
  color: #fff;
  font-family: 'Plus Jakarta Sans', sans-serif !important;
  font-size: 13px;
  font-weight: 700;
  padding: 13px 24px;
  border-radius: 10px;
  border: none;
  cursor: pointer;
  white-space: nowrap;
  transition: all 0.2s;
  box-shadow: 0 8px 20px rgba(183,16,42,0.28);
}
.kunst-article .inline-cta-btn:hover { background: var(--red-container); transform: scale(1.03); }

/* Dark CTA block */
.kunst-article .dark-cta {
  background: var(--navy);
  border-radius: 24px;
  padding: 56px;
  margin: 56px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.kunst-article .dark-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top right, rgba(183,16,42,0.15), transparent 60%);
}
.kunst-article .dark-cta-content { position: relative; z-index: 1; }
.kunst-article .dark-cta-icon { font-size: 44px; color: var(--red); display: block; margin-bottom: 16px; }
.kunst-article .dark-cta-title {
  font-size: 30px;
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.02em;
  line-height: 1.2;
  margin-bottom: 14px;
}
.kunst-article .dark-cta-sub {
  font-size: 15px;
  color: rgba(207,229,255,0.75);
  line-height: 1.65;
  margin: 0 auto 32px;
  max-width: 480px;
}
.kunst-article .dark-cta-actions {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}
.kunst-article .dark-cta-btn {
  background: var(--red);
  color: #fff;
  font-family: 'Plus Jakarta Sans', sans-serif !important;
  font-size: 15px;
  font-weight: 700;
  padding: 14px 32px;
  border-radius: 10px;
  border: none;
  cursor: pointer;
  transition: all 0.2s;
  box-shadow: 0 8px 24px rgba(183,16,42,0.4);
}
.kunst-article .dark-cta-btn:hover {
  box-shadow: 0 12px 32px rgba(183,16,42,0.5);
  transform: scale(1.03);
}
.kunst-article .dark-cta-btn-ghost {
  background: transparent;
  color: #fff;
  font-family: 'Plus Jakarta Sans', sans-serif !important;
  font-size: 15px;
  font-weight: 600;
  padding: 14px 32px;
  border-radius: 10px;
  border: 1px solid rgba(255,255,255,0.2);
  cursor: pointer;
  transition: all 0.2s;
}
.kunst-article .dark-cta-btn-ghost:hover { background: rgba(255,255,255,0.08); }

/* Author footer */
.kunst-article .article-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 32px;
  border-top: 1px solid rgba(0,43,73,0.1);
  margin-top: 48px;
}
.kunst-article .share-btns { display: flex; gap: 8px; }
.kunst-article .share-btn {
  width: 38px; height: 38px;
  border-radius: 9999px;
  background: var(--surface-high);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: var(--text-secondary);
  transition: all 0.2s;
}
.kunst-article .share-btn:hover { background: var(--red); color: #fff; }

/* Astra-Container overflow-Fix: verhindert dass overflow:hidden position:sticky bricht */
#content.site-content,
.ast-container,
#primary.content-area,
article.ratgeber-single { overflow: visible !important; }

/* ── SIDEBAR RIGHT ── */
.kunst-article .sidebar-right {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.kunst-article .sidebar-sticky {
  position: sticky;
  top: 96px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* TOC card */
.kunst-article .toc-card {
  background: var(--surface-low);
  border-radius: 16px;
  padding: 22px 24px;
}
.kunst-article .toc-card-title {
  font-family: 'Plus Jakarta Sans', sans-serif !important;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 16px;
}
.kunst-article .toc-card-list { display: flex; flex-direction: column; gap: 2px; }
.kunst-article .toc-card-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 7px 0;
  text-decoration: none;
  border-bottom: 1px solid rgba(0,43,73,0.06);
  transition: all 0.18s;
}
.kunst-article .toc-card-item:last-child { border-bottom: none; }
.kunst-article .toc-card-dot {
  width: 6px; height: 6px;
  border-radius: 9999px;
  background: var(--red);
  opacity: 0.35;
  flex-shrink: 0;
  transition: opacity 0.18s;
}
.kunst-article .toc-card-item:hover .toc-card-dot { opacity: 1; }
.kunst-article .toc-card-item:hover .toc-card-text { color: var(--red); }
.kunst-article .toc-card-text {
  font-family: 'Plus Jakarta Sans', sans-serif !important;
  font-size: 13px;
  font-weight: 500;
  color: var(--text-secondary);
  line-height: 1.35;
  transition: color 0.18s, font-size 0.18s, font-weight 0.18s;
}

/* ScrollSpy: aktiver TOC-Eintrag */
.kunst-article .toc-card-item.is-active .toc-card-dot {
  opacity: 1;
  background: var(--red);
}
.kunst-article .toc-card-item.is-active .toc-card-text {
  color: var(--red);
  font-size: 14px;
  font-weight: 700;
}

/* Checker card */
.kunst-article .sidebar-card {
  background: var(--surface-white);
  border-radius: 16px;
  padding: 24px;
  box-shadow: 0 20px 40px rgba(0,43,73,0.05);
}
.kunst-article .sidebar-card-title { font-size: 15px; font-weight: 700; color: var(--navy); margin-bottom: 10px; }
.kunst-article .sidebar-card-sub { font-size: 12px; color: var(--text-secondary); line-height: 1.5; margin-bottom: 16px; }
.kunst-article .sidebar-checker-icon {
  width: 48px; height: 48px;
  border-radius: 12px;
  background: rgba(183,16,42,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
}
.kunst-article .sidebar-checker-icon .material-symbols-outlined { font-size: 26px; color: var(--red); }
.kunst-article .sidebar-btn {
  width: 100%;
  background: var(--navy);
  color: #fff;
  font-family: 'Plus Jakarta Sans', sans-serif !important;
  font-size: 13px;
  font-weight: 700;
  padding: 12px;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  transition: background 0.2s;
}
.kunst-article .sidebar-btn:hover { background: var(--red); }
.kunst-article .sidebar-btn-note {
  font-size: 10px;
  color: var(--text-muted);
  text-align: center;
  margin-top: 8px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

/* ── INFOGRAPHICS ── */
.kunst-article .infographic-card {
  background: var(--surface-white);
  border-radius: 18px;
  padding: 28px 32px 24px;
  box-shadow: 0 4px 24px rgba(0,43,73,0.07);
  border: 1px solid rgba(0,43,73,0.06);
}
.kunst-article .infographic-label {
  font-family: 'Plus Jakarta Sans', sans-serif !important;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 20px;
}
.kunst-article .infographic-footnote {
  font-size: 11px;
  color: var(--text-muted);
  margin-top: 16px;
  text-align: right;
  letter-spacing: 0.04em;
}

/* Bar chart */
.kunst-article .foerder-spectrum { display: flex; flex-direction: column; gap: 14px; }
.kunst-article .foerder-bar-wrap { display: flex; align-items: center; gap: 12px; }
.kunst-article .foerder-bar-label {
  font-family: 'Plus Jakarta Sans', sans-serif !important;
  font-size: 14px;
  font-weight: 600;
  color: var(--text-secondary);
  min-width: 110px;
  text-align: right;
}
.kunst-article .foerder-bar-track {
  flex: 1;
  height: 10px;
  background: var(--surface-high);
  border-radius: 9999px;
  overflow: hidden;
}
.kunst-article .foerder-bar {
  height: 100%;
  border-radius: 9999px;
  transition: width 1s cubic-bezier(.22,1,.36,1);
}
.kunst-article .foerder-bar-value {
  font-family: 'Plus Jakarta Sans', sans-serif !important;
  font-size: 14px;
  font-weight: 700;
  color: var(--text-primary);
  min-width: 140px;
}
.kunst-article .foerder-bar-active .foerder-bar-label { color: var(--red); font-weight: 700; }
.kunst-article .foerder-bar-active .foerder-bar-value { color: var(--red); }

/* Timeline */
.kunst-article .timeline-card { padding-bottom: 20px; }
.kunst-article .timeline-wrap { display: flex; flex-direction: column; gap: 0; }
.kunst-article .timeline-step { display: flex; gap: 0; position: relative; }
.kunst-article .timeline-dot {
  width: 14px; height: 14px;
  border-radius: 9999px;
  background: rgba(0,43,73,0.25);
  flex-shrink: 0;
  margin-top: 4px;
  z-index: 1;
  position: relative;
}
.kunst-article .timeline-connector {
  position: absolute;
  left: 6px; top: 18px;
  width: 2px;
  height: calc(100% + 4px);
  background: var(--surface-high);
}
.kunst-article .timeline-step-last .timeline-connector { display: none; }
.kunst-article .timeline-content {
  padding: 0 0 20px 20px;
  display: grid;
  grid-template-columns: 32px 1fr;
  gap: 0 12px;
  align-items: baseline;
}
.kunst-article .timeline-step-num {
  font-family: 'Plus Jakarta Sans', sans-serif !important;
  font-size: 11px;
  font-weight: 800;
  color: var(--red);
  letter-spacing: 0.06em;
}
.kunst-article .timeline-step-title {
  font-family: 'Plus Jakarta Sans', sans-serif !important;
  font-size: 15px;
  font-weight: 700;
  color: var(--navy);
}
.kunst-article .timeline-step-desc {
  font-family: 'Plus Jakarta Sans', sans-serif !important;
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.5;
  grid-column: 2;
}
.kunst-article .timeline-total {
  font-family: 'Plus Jakarta Sans', sans-serif !important;
  font-size: 13px;
  color: var(--text-secondary);
  border-top: 1px solid var(--surface-mid);
  padding-top: 14px;
  margin-top: 4px;
}
.kunst-article .timeline-total strong { color: var(--navy); }

/* Jury grid */
.kunst-article .jury-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.kunst-article .jury-card {
  background: var(--surface-low);
  border-radius: 14px;
  padding: 20px 22px;
  border: 1px solid transparent;
}
.kunst-article .jury-card-top {
  background: var(--surface-white);
  border-color: rgba(183,16,42,0.15);
  box-shadow: 0 2px 12px rgba(183,16,42,0.07);
}
.kunst-article .jury-rank {
  font-family: 'Plus Jakarta Sans', sans-serif !important;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.1em;
  color: var(--red);
  margin-bottom: 6px;
}
.kunst-article .jury-rank-secondary { color: var(--text-muted); }
.kunst-article .jury-criterion-title {
  font-family: 'Plus Jakarta Sans', sans-serif !important;
  font-size: 15px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 6px;
}
.kunst-article .jury-criterion-desc {
  font-family: 'Newsreader', Georgia, serif !important;
  font-size: 17px;
  color: var(--text-secondary);
  line-height: 1.55;
  margin-bottom: 14px;
}
.kunst-article .jury-weight-bar {
  height: 5px;
  background: var(--surface-high);
  border-radius: 9999px;
  overflow: hidden;
}
.kunst-article .jury-weight-fill {
  height: 100%;
  border-radius: 9999px;
  background: var(--red);
}

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .kunst-article .article-layout {
    grid-template-columns: 1fr;
    gap: 48px;
    padding: 0 24px 60px;
  }
  .kunst-article .sidebar-right { display: none; }
  .kunst-article .article-header {
    display: flex;
    flex-direction: column;
    gap: 24px;
    padding: 24px 24px 32px;
  }
  /* Hero-Bild: auf Mobile unter dem Text-Block zeigen, nicht verstecken */
  .kunst-article .article-hero-visual { display: block; width: 100%; }
  .kunst-article .article-hero-img {
    animation: none;
    box-shadow: 0 16px 40px rgba(0,43,73,0.1);
  }
  .kunst-article .breadcrumb { padding: 20px 24px 0; }
  .kunst-article .inline-cta { grid-template-columns: 1fr; gap: 16px; }
  .kunst-article .bewerbung-grid { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
  .kunst-article .article-layout { padding: 0 16px 48px; }
  .kunst-article .article-header { padding: 16px 16px 24px; }
  .kunst-article .breadcrumb { padding: 16px 16px 0; }
  /* Headline-Größen */
  .kunst-article .article-h1 { font-size: 28px; }
  .kunst-article .article-h2 { font-size: 22px; margin-top: 40px; }
  .kunst-article .article-h3 { font-size: 18px; }
  /* Newsreader/Serif auf 19px — kompensiert optisch kleinere Darstellung vs. Sans-Serif */
  .kunst-article .article-p { font-size: 19px; }
  .kunst-article .bullet-text { font-size: 19px; }
  .kunst-article .list-text { font-size: 19px; }
  .kunst-article .error-desc { font-size: 19px; }
  .kunst-article .faq-a { font-size: 19px; }
  /* Sub-Intro: 1px größer als Body → visueller Unterschied bleibt */
  .kunst-article .article-lead { font-size: 20px; padding-left: 14px; }
  /* TL;DR */
  .kunst-article .tldr-box { padding: 24px 20px; }
  .kunst-article .tldr-text { font-size: 19px; }
  /* Dark CTA */
  .kunst-article .dark-cta { padding: 36px 24px; border-radius: 16px; }
  .kunst-article .dark-cta-title { font-size: 22px; }
  .kunst-article .dark-cta-actions { flex-direction: column; }
  .kunst-article .dark-cta-btn,
  .kunst-article .dark-cta-btn-ghost { width: 100%; }
  /* Inline CTA: Button voll breit */
  .kunst-article .inline-cta { padding: 24px 20px; }
  .kunst-article .inline-cta-btn { width: 100%; text-align: center; }
  /* Restliche Elemente */
  .kunst-article .article-footer { flex-direction: column; gap: 16px; align-items: flex-start; }
  .kunst-article .bewerbung-grid { gap: 12px; }
  .kunst-article .bewerbung-card { padding: 20px; }
  .kunst-article .faq-item { padding: 18px 20px; }
  .kunst-article .foerder-bar-label { min-width: 72px; font-size: 11px; }
  .kunst-article .foerder-bar-value { min-width: 100px; font-size: 11px; }
  .kunst-article .jury-grid { grid-template-columns: 1fr; }
  .kunst-article .infographic-card { padding: 20px; }
}

/* ── ANIMATIONS ── */

/* Reveal: Elements faden + sliden hoch wenn sichtbar */
.kunst-article .reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s cubic-bezier(.22,1,.36,1), transform 0.6s cubic-bezier(.22,1,.36,1);
  will-change: opacity, transform;
}
.kunst-article .reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Reveal-Left: slide-in von links */
.kunst-article .reveal-left {
  opacity: 0;
  transform: translateX(-28px);
  transition: opacity 0.55s cubic-bezier(.22,1,.36,1), transform 0.55s cubic-bezier(.22,1,.36,1);
  will-change: opacity, transform;
}
.kunst-article .reveal-left.is-visible {
  opacity: 1;
  transform: translateX(0);
}

/* Bounce-In: für TL;DR */
@keyframes magazin-bounce-in {
  0%   { opacity: 0; transform: scale(0.94) translateY(20px); }
  60%  { opacity: 1; transform: scale(1.02) translateY(-4px); }
  100% { transform: scale(1) translateY(0); }
}
.kunst-article .bounce-in.is-visible {
  animation: magazin-bounce-in 0.7s cubic-bezier(.22,1,.36,1) both;
}
.kunst-article .bounce-in:not(.is-visible) {
  opacity: 0;
}

/* Float: schwebendes Feature-Bild im Hero */
@keyframes magazin-float {
  0%, 100% { transform: translateY(0px); }
  50%      { transform: translateY(-12px); }
}
.kunst-article .article-hero-img {
  animation: magazin-float 6s ease-in-out infinite;
}

/* Reduzierte Bewegung respektieren */
@media (prefers-reduced-motion: reduce) {
  .kunst-article .reveal,
  .kunst-article .reveal-left,
  .kunst-article .bounce-in {
    opacity: 1 !important;
    transform: none !important;
    animation: none !important;
    transition: none !important;
  }
  .kunst-article .article-hero-img {
    animation: none !important;
  }
}

/* Word-break fix */
.kunst-article .article-p,
.kunst-article .article-lead,
.kunst-article .list-text,
.kunst-article .bullet-text,
.kunst-article .tldr-text,
.kunst-article .bc-bullet-text,
.kunst-article .error-desc,
.kunst-article .faq-a,
.kunst-article .tip-box-text,
.kunst-article .warning-box-text {
  word-break: normal;
  overflow-wrap: break-word;
  hyphens: auto;
}
