/*
  LohnPulse — blog stylesheet (shared blog components)
  Promotes the article-primitives (.band/.kicker/.card/.crosssell-grid/
  .explainer-breadcrumb + the LP-DNA tokens) into ONE linkable file the blog
  pages load alongside styles.css. Token-only — no new palette; every value is
  a real symbol from styles.css or the existing funktionen-* pages.
  Linked by: blog.html + every blog-<slug>.html (AFTER styles.css).
*/

/* ── LP-DNA tokens (styles.css lacks these) ── */
:root {
  --fx-forest-1: #123a22; --fx-forest-2: #1d4529; --fx-forest-3: #2B5C3C; --fx-forest-4: #347a4b;
  --fx-primary: #2F6740; --fx-primary-text: #2d6b43;
  --fx-mint: #A8D4B3; --fx-mint-bright: #B9ECC9; --fx-mint-line: #C6F2D4;
  --fx-amber: #f59e0b;
  --fx-ink: #141414; --fx-muted: #6B7280;
  --fx-hairline: #d9e7dd;
  --fx-teal: #3E7F72;
  --ease: cubic-bezier(0, 0, 0.2, 1);
}

/* ── Fail-safe reveal boot — text is final-visible without JS ── */
[data-reveal] { opacity: 1; transform: none; }
html.js.motion [data-reveal] { opacity: 0; transform: translateY(26px); transition: opacity .6s var(--ease), transform .6s var(--ease); }
html.js.motion [data-reveal].in { opacity: 1; transform: none; }

/* ════════════════════════════════════════════════════════════════
   BLOG-KOMPONENTEN (token-only aus dem Bestand)
   ════════════════════════════════════════════════════════════════ */
.blog-main { padding: clamp(2.5rem, 5vw, 4rem) 0 4rem; }

