/* =============================================================================
   GastroFuxx · Tabloid-Landing-Layer
   Wiederverwendbare Komponenten für alle Landing-Pages.
   Wird zusätzlich zu werkstatt-shell.css geladen.
   ============================================================================= */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  background: var(--bone);
  color: var(--graphite);
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }

body::before {
  content: ''; position: fixed; inset: 0;
  pointer-events: none; z-index: 1;
  opacity: 0.4; mix-blend-mode: multiply;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 400 400' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='2' stitchTiles='stitch'/%3E%3CfeColorMatrix values='0 0 0 0 0.12 0 0 0 0 0.10 0 0 0 0 0.08 0 0 0 0.05 0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

main { position: relative; z-index: 2; }

/* ============ HERO BACKDROP ============ */
.hero-photo-wrap {
  max-width: 1320px;
  margin: 32px auto 0;
  padding: 0 40px;
  position: relative;
  z-index: 2;
}
.hero-photo {
  position: relative;
  aspect-ratio: 21 / 9;
  overflow: hidden;
  background: var(--bone-2);
}
.hero-photo img { width: 100%; height: 100%; object-fit: cover; }
.hero-photo::after {
  content: attr(data-stamp);
  position: absolute;
  top: 22px; right: 22px;
  background: var(--tab-yellow);
  color: var(--ink);
  font-family: var(--font-shout);
  font-size: 14px;
  letter-spacing: 0.08em;
  padding: 9px 14px 8px;
  text-transform: uppercase;
  transform: rotate(2deg);
  box-shadow: 0 6px 18px rgba(0,0,0,0.18);
}
.hero-photo[data-stamp=""]::after, .hero-photo:not([data-stamp])::after { content: 'Exklusiv · Getestet'; }
@media (max-width: 768px) {
  .hero-photo-wrap { padding: 0 24px; }
  .hero-photo::after { font-size: 11px; padding: 7px 10px; top: 14px; right: 14px; }
}

/* ============ SECTION-NAV (sticky pills) ============ */
.section-nav {
  position: sticky;
  top: 76px;
  z-index: 50;
  background: rgba(245, 239, 230, 0.94);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-top: 1px solid var(--line-soft);
  border-bottom: 1px solid var(--line-soft);
  padding: 14px 40px;
}
.section-nav-inner {
  max-width: 1320px;
  margin: 0 auto;
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.section-pill {
  background: var(--bone-2);
  color: var(--ink);
  font-family: var(--font-shout);
  font-size: 13px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 8px 14px 7px;
  font-weight: 400;
  transition: background 0.15s, color 0.15s;
}
.section-pill:hover { background: var(--tab-red); color: #fff; }
@media (max-width: 768px) { .section-nav { padding: 12px 24px; top: 70px; } .section-pill { font-size: 12px; padding: 7px 11px 6px; } }

/* ============ PHASE / ARTICLE-BLOCK ============ */
.phase {
  position: relative;
  z-index: 2;
  max-width: 1320px;
  margin: 0 auto;
  padding: 64px 40px 32px;
}
.phase + .phase { padding-top: 16px; }
@media (max-width: 768px) { .phase { padding: 48px 24px 24px; } }

.article-block { margin-bottom: 56px; }
.article-block:last-child { margin-bottom: 0; }

.art-eyebrow {
  background: var(--tab-red);
  color: #fff;
  font-family: var(--font-shout);
  font-size: 13px;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  padding: 7px 12px 6px;
  display: inline-block;
  margin-bottom: 18px;
}
.art-eyebrow.acc-olive  { background: var(--olive); color: #fff; }
.art-eyebrow.acc-yellow { background: var(--tab-yellow); color: var(--ink); }
.art-eyebrow.acc-ink    { background: var(--ink); color: #fff; }

.article-block h2 {
  font-family: var(--font-display);
  font-size: clamp(30px, 3.4vw, 48px);
  font-weight: 700;
  line-height: 1.04;
  letter-spacing: -0.022em;
  color: var(--ink);
  margin-bottom: 16px;
  max-width: 22ch;
}
.article-block h2 em {
  font-style: normal;
  background: var(--tab-yellow);
  color: var(--ink);
  padding: 0 8px;
  margin: 0 -2px;
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
}
.article-block .lede {
  font-size: 17px;
  line-height: 1.6;
  color: var(--graphite);
  margin-bottom: 30px;
  max-width: 64ch;
}
.article-block .lede strong { color: var(--tab-red); font-weight: 700; }

/* ============ CONTENT-CARD (universell) ============ */
.content-card-grid {
  display: grid;
  gap: 22px;
}
.content-card-grid.is-2 { grid-template-columns: 1fr 1fr; }
.content-card-grid.is-3 { grid-template-columns: repeat(3, 1fr); }
@media (max-width: 880px) {
  .content-card-grid.is-2, .content-card-grid.is-3 { grid-template-columns: 1fr; }
}

.content-card {
  background: #fff;
  border-left: 6px solid var(--tab-red);
  padding: 28px 30px;
  box-shadow: 0 6px 20px rgba(31,26,20,0.06);
  transition: transform 0.18s, box-shadow 0.18s;
}
.content-card:hover { transform: translateY(-2px); box-shadow: 0 12px 32px rgba(31,26,20,0.10); }
.content-card-grid.is-2 > .content-card:nth-child(2) { border-left-color: var(--olive); }
.content-card-grid.is-3 > .content-card:nth-child(2) { border-left-color: var(--tab-yellow); }
.content-card-grid.is-3 > .content-card:nth-child(3) { border-left-color: var(--olive); }

.content-card h3 {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -0.012em;
  color: var(--ink);
  margin-bottom: 14px;
}
.content-card p { font-size: 15px; line-height: 1.6; color: var(--graphite); }
.content-card ul {
  list-style: none;
  margin: 8px 0 0;
  padding: 0;
}
.content-card ul li {
  position: relative;
  padding: 8px 0 8px 22px;
  font-size: 14.5px;
  line-height: 1.55;
  color: var(--graphite);
  border-top: 1px solid var(--line-soft);
}
.content-card ul li:first-child { border-top: 0; }
.content-card ul li::before {
  content: '';
  position: absolute;
  left: 0; top: 18px;
  width: 8px; height: 8px;
  background: var(--tab-red);
  border-radius: 0;
}
.content-card-grid.is-2 > .content-card:nth-child(2) ul li::before { background: var(--olive); }
.content-card-grid.is-3 > .content-card:nth-child(2) ul li::before { background: var(--tab-yellow); }
.content-card-grid.is-3 > .content-card:nth-child(3) ul li::before { background: var(--olive); }
.content-card strong { color: var(--ink); font-weight: 700; }

/* ============ ZEITUNGS-TABELLE ============ */
.zeitung-table {
  border-top: 3px solid var(--ink);
  border-bottom: 3px solid var(--ink);
  margin: 0 0 24px;
}
.zeitung-row {
  display: grid;
  gap: 18px;
  padding: 18px 0;
  border-top: 1px solid var(--line);
  font-size: 14.5px;
}
.zeitung-row:first-child { border-top: 0; }
.zeitung-row.is-head {
  font-family: var(--font-shout);
  font-size: 12px;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: var(--graphite);
  background: var(--bone-2);
  padding: 12px 14px;
  border-top: 0;
}
.zeitung-row strong {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 700;
  color: var(--ink);
  display: block;
  margin-bottom: 2px;
  letter-spacing: -0.01em;
}
.zeitung-row small {
  display: block;
  font-size: 13px;
  color: var(--graphite);
  line-height: 1.45;
  margin-top: 2px;
}
.zeitung-row .badge {
  font-family: var(--font-shout);
  font-size: 12px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 4px 10px 3px;
  align-self: flex-start;
}
.badge-pflicht  { background: var(--tab-red); color: #fff; }
.badge-empfohlen { background: var(--tab-yellow); color: var(--ink); }
.badge-optional  { background: var(--bone-2); color: var(--graphite); }

@media (max-width: 768px) {
  .zeitung-row { grid-template-columns: 1fr !important; gap: 4px; padding: 18px 6px; }
  .zeitung-row.is-head { display: none; }
  .zeitung-row > div::before {
    content: attr(data-label);
    font-family: var(--font-shout);
    font-size: 11px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--smoke);
    display: block;
    margin-bottom: 2px;
  }
  .zeitung-row > div:first-child::before { display: none; }
}

/* Status-Tags */
.status-pflicht  { color: var(--tab-red); font-weight: 700; }
.status-dringend { color: #C77800; font-weight: 700; }
.status-optional { color: var(--olive); font-weight: 600; }

/* ============ INFO-NOTE ============ */
.info-note {
  display: flex;
  gap: 14px;
  background: var(--bone-2);
  border-left: 4px solid var(--tab-yellow);
  padding: 18px 22px;
  margin-top: 24px;
  font-size: 14.5px;
  line-height: 1.55;
  color: var(--graphite);
}
.info-note-icon { font-size: 22px; flex-shrink: 0; line-height: 1; }
.info-note strong { color: var(--ink); font-weight: 700; }

/* ============ EMPFEHLUNG (rec) ============ */
.rec {
  position: relative;
  z-index: 2;
  background: var(--ink);
  margin: 32px 0;
  padding: 48px 40px;
}
.rec::before, .rec::after {
  content: '';
  position: absolute;
  left: 0; right: 0;
  height: 5px;
  background: var(--tab-red);
}
.rec::before { top: 0; }
.rec::after  { bottom: 0; }
.rec-inner {
  position: relative;
  max-width: 1320px;
  margin: 0 auto;
  text-decoration: none;
  color: inherit;
  display: block;
  padding-right: 180px;
}
@media (max-width: 880px) {
  .rec { padding: 32px 24px 36px; }
  .rec-inner { padding-right: 0; }
}
.rec-stamp {
  position: absolute;
  top: -8px; right: 0;
  background: var(--tab-red);
  color: #fff;
  font-family: var(--font-shout);
  font-size: 14px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 14px 18px 12px;
  text-align: center;
  line-height: 1.05;
  transform: rotate(6deg);
  box-shadow: 0 8px 20px rgba(0,0,0,0.45);
  z-index: 2;
}
.rec-stamp b {
  font-size: 20px;
  letter-spacing: 0.08em;
  color: var(--tab-yellow);
  display: block;
  margin-top: 2px;
}
@media (max-width: 880px) {
  .rec-stamp {
    position: relative; top: 0; right: auto;
    display: inline-block; margin-bottom: 18px;
    transform: rotate(-2deg);
  }
}
.rec-eyebrow {
  background: var(--tab-yellow);
  color: var(--ink);
  font-family: var(--font-shout);
  font-size: 14px;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  padding: 7px 12px 6px;
  display: inline-block;
  margin-bottom: 18px;
}
.rec-headline {
  font-family: var(--font-display);
  font-size: clamp(28px, 3.2vw, 46px);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.022em;
  color: #fff;
  margin: 0 0 16px;
}
.rec-headline em {
  font-style: normal;
  background: var(--tab-red);
  padding: 0 10px;
  color: #fff;
}
.rec-lede {
  font-size: 16.5px;
  line-height: 1.6;
  color: rgba(245,239,230,0.82);
  margin: 0 0 22px;
  max-width: 60ch;
}
.rec-cta {
  display: inline-block;
  background: var(--tab-yellow);
  color: var(--ink);
  font-family: var(--font-shout);
  font-size: 18px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 14px 22px 12px;
  box-shadow: 5px 5px 0 var(--tab-red);
  transition: transform 0.15s, box-shadow 0.15s, background 0.15s;
}
.rec:hover .rec-cta {
  background: #fff;
  transform: translate(-2px, -2px);
  box-shadow: 7px 7px 0 var(--tab-red);
}

/* ============ FINAL CTA (gm-link) ============ */
.gm-link {
  position: relative; z-index: 2;
  background: linear-gradient(180deg, #FBBF24 0%, #F59E0B 100%);
  border-top: 6px solid var(--ink);
  border-bottom: 6px solid var(--ink);
  padding: 36px 40px;
  margin: 32px 0 0;
  display: grid;
  grid-template-columns: minmax(180px, 240px) 1fr auto;
  gap: 40px;
  align-items: center;
  text-decoration: none;
  color: inherit;
}
@media (max-width: 768px) { .gm-link { grid-template-columns: 1fr; gap: 14px; padding: 28px 24px; } }
.gm-link .lbl {
  background: var(--ink);
  color: #fff;
  padding: 8px 14px;
  font-family: var(--font-shout);
  font-size: 16px;
  letter-spacing: 0.08em;
  display: inline-block;
}
.gm-link .txt {
  font-family: var(--font-display);
  font-size: clamp(22px, 2.4vw, 30px);
  font-weight: 700;
  line-height: 1.15;
  color: var(--ink);
  letter-spacing: -0.015em;
}
.gm-link .txt em {
  background: var(--ink);
  color: var(--tab-yellow);
  padding: 0 8px;
  font-style: normal;
}
.gm-link .cta {
  background: var(--ink);
  color: #fff;
  padding: 18px 28px;
  font-family: var(--font-shout);
  font-size: 20px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  box-shadow: 6px 6px 0 var(--tab-red);
  transition: transform 0.15s, box-shadow 0.15s, background 0.15s;
  white-space: nowrap;
}
.gm-link:hover .cta {
  background: var(--tab-red);
  transform: translate(-2px, -2px);
  box-shadow: 8px 8px 0 var(--ink);
}

/* ============ FAQ (accordion) ============ */
.faq-list {
  border-top: 3px solid var(--ink);
  margin-top: 8px;
}
.faq-item { border-bottom: 1px solid var(--line); }
.faq-question {
  width: 100%;
  background: transparent;
  border: 0;
  padding: 22px 6px;
  font-family: var(--font-display);
  font-size: 19px;
  font-weight: 700;
  color: var(--ink);
  letter-spacing: -0.01em;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  cursor: pointer;
  text-align: left;
  transition: color 0.15s;
}
.faq-question:hover { color: var(--tab-red); }
.faq-icon {
  font-family: var(--font-shout);
  font-size: 22px;
  color: var(--tab-red);
  width: 32px; height: 32px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  background: var(--bone-2);
  transition: background 0.15s, color 0.15s;
}
.faq-item.open .faq-icon { background: var(--tab-red); color: #fff; }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.35s ease; }
.faq-item.open .faq-answer { max-height: 1200px; }
.faq-answer-inner {
  padding: 0 6px 24px;
  font-size: 15px;
  line-height: 1.65;
  color: var(--graphite);
  max-width: 75ch;
}

/* ============ AFFILIATE-NOTE ============ */
.affiliate-note {
  max-width: 1320px;
  margin: 32px auto 56px;
  padding: 16px 22px;
  background: var(--bone-2);
  border-left: 4px solid var(--tab-yellow);
  font-family: var(--font-mono);
  font-size: 12px;
  line-height: 1.55;
  color: var(--graphite);
}
.affiliate-note strong { color: var(--ink); font-weight: 700; }
@media (max-width: 768px) { .affiliate-note { margin: 24px 24px 40px; } }

/* ============ ARTICLES-FEED ("Aus der Redaktion" auf Landings) ============ */
.articles-feed {
  position: relative; z-index: 2;
  max-width: 1320px;
  margin: 0 auto;
  padding: 32px 40px 56px;
}
@media (max-width: 768px) { .articles-feed { padding: 24px 24px 40px; } }
.articles-feed-head {
  display: flex; justify-content: space-between; align-items: baseline;
  margin-bottom: 28px;
  padding-bottom: 14px;
  border-bottom: 3px solid var(--ink);
  flex-wrap: wrap; gap: 12px;
}
.articles-feed-head h2 {
  font-family: var(--font-display);
  font-size: clamp(26px, 2.6vw, 36px);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--ink);
}
.articles-feed-head h2 em { font-style: normal; color: var(--tab-red); }
.articles-feed-head .more {
  font-family: var(--font-shout);
  font-size: 13px;
  letter-spacing: 0.08em;
  color: var(--graphite);
  background: var(--bone-2);
  padding: 6px 12px 5px;
}
.articles-feed-head .more:hover { background: var(--tab-red); color: #fff; }
/* Zeitungs-Aufmacher-Layout: erstes Item groß mit Bild, Rest schlanke Liste */
.articles-grid.with-feature {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 36px;
  border-top: 0;
}
@media (max-width: 880px) {
  .articles-grid.with-feature { grid-template-columns: 1fr; gap: 24px; }
}
.articles-grid.with-feature > .article-card.is-feature {
  display: block;
  padding: 0;
  border-bottom: 0;
  position: static;
}
.articles-grid.with-feature > .article-card.is-feature:hover { background: transparent; }
.articles-grid.with-feature > .article-card.is-feature .article-card-photo {
  display: block;
  aspect-ratio: 16 / 10;
  margin-bottom: 16px;
  overflow: hidden;
  background: var(--bone-2);
}
.articles-grid.with-feature > .article-card.is-feature .article-card-photo img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.5s ease;
}
.articles-grid.with-feature > .article-card.is-feature:hover .article-card-photo img { transform: scale(1.04); }
.articles-grid.with-feature > .article-card.is-feature h3 {
  font-size: clamp(24px, 2.4vw, 32px);
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 10px;
  max-width: none;
}
.articles-grid.with-feature > .article-card.is-feature p {
  font-size: 15px;
  line-height: 1.55;
  max-width: none;
}
.articles-grid.with-feature > .article-card.is-feature::after { display: none; }
.articles-grid.with-feature > .articles-list {
  display: block;
  border-top: 1px solid var(--line);
}

/* Schlanke Editorial-Liste — keine Bilder, klare Hairlines, Linear-Stack */
.articles-grid {
  display: block;
  border-top: 1px solid var(--line);
}
.article-card {
  display: block;
  position: relative;
  padding: 16px 40px 18px 0;
  border-bottom: 1px solid var(--line);
  text-decoration: none;
  color: inherit;
  transition: background 0.15s;
}
.article-card:hover { background: rgba(220,38,38,0.04); }
.article-card-photo { display: none; }
.article-card-eyebrow {
  font-family: var(--font-shout);
  font-size: 11px;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: var(--tab-red);
  display: block;
  margin-bottom: 6px;
}
.article-card-eyebrow .age {
  color: var(--smoke);
  font-weight: 400;
}
.article-card-eyebrow .age::before {
  content: ' · ';
  color: var(--smoke);
  font-weight: 400;
  margin: 0 4px;
  opacity: 0.7;
}
.article-card h3 {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: -0.012em;
  color: var(--ink);
  transition: color 0.18s;
  margin: 0 0 4px;
  max-width: 64ch;
}
.article-card:hover h3 { color: var(--tab-red); }
.article-card p {
  font-size: 13.5px;
  line-height: 1.5;
  color: var(--graphite);
  margin: 0;
  max-width: 70ch;
}
.article-card::after {
  content: '→';
  position: absolute;
  right: 8px;
  top: 50%;
  transform: translateY(-50%);
  font-family: var(--font-shout);
  font-size: 18px;
  color: var(--tab-red);
  transition: right 0.15s;
}
.article-card:hover::after { right: 4px; }
@media (max-width: 600px) {
  .article-card { padding-right: 24px; }
  .article-card::after { font-size: 14px; }
}

/* ============ ARTICLE-PAGE-Layout (Drop-Cap, Pull-Quote, Body) ============ */
.article-page-hero {
  max-width: 880px;
  margin: 0 auto;
  padding: 56px 40px 32px;
  position: relative;
  z-index: 2;
}
@media (max-width: 768px) { .article-page-hero { padding: 40px 24px 24px; } }
.article-meta {
  display: flex; gap: 12px; align-items: center; flex-wrap: wrap;
  margin-bottom: 22px;
}
.article-meta .stream-pill {
  background: var(--tab-red);
  color: #fff;
  font-family: var(--font-shout);
  font-size: 12px;
  letter-spacing: 0.10em;
  padding: 5px 11px 4px;
  text-transform: uppercase;
}
.article-meta .stream-pill.is-ki        { background: var(--olive); }
.article-meta .stream-pill.is-gruendung { background: var(--tab-red); }
.article-meta .stream-pill.is-branche   { background: var(--ink); }
.article-meta .age, .article-meta .read-time {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--smoke);
  letter-spacing: 0.04em;
}
.article-meta .age::before, .article-meta .read-time::before {
  content: '·'; margin-right: 8px; opacity: 0.5;
}

.article-page-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(36px, 4.6vw, 64px);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.024em;
  color: var(--ink);
  margin-bottom: 14px;
}
.article-page-hero h1 em {
  font-style: normal;
  background: var(--tab-yellow);
  color: var(--ink);
  padding: 0 8px;
}
.article-subtitle {
  font-family: var(--font-display);
  font-size: clamp(18px, 1.8vw, 22px);
  font-weight: 400;
  font-style: italic;
  line-height: 1.4;
  color: var(--graphite);
  margin-bottom: 0;
}

.article-page-photo {
  max-width: 1200px;
  margin: 0 auto 32px;
  padding: 0 40px;
}
@media (max-width: 768px) { .article-page-photo { padding: 0 24px; } }
.article-page-photo img {
  width: 100%;
  aspect-ratio: 21 / 10;
  object-fit: cover;
}

.article-body {
  max-width: 720px;
  margin: 0 auto;
  padding: 0 40px 56px;
  position: relative;
  z-index: 2;
}
@media (max-width: 768px) { .article-body { padding: 0 24px 40px; } }
.article-body p {
  font-family: var(--font-display);
  font-size: 19px;
  line-height: 1.7;
  color: var(--ink);
  margin-bottom: 18px;
}
.article-body p:first-of-type::first-letter {
  font-family: var(--font-display);
  font-size: 80px;
  font-weight: 700;
  line-height: 0.85;
  color: var(--tab-red);
  float: left;
  padding: 6px 12px 0 0;
  margin-top: 4px;
}
.article-body h2 {
  font-family: var(--font-display);
  font-size: clamp(24px, 2.6vw, 32px);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.018em;
  color: var(--ink);
  margin: 32px 0 14px;
}
.article-body h2 em {
  font-style: normal;
  background: var(--tab-yellow);
  color: var(--ink);
  padding: 0 6px;
}
.article-body h3 {
  font-family: var(--font-display);
  font-size: 21px;
  font-weight: 700;
  letter-spacing: -0.012em;
  color: var(--ink);
  margin: 24px 0 10px;
}
.article-body strong { color: var(--tab-red); font-weight: 700; }
.article-body ul, .article-body ol {
  margin: 0 0 18px 0;
  padding-left: 22px;
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
}
.article-body ul li, .article-body ol li {
  margin-bottom: 6px;
  color: var(--ink);
}
.article-body a:not(.affiliate-cta):not(.related-card) {
  color: var(--tab-red);
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 2px;
}
.article-body a:not(.affiliate-cta):hover { color: var(--ink); }

/* Pull-Quote */
.pull-quote {
  margin: 28px -20px;
  padding: 28px 32px;
  background: var(--ink);
  color: var(--bone);
  font-family: var(--font-display);
  font-size: clamp(22px, 2.4vw, 30px);
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: -0.018em;
  position: relative;
}
.pull-quote::before {
  content: '"';
  position: absolute;
  top: -12px; left: 16px;
  font-size: 96px;
  line-height: 1;
  color: var(--tab-yellow);
  font-family: var(--font-display);
}
.pull-quote em { font-style: normal; background: var(--tab-red); padding: 0 6px; }

/* Affiliate-Box im Artikel */
.affiliate-box {
  margin: 28px 0;
  padding: 24px 28px;
  background: var(--bone-2);
  border-left: 6px solid var(--tab-yellow);
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 20px;
  align-items: center;
}
@media (max-width: 600px) { .affiliate-box { grid-template-columns: 1fr; } }
.affiliate-box .label {
  font-family: var(--font-shout);
  font-size: 11px;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: var(--tab-red);
  display: block;
  margin-bottom: 4px;
}
.affiliate-box h3 {
  font-family: var(--font-display);
  font-size: 19px;
  font-weight: 700;
  color: var(--ink);
  margin: 0 0 4px;
  letter-spacing: -0.012em;
}
.affiliate-box p {
  font-family: var(--font-body);
  font-size: 14px;
  line-height: 1.5;
  color: var(--graphite);
  margin: 0;
}
.affiliate-cta {
  background: var(--ink);
  color: #fff !important;
  font-family: var(--font-shout);
  font-size: 14px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 12px 18px 11px;
  white-space: nowrap;
  text-decoration: none !important;
  box-shadow: 4px 4px 0 var(--tab-red);
  transition: transform 0.15s, box-shadow 0.15s, background 0.15s;
}
.affiliate-cta:hover {
  background: var(--tab-red);
  transform: translate(-2px, -2px);
  box-shadow: 6px 6px 0 var(--ink);
}

/* Verwandte Artikel am Ende — kompakter */
.article-related {
  max-width: 1200px;
  margin: 0 auto;
  padding: 24px 40px 40px;
}
@media (max-width: 768px) { .article-related { padding: 18px 24px 32px; } }
.article-related-head {
  border-top: 2px solid var(--ink);
  padding-top: 14px;
  margin-bottom: 18px;
}
.article-related-head h2 {
  font-family: var(--font-shout);
  font-size: 14px;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: var(--ink);
}
.article-related-head h2 em { font-style: normal; color: var(--tab-red); }
.article-related .articles-grid {
  gap: 20px;
}