/* Kategorie-Chip (aus .feature-showcase-label) */
.blog-tag {
  display: inline-block; font-size: .76rem; font-weight: 700; letter-spacing: .08em;
  text-transform: uppercase; color: var(--brand-accent); background: var(--brand-light-bg);
  padding: .2rem .7rem; border-radius: 999px;
}
.blog-tag.on-cover { background: rgba(255,255,255,.92); color: var(--fx-primary-text); backdrop-filter: blur(4px); }
.blog-tag-neu { color: var(--fx-primary-text); background: #E7F3EB; }
.blog-tag-compliance { color: #9a6206; background: #FFF9EC; }
.blog-tag-kanzlei { color: #33587e; background: #EEF4FB; }

/* Featured Hero (aus .feature-showcase — 2-col, kollabiert mobil) */
.blog-featured {
  display: grid; grid-template-columns: 1.15fr 1fr; gap: clamp(1.5rem, 3.5vw, 3rem);
  align-items: stretch;
  background: var(--white);
  border: 1px solid var(--fx-hairline);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  margin-bottom: clamp(2.2rem, 5vw, 3.2rem);
  transition: transform .25s var(--ease), box-shadow .25s var(--ease);
  position: relative;
}
.blog-featured:hover { box-shadow: var(--shadow-xl); }
.blog-featured-cover { position: relative; min-height: 320px; }
.blog-featured-body { padding: clamp(1.6rem, 3vw, 2.6rem) clamp(1.6rem, 3vw, 2.6rem) clamp(1.6rem, 3vw, 2.6rem) 0; display: flex; flex-direction: column; justify-content: center; }
.blog-featured-body h2 { font-size: clamp(1.5rem, 3vw, 2.1rem); letter-spacing: -.02em; line-height: 1.18; margin: .8rem 0 .8rem; color: var(--neutral-900); }
.blog-featured-body h2 a { color: inherit; }
.blog-featured-body h2 a:hover { color: var(--brand-logo); }
.blog-featured-body p { color: var(--neutral-600); line-height: 1.65; margin-bottom: 1.1rem; max-width: 52ch; }
.blog-featured-ribbon {
  position: absolute; top: 1.1rem; left: 1.1rem; z-index: 2;
  display: inline-flex; align-items: center; gap: .35rem;
  background: rgba(255,255,255,.94); color: var(--fx-primary-text);
  font-size: .7rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase;
  padding: .3rem .7rem; border-radius: 999px; box-shadow: var(--shadow-sm);
}
.blog-featured-ribbon::before { content: ''; width: 7px; height: 7px; border-radius: 50%; background: var(--fx-amber); }

/* Meta-Zeile (Karte + Featured + Artikel-Hero) */
.blog-meta { display: flex; align-items: center; flex-wrap: wrap; gap: .45rem .6rem; font-size: .82rem; color: var(--neutral-500); }
.blog-meta .dot { width: 3px; height: 3px; border-radius: 50%; background: var(--neutral-300); }
.blog-meta time { font-variant-numeric: tabular-nums; }
.blog-avatar {
  width: 26px; height: 26px; border-radius: 50%;
  background: linear-gradient(135deg, var(--brand-logo), var(--brand-accent));
  color: var(--white); display: inline-flex; align-items: center; justify-content: center;
  font-size: .66rem; font-weight: 700; letter-spacing: .02em; flex-shrink: 0;
  border: 2px solid var(--white); box-shadow: var(--shadow-sm);
}

/* Tab-Leiste (progressive enhancement — ohne JS alle Karten sichtbar) */
.blog-tabs {
  display: flex; align-items: center; gap: .5rem;
  overflow-x: auto; -webkit-overflow-scrolling: touch;
  padding-bottom: .4rem; margin-bottom: clamp(1.6rem, 3vw, 2.2rem);
  scrollbar-width: none;
}
.blog-tabs::-webkit-scrollbar { display: none; }
.blog-tab {
  flex-shrink: 0;
  font-size: .875rem; font-weight: 600; color: var(--neutral-600);
  background: var(--white); border: 1px solid var(--neutral-200);
  padding: .45rem 1.1rem; border-radius: 999px;
  cursor: pointer; transition: all .2s;
}
.blog-tab:hover { border-color: var(--brand-accent); color: var(--brand-primary); }
.blog-tab.active { background: var(--brand-primary); border-color: var(--brand-primary); color: var(--white); box-shadow: 0 2px 8px rgba(64,133,87,.3); }
.blog-tabs-spacer { flex: 1; }

/* Suchfeld (client-seitige Progressive-Enhancement-Suche — ohne JS bleiben alle Karten sichtbar) */
.blog-search {
  flex-shrink: 0;
  display: inline-flex; align-items: center; gap: .45rem;
  background: var(--white); border: 1px solid var(--neutral-200);
  border-radius: 999px; padding: .42rem .95rem;
  min-width: 230px;
  transition: border-color .2s, box-shadow .2s;
}
.blog-search:focus-within { border-color: var(--brand-accent); box-shadow: 0 0 0 3px rgba(95,168,126,.18); }
.blog-search svg { width: 14px; height: 14px; color: var(--neutral-400); flex-shrink: 0; }
.blog-search input {
  border: none; outline: none; background: transparent;
  font-family: var(--font-sans); font-size: .875rem; color: var(--neutral-700);
  width: 100%; min-width: 0;
}
.blog-search input::placeholder { color: var(--neutral-400); }

.blog-rss { flex-shrink: 0; display: inline-flex; align-items: center; gap: .35rem; font-size: .8rem; font-weight: 600; color: var(--neutral-400); }
.blog-rss:hover { color: var(--brand-primary); }
.blog-rss svg { width: 14px; height: 14px; }

/* Karten-Grid (aus dem .crosssell-grid-Modell, 3→2→1 statt 4→2→1) */
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.6rem; align-items: stretch; }
@media (max-width: 1023px) { .blog-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px)  { .blog-grid { grid-template-columns: 1fr; } }

/* Blog-Karte (.card + .lift-Verhalten) */
/* [hidden] must win over the display below — else JS filter/search/load-more can't hide cards */
.blog-card[hidden] { display: none !important; }
.blog-card {
  display: flex; flex-direction: column;
  background: var(--white);
  border: 1px solid var(--fx-hairline);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), border-color .25s var(--ease);
  position: relative;
}
.blog-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: var(--brand-accent); }
.blog-card-cover { position: relative; aspect-ratio: 16 / 9; overflow: hidden; }
.blog-card-cover .blog-tag { position: absolute; top: .8rem; left: .8rem; z-index: 2; }
.blog-card-body { padding: 1.25rem 1.4rem 1.4rem; display: flex; flex-direction: column; gap: .55rem; flex: 1; }
.blog-card-body h3 { font-size: 1.08rem; line-height: 1.32; letter-spacing: -.01em; color: var(--neutral-900); }
.blog-card-body h3 a { color: inherit; }
.blog-card:hover h3 { color: var(--brand-logo); }
.blog-card-body p { font-size: .9rem; color: var(--neutral-600); line-height: 1.6; margin: 0; flex: 1;
  display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.blog-card-body .blog-meta { margin-top: .3rem; }

/* CSS-gezeichnete Cover-Mockups (Platzhalter — echte Covers folgen) */
.cover-mock {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}
.cover-mock::after {
  content: 'Platzhalter-Cover'; position: absolute; bottom: .5rem; right: .6rem;
  font-size: .58rem; font-weight: 600; letter-spacing: .08em; text-transform: uppercase;
  color: rgba(255,255,255,.55);
}
.cm-forest { background: linear-gradient(135deg, var(--fx-forest-1) 0%, var(--fx-forest-3) 55%, var(--fx-forest-4) 100%); }
.cm-mint { background: linear-gradient(135deg, var(--brand-logo) 0%, var(--brand-accent) 100%); }
.cm-light { background: linear-gradient(135deg, #dcefe2 0%, var(--brand-light-bg) 60%, #ffffff 100%); }
.cm-light::after { color: rgba(43,92,60,.4); }
.cm-amber { background: linear-gradient(135deg, #1d4529 0%, #2B5C3C 60%, #7a5b12 130%); }
.cm-teal { background: linear-gradient(135deg, #123a22 0%, var(--fx-teal) 110%); }
/* Mini-UI-Elemente in den Covers */
.cm-window {
  width: 72%; background: rgba(255,255,255,.97); border-radius: 10px;
  box-shadow: 0 14px 34px rgba(0,0,0,.28);
  padding: .7rem .8rem; transform: rotate(-1.5deg);
}
.cm-window.tilt-r { transform: rotate(1.5deg); }
.cm-window-bar { display: flex; gap: .25rem; margin-bottom: .55rem; }
.cm-window-bar i { width: 6px; height: 6px; border-radius: 50%; background: var(--neutral-300); }
.cm-window-bar i:first-child { background: var(--brand-accent); }
.cm-row { height: 8px; border-radius: 4px; background: var(--neutral-100); margin-bottom: .4rem; }
.cm-row.w60 { width: 60%; } .cm-row.w80 { width: 80%; } .cm-row.w40 { width: 40%; background: #E7F3EB; }
.cm-kpis { display: flex; gap: .4rem; margin-bottom: .45rem; }
.cm-kpi { flex: 1; background: var(--brand-light-bg); border: 1px solid var(--fx-hairline); border-radius: 6px; padding: .35rem .45rem; }
.cm-kpi b { display: block; font-size: .72rem; color: var(--fx-primary-text); line-height: 1.1; }
.cm-kpi span { font-size: .5rem; color: var(--fx-muted); text-transform: uppercase; letter-spacing: .05em; }
.cm-pulse { width: 100%; height: 34px; }
.cm-pulse path { fill: none; stroke: var(--brand-primary); stroke-width: 2; stroke-linecap: round; }
.cm-bars { display: flex; align-items: flex-end; gap: .3rem; height: 42px; }
.cm-bars i { flex: 1; border-radius: 3px 3px 0 0; background: linear-gradient(180deg, var(--brand-accent), var(--brand-primary)); }
.cm-badge-para {
  font-size: 2.6rem; font-weight: 800; color: rgba(255,255,255,.92);
  background: rgba(255,255,255,.12); border: 1px solid rgba(255,255,255,.25);
  width: 84px; height: 84px; border-radius: 22px;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 14px 34px rgba(0,0,0,.25);
}
.cm-doc {
  width: 58%; background: rgba(255,255,255,.97); border-radius: 8px;
  padding: .8rem; box-shadow: 0 14px 34px rgba(0,0,0,.25); transform: rotate(1deg);
}
.cm-doc .cm-row:first-child { background: #E7F3EB; width: 45%; height: 10px; }
.cm-phone-mini {
  width: 92px; background: #1a1b1e; border-radius: 16px; padding: 4px;
  box-shadow: 0 14px 34px rgba(0,0,0,.35); transform: rotate(-3deg);
}
.cm-phone-mini > div { background: var(--white); border-radius: 12px; padding: .55rem .45rem .7rem; }
.cm-check-row { display: flex; align-items: center; gap: .3rem; margin-bottom: .35rem; }
.cm-check-row i {
  width: 12px; height: 12px; border-radius: 50%; background: #E7F3EB; color: var(--fx-primary);
  font-style: normal; font-size: .5rem; font-weight: 800; display: inline-flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.cm-check-row b { height: 6px; border-radius: 3px; background: var(--neutral-200); flex: 1; }

/* Mehr laden */
.blog-loadmore { text-align: center; margin-top: clamp(2rem, 4vw, 3rem); }
.blog-loadmore .hint { display: block; font-size: .78rem; color: var(--neutral-400); margin-top: .6rem; }

/* ── Artikel-Seite ── */
.blog-progress { position: fixed; top: 0; left: 0; right: 0; height: 3px; z-index: 30; background: transparent; }
.blog-progress i { display: block; height: 100%; width: 0;
  background: linear-gradient(90deg, var(--fx-forest-3), var(--fx-forest-4) 70%, var(--fx-mint)); border-radius: 0 2px 2px 0; }

.explainer-breadcrumb { background: var(--brand-light-bg); border-bottom: 1px solid var(--fx-hairline); font-size: .85rem; }
.explainer-breadcrumb .container { padding-top: .55rem; padding-bottom: .55rem; color: var(--fx-muted); }
.explainer-breadcrumb a { color: var(--fx-primary-text); font-weight: 500; }
.explainer-breadcrumb span[aria-hidden] { margin: 0 .35rem; color: var(--neutral-400); }

.band { padding: clamp(3rem, 6vw, 5rem) 0; }
.band-alt { background: var(--brand-light-bg); }
.kicker { display: inline-flex; align-items: center; gap: .5rem; text-transform: uppercase;
  letter-spacing: .14em; font-size: .72rem; font-weight: 700; color: var(--fx-primary-text); margin-bottom: 1rem; }
.kicker::before { content: ''; width: 22px; height: 2px; background: var(--fx-primary); border-radius: 1px; }

.article-hero { padding: clamp(2.6rem, 5vw, 4rem) 0 0; }
.article-hero h1 { font-size: clamp(1.9rem, 4.2vw, 3rem); letter-spacing: -.025em; line-height: 1.12; color: var(--neutral-900); max-width: 20ch; margin-bottom: 1.1rem; }
.article-byline { display: flex; align-items: center; gap: .8rem; flex-wrap: wrap; margin-bottom: 1.8rem; }
.article-byline .blog-avatar { width: 42px; height: 42px; font-size: .85rem; }
.article-byline .who b { display: block; font-size: .92rem; color: var(--neutral-800); line-height: 1.25; }
.article-byline .who span { font-size: .8rem; color: var(--neutral-500); }
.article-byline .sep { width: 1px; height: 30px; background: var(--neutral-200); margin: 0 .4rem; }
.article-byline .dates { font-size: .82rem; color: var(--neutral-500); line-height: 1.5; }
.article-byline .dates b { color: var(--neutral-700); font-weight: 600; }
.article-cover {
  position: relative; aspect-ratio: 21 / 9; border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: var(--shadow-xl); border: 1px solid var(--neutral-200);
}
.article-cover img { width: 100%; height: 100%; object-fit: cover; display: block; }

.blog-tldr {
  background: var(--brand-light-bg);
  border: 1px solid var(--fx-hairline);
  border-left: 4px solid var(--brand-primary);
  border-radius: var(--radius-md);
  padding: 1.3rem 1.6rem;
  margin: clamp(1.8rem, 3.5vw, 2.6rem) 0 0;
  max-width: 760px;
}
.blog-tldr b { display: inline-flex; align-items: center; gap: .4rem; font-size: .72rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--fx-primary-text); margin-bottom: .5rem; }
.blog-tldr p { margin: 0; color: var(--neutral-700); line-height: 1.7; font-size: 1.02rem; }

.blog-anchornav {
  display: flex; align-items: center; gap: .4rem; flex-wrap: wrap;
  margin-top: 1.6rem; padding: .8rem 0;
  border-top: 1px solid var(--neutral-200); border-bottom: 1px solid var(--neutral-200);
  font-size: .85rem;
}
.blog-anchornav .lbl { font-weight: 700; color: var(--neutral-400); font-size: .72rem; text-transform: uppercase; letter-spacing: .1em; margin-right: .5rem; }
.blog-anchornav a {
  color: var(--neutral-600); font-weight: 500; padding: .3rem .8rem; border-radius: 999px;
  background: var(--neutral-100); transition: all .2s;
}
.blog-anchornav a:hover { background: #E7F3EB; color: var(--fx-primary-text); }
.blog-anchornav a.current { background: var(--brand-primary); color: var(--white); }

.blog-article-prose { max-width: 760px; }
.blog-article-prose h2 { font-size: clamp(1.35rem, 2.6vw, 1.75rem); letter-spacing: -.015em; color: var(--neutral-900); margin-bottom: .9rem; }
.blog-article-prose h3 { font-size: 1.12rem; color: var(--brand-logo); margin: 1.6rem 0 .6rem; }
.blog-article-prose p { color: var(--neutral-600); line-height: 1.8; margin-bottom: 1.1rem; }
.blog-article-prose p b { color: var(--neutral-800); }
.blog-article-prose ul { list-style: none; padding: 0; margin: 0 0 1.2rem; }
.blog-article-prose li { padding: .35rem 0 .35rem 1.6rem; position: relative; color: var(--neutral-600); line-height: 1.65; }
.blog-article-prose li::before { content: '✓'; position: absolute; left: 0; color: var(--brand-accent); font-weight: 700; }
.blog-article-prose .stat-cite { font-size: .8rem; color: var(--neutral-400); }
.blog-article-prose .stat-cite a { color: var(--fx-primary-text); text-decoration: underline; text-decoration-color: var(--fx-hairline); }

.article-figure { margin: 1.8rem 0 2rem; max-width: 760px; }
.article-figure .fig-frame {
  position: relative; aspect-ratio: 16 / 8.5; border-radius: var(--radius-md); overflow: hidden;
  border: 1px solid var(--neutral-200); box-shadow: var(--shadow-md);
}
.article-figure figcaption { font-size: .82rem; color: var(--neutral-500); margin-top: .6rem; padding-left: .2rem; }
.article-figure figcaption b { color: var(--neutral-600); }

/* Für-wen Block */
.fuer-wen-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.1rem; max-width: 900px; }
@media (max-width: 767px) { .fuer-wen-grid { grid-template-columns: 1fr; } }
.fuer-wen-card { background: var(--white); border: 1px solid var(--fx-hairline); border-radius: var(--radius-lg); padding: 1.3rem 1.4rem; }
.fuer-wen-card .role-line { display: flex; align-items: center; gap: .5rem; margin-bottom: .5rem; }
.fuer-wen-card .role-dot { width: 8px; height: 8px; border-radius: 50%; flex-shrink: 0; }
.fuer-wen-card h3 { font-size: .98rem; color: var(--neutral-900); }
.fuer-wen-card p { font-size: .86rem; color: var(--neutral-600); line-height: 1.6; margin: 0; }

/* Was-noch-kommt (Ehrlichkeits-Block) */
.roadmap-honest {
  background: var(--white); border: 1px solid var(--fx-hairline); border-radius: var(--radius-lg);
  padding: 1.6rem 1.8rem; max-width: 760px;
  box-shadow: var(--shadow-sm);
}
.roadmap-honest .rh-head { display: flex; align-items: center; gap: .6rem; margin-bottom: 1rem; }
.roadmap-honest .rh-head svg { width: 20px; height: 20px; color: var(--fx-amber); flex-shrink: 0; }
.roadmap-honest .rh-head h3 { font-size: 1.05rem; color: var(--neutral-900); }
.roadmap-honest ul { list-style: none; padding: 0; margin: 0; }
.roadmap-honest li { display: flex; gap: .7rem; padding: .45rem 0; font-size: .9rem; color: var(--neutral-600); line-height: 1.55; align-items: baseline; }
.roadmap-honest li i {
  font-style: normal; flex-shrink: 0; font-size: .66rem; font-weight: 700; letter-spacing: .06em;
  padding: .18rem .55rem; border-radius: 999px; white-space: nowrap;
}
.rh-soon { background: #E7F3EB; color: var(--fx-primary-text); }
.rh-later { background: var(--neutral-100); color: var(--neutral-500); }
.roadmap-honest .rh-note { font-size: .78rem; color: var(--neutral-400); margin-top: .9rem; }

/* Was ist LohnPulse (Orientierung für Kalt-Besucher) */
.orient-box {
  display: flex; gap: 1.1rem; align-items: flex-start;
  background: linear-gradient(135deg, var(--fx-forest-2) 0%, var(--fx-forest-3) 100%);
  color: #eaf4ec; border-radius: var(--radius-lg);
  padding: 1.5rem 1.7rem; max-width: 760px;
}
.orient-box svg { flex-shrink: 0; margin-top: .15rem; }
.orient-box h3 { color: var(--white); font-size: 1rem; margin-bottom: .4rem; }
.orient-box p { font-size: .9rem; color: rgba(234,244,236,.85); line-height: 1.65; margin: 0 0 .7rem; }
.orient-box a.more { font-size: .85rem; font-weight: 600; color: var(--fx-mint-bright); }

/* Globaler Roadmap-Block (wird bei jedem Publish zentral gepflegt) */
.whatsnew-roadmap { background: var(--brand-light-bg); border: 1px solid var(--fx-hairline); border-radius: var(--radius-lg); padding: 1.5rem; max-width: 760px; }
.whatsnew-roadmap-list { list-style: none; margin: .75rem 0 0; padding: 0; display: grid; gap: .6rem; }
.whatsnew-roadmap-list li { color: var(--fx-ink); line-height: 1.5; }
.wn-eta { display: inline-block; margin-left: .4rem; padding: .05rem .5rem; border-radius: 999px; font-size: .72rem; font-weight: 700; }
.wn-eta--in-arbeit { background: var(--fx-mint-line); color: var(--fx-primary-text); }
.wn-eta--geplant   { background: #fef3c7; color: #92400e; }

/* Related / Cross-Sell (echtes .crosssell-grid-Modell, 3→2→1) */
.crosssell-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.1rem; align-items: stretch; }
@media (max-width: 1023px) { .crosssell-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .crosssell-grid { grid-template-columns: 1fr; } }
.card { background: var(--white); border: 1px solid var(--fx-hairline); border-radius: var(--radius-lg);
  padding: 1.5rem; height: 100%; transition: transform .25s var(--ease), box-shadow .25s var(--ease); }
.card.lift:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.crosssell-card { display: flex; flex-direction: column; gap: .4rem; }
.crosssell-card h3 { font-size: .95rem; color: var(--neutral-900); }
.crosssell-card p { font-size: .8rem; color: var(--fx-muted); margin: 0; flex: 1; line-height: 1.55; }
.crosssell-card .link { font-size: .8rem; font-weight: 600; color: var(--fx-primary-text); }

/* ── Skeleton / Loading + Empty-State ── */
@keyframes shimmer { 0% { background-position: -420px 0; } 100% { background-position: 420px 0; } }
.skel {
  background: linear-gradient(90deg, var(--neutral-100) 25%, #eceef1 37%, var(--neutral-100) 63%);
  background-size: 840px 100%;
  animation: shimmer 1.6s linear infinite;
  border-radius: 6px;
}
.skel-card { background: var(--white); border: 1px solid var(--fx-hairline); border-radius: var(--radius-lg); overflow: hidden; }
.skel-cover { aspect-ratio: 16/9; border-radius: 0; }
.skel-body { padding: 1.25rem 1.4rem 1.4rem; display: grid; gap: .6rem; }
.empty-state {
  grid-column: 1 / -1;
  text-align: center; padding: 3.5rem 2rem;
  background: var(--brand-light-bg); border: 1px dashed var(--fx-hairline); border-radius: var(--radius-lg);
}
.empty-state .es-icon {
  width: 52px; height: 52px; margin: 0 auto 1rem; border-radius: 14px;
  background: #E7F3EB; display: flex; align-items: center; justify-content: center; color: var(--fx-primary);
}
.empty-state h3 { font-size: 1.05rem; color: var(--neutral-800); margin-bottom: .35rem; }
.empty-state p { font-size: .9rem; color: var(--neutral-500); max-width: 40ch; margin: 0 auto 1.1rem; }

/* ── Responsive Collapse ── */
@media (max-width: 860px) {
  .blog-featured { grid-template-columns: 1fr; }
  .blog-featured-body { padding: 1.6rem; }
  .blog-featured-cover { min-height: 220px; }
  .fuer-wen-grid { grid-template-columns: 1fr; }
}

/* ═══ Blog article — balanced, centered single reading column ═══
   Fix: the ~760px content blocks were left-pinned inside the shared 1200px
   .container (lopsided right gutter). Scope ONE centered ~880px column so every
   block shares the same width (no gutter), with 18px type so the wider measure
   still reads well. Cover box matched to the 1200×630 export (no object-fit crop). */
.blog-article .container { max-width: 880px; }
.blog-article .article-cover { aspect-ratio: 1200 / 630; }
/* every content block fills the one column — uniform width, no residual gutter */
.blog-article .blog-tldr,
.blog-article .blog-anchornav,
.blog-article .blog-article-prose,
.blog-article .article-figure,
.blog-article .app-banner,
.blog-article .orient-box,
.blog-article .roadmap-honest,
.blog-article .fuer-wen-grid,
.blog-article .crosssell-grid { max-width: 100%; }
/* larger, more comfortable type so the wider column still reads well */
.blog-article .blog-article-prose p,
.blog-article .blog-article-prose li { font-size: 1.1rem; line-height: 1.75; }
.blog-article .blog-tldr p { font-size: 1.1rem; }
.blog-article .blog-article-prose h2 { margin-top: 2.4rem; }

/* roadmap card — aligned [pill | body] grid (was ragged: variable pill widths +
   a long bold title wrapped into its own column, misaligning the descriptions) */
.blog-article .roadmap-honest li { display: grid; grid-template-columns: 84px 1fr; column-gap: 1rem; align-items: baseline; padding: .5rem 0; }
.blog-article .roadmap-honest li i { justify-self: start; }
.blog-article .roadmap-honest li b { color: var(--neutral-900); }

/* CTA banner — subtitle on its own line (fixes the "Excel?Kostenlos" run-together)
   + more breathing room so the buttons sit cleanly on the right */
.blog-article .app-banner { gap: 1.6rem; padding: 1.4rem 1.7rem; }
.blog-article .app-banner p span { display: block; margin-top: .25rem; font-weight: 400; font-size: .95rem; color: var(--neutral-500); }
.blog-article .app-banner > div { flex-shrink: 0; }
