/* =========================================================
   Nickolas Emrich — Lead-Butler-Website
   CI aus Buchcover "Der Preis unserer Toleranz":
   Akzent Lindgrün #C7E01A · Tiefschwarz #181716 · Weiß
   ========================================================= */

/* ---------- Fonts (lokal, DSGVO) ---------- */
@font-face{font-family:'Archivo';font-style:normal;font-weight:700;font-display:swap;src:url('/fonts/archivo-700.woff2') format('woff2');}
@font-face{font-family:'Archivo';font-style:normal;font-weight:800;font-display:swap;src:url('/fonts/archivo-800.woff2') format('woff2');}
@font-face{font-family:'Inter';font-style:normal;font-weight:400;font-display:swap;src:url('/fonts/inter-400.woff2') format('woff2');}
@font-face{font-family:'Inter';font-style:normal;font-weight:600;font-display:swap;src:url('/fonts/inter-600.woff2') format('woff2');}
@font-face{font-family:'Inter';font-style:normal;font-weight:700;font-display:swap;src:url('/fonts/inter-700.woff2') format('woff2');}

/* ---------- Variablen ---------- */
:root{
  --color-accent:#C7E01A;
  --color-accent-dark:#a9bf12;
  --color-dark:#181716;
  --color-bg:#ffffff;
  --color-soft:#f4f5f0;
  --color-text:#1f1f1d;
  --color-muted:#5c5c57;
  --color-primary:#181716;
  --max-width:1180px;
  --read-width:720px;
  --font-head:'Archivo',system-ui,sans-serif;
  --font-body:'Inter',system-ui,sans-serif;
}

*{box-sizing:border-box;}
html{scroll-behavior:smooth;}
body{
  margin:0;font-family:var(--font-body);color:var(--color-text);
  background:var(--color-bg);line-height:1.6;font-size:17px;
  -webkit-font-smoothing:antialiased;
}
h1,h2,h3{font-family:var(--font-head);font-weight:800;line-height:1.08;letter-spacing:-.01em;margin:0 0 .5em;}
p{margin:0 0 1em;}
a{color:inherit;}
img{max-width:100%;height:auto;display:block;}
.container{max-width:var(--max-width);margin:0 auto;padding:0 24px;}

/* ---------- Buttons ---------- */
.btn{
  display:inline-block;font-family:var(--font-head);font-weight:800;
  text-transform:uppercase;letter-spacing:.02em;font-size:16px;
  padding:16px 30px;border-radius:6px;text-decoration:none;cursor:pointer;
  transition:transform .15s ease,background .15s ease;border:0;
}
.btn-primary{background:var(--color-accent);color:var(--color-dark);}
.btn-primary:hover{background:#d4ee2c;transform:translateY(-2px);}
.btn-ghost{background:transparent;color:var(--color-dark);border:2px solid var(--color-dark);}
.btn-ghost:hover{background:var(--color-dark);color:#fff;}
.btn-on-dark{background:var(--color-accent);color:var(--color-dark);}
.btn-on-dark:hover{background:#d4ee2c;transform:translateY(-2px);}

/* ---------- Header ---------- */
.site-header{
  position:sticky;top:0;z-index:1100;background:rgba(255,255,255,.94);
  backdrop-filter:saturate(180%) blur(8px);border-bottom:1px solid #ececec;
}
.header-inner{max-width:var(--max-width);margin:0 auto;padding:14px 24px;display:flex;align-items:center;justify-content:space-between;gap:24px;}
.brand{font-family:var(--font-head);font-weight:800;font-size:20px;letter-spacing:.04em;text-transform:uppercase;text-decoration:none;color:var(--color-dark);}
.desktop-nav{display:none;align-items:center;gap:28px;}
.desktop-nav a{text-decoration:none;color:var(--color-text);font-weight:600;font-size:15px;}
.desktop-nav a:hover{color:var(--color-accent-dark);}
.header-cta{display:none;}
@media(min-width:880px){
  .desktop-nav{display:flex;}
  .header-cta{display:inline-block;}
}

/* ---------- Hero ---------- */
.hero{background:var(--color-dark);color:#fff;padding:72px 0 80px;}
.hero-grid{display:grid;grid-template-columns:1fr;gap:40px;align-items:center;}
.hero-eyebrow{font-family:var(--font-head);font-weight:700;text-transform:uppercase;letter-spacing:.14em;font-size:13px;color:var(--color-accent);margin-bottom:18px;}
.hero h1{font-size:clamp(34px,7vw,60px);color:#fff;}
.hero h1 .hl{color:var(--color-accent);}
.hero-sub{font-size:clamp(17px,2.4vw,20px);color:rgba(255,255,255,.82);max-width:34ch;margin:18px 0 28px;}
.hero-actions{display:flex;flex-wrap:wrap;gap:16px;align-items:center;}
.hero-meta{margin-top:26px;font-size:14px;color:rgba(255,255,255,.6);}
.hero-cover{justify-self:center;}
.hero-cover img{width:min(330px,80vw);border-radius:4px;box-shadow:0 30px 60px rgba(0,0,0,.55);}
@media(min-width:880px){
  .hero-grid{grid-template-columns:1.15fr .85fr;gap:56px;}
  .hero-cover img{width:360px;}
}

/* ---------- Sektionen ---------- */
section{padding:72px 0;}
.section-soft{background:var(--color-soft);}
.section-dark{background:var(--color-dark);color:#fff;}
.section-dark h2{color:#fff;}
.eyebrow{font-family:var(--font-head);font-weight:700;text-transform:uppercase;letter-spacing:.14em;font-size:13px;color:var(--color-accent-dark);margin-bottom:14px;}
.section-dark .eyebrow{color:var(--color-accent);}
h2.section-title{font-size:clamp(28px,4.4vw,42px);max-width:18ch;}
.lead{font-size:19px;color:var(--color-muted);max-width:62ch;}
.section-dark .lead{color:rgba(255,255,255,.8);}

/* Pain-Cards */
.cards{display:grid;grid-template-columns:1fr;gap:22px;margin-top:38px;}
@media(min-width:760px){.cards{grid-template-columns:repeat(3,1fr);}}
.card{background:#fff;border:1px solid #e7e7e2;border-radius:10px;padding:28px;}
.section-soft .card{background:#fff;}
.card h3{font-size:20px;}
.card p{margin:0;color:var(--color-muted);font-size:16px;}
.card .ic{width:42px;height:42px;border-radius:8px;background:var(--color-accent);display:flex;align-items:center;justify-content:center;margin-bottom:16px;font-family:var(--font-head);font-weight:800;color:var(--color-dark);}

/* Lösung-Liste */
.checklist{list-style:none;padding:0;margin:32px 0 0;display:grid;gap:18px;}
.checklist li{display:flex;gap:14px;align-items:flex-start;font-size:17px;}
.checklist li::before{content:"";flex:0 0 12px;width:12px;height:12px;margin-top:8px;border-radius:3px;background:var(--color-accent);}

/* Beweis / Stats */
.proof-quote{max-width:60ch;font-family:var(--font-head);font-weight:700;font-size:clamp(20px,3vw,28px);line-height:1.3;}
.proof-quote cite{display:block;font-family:var(--font-body);font-weight:600;font-size:15px;color:rgba(255,255,255,.65);font-style:normal;margin-top:18px;}
.stats{display:grid;grid-template-columns:repeat(2,1fr);gap:28px;margin-top:48px;}
@media(min-width:760px){.stats{grid-template-columns:repeat(3,1fr);}}
.stat .num{font-family:var(--font-head);font-weight:800;font-size:clamp(34px,5vw,48px);color:var(--color-accent);line-height:1;}
.stat .lbl{font-size:15px;color:rgba(255,255,255,.78);margin-top:10px;}

/* Angebot / Vorbestellen */
.offer-grid{display:grid;grid-template-columns:1fr;gap:40px;align-items:center;}
@media(min-width:880px){.offer-grid{grid-template-columns:.8fr 1.2fr;}}
.offer-cover img{width:min(300px,70vw);border-radius:4px;box-shadow:0 24px 50px rgba(0,0,0,.5);margin:0 auto;}
.offer ul{list-style:none;padding:0;margin:24px 0 30px;display:grid;gap:12px;}
.offer li{display:flex;gap:12px;align-items:flex-start;color:rgba(255,255,255,.85);}
.offer li::before{content:"›";color:var(--color-accent);font-weight:800;font-family:var(--font-head);}
.isbn{font-size:14px;color:rgba(255,255,255,.55);margin-top:18px;}

/* FAQ */
.faq{max-width:var(--read-width);margin:38px auto 0;}
.faq details{border-bottom:1px solid #e3e3de;padding:8px 0;}
.faq summary{cursor:pointer;list-style:none;font-family:var(--font-head);font-weight:700;font-size:19px;padding:16px 40px 16px 0;position:relative;}
.faq summary::-webkit-details-marker{display:none;}
.faq summary::after{content:"+";position:absolute;right:6px;top:14px;font-size:26px;color:var(--color-accent-dark);transition:transform .2s ease;}
.faq details[open] summary::after{transform:rotate(45deg);}
.faq details p{color:var(--color-muted);margin:0 0 16px;}

/* Finaler CTA */
.final-cta{text-align:center;}
.final-cta h2{font-size:clamp(28px,5vw,46px);max-width:20ch;margin:0 auto .4em;}
.final-cta p{color:rgba(255,255,255,.8);max-width:52ch;margin:0 auto 30px;}

/* ---------- Generische Seiten (Über, Bücher, Presse, Magazin) ---------- */
.page-hero{background:var(--color-dark);color:#fff;padding:64px 0 56px;}
.page-hero h1{color:#fff;font-size:clamp(30px,5vw,46px);}
.page-hero p{color:rgba(255,255,255,.78);max-width:60ch;}
.prose{max-width:var(--read-width);margin:0 auto;}
.prose p{font-size:18px;}
.prose h2{font-size:28px;margin-top:40px;}

/* Über */
.about-grid{display:grid;grid-template-columns:1fr;gap:40px;}
@media(min-width:820px){.about-grid{grid-template-columns:.7fr 1.3fr;align-items:start;}}
.about-card{background:var(--color-soft);border-radius:12px;padding:28px;}
.about-card h3{font-size:18px;margin-bottom:14px;}
.about-card ul{list-style:none;padding:0;margin:0;display:grid;gap:10px;font-size:15px;color:var(--color-muted);}

/* Bücher-Grid */
.book-grid{display:grid;grid-template-columns:1fr;gap:20px;margin-top:8px;}
@media(min-width:640px){.book-grid{grid-template-columns:repeat(2,1fr);}}
.book{display:flex;gap:18px;background:#fff;border:1px solid #e7e7e2;border-radius:10px;padding:22px;align-items:flex-start;}
.book .badge{flex:0 0 auto;font-family:var(--font-head);font-weight:800;font-size:13px;background:var(--color-accent);color:var(--color-dark);padding:4px 8px;border-radius:5px;}
.book h3{font-size:18px;margin:0 0 6px;}
.book .yr{font-size:14px;color:var(--color-muted);}
.book a{font-weight:600;color:var(--color-accent-dark);text-decoration:none;font-size:15px;}
.book a:hover{text-decoration:underline;}

/* Presse */
.press-block{display:grid;grid-template-columns:1fr;gap:28px;}
@media(min-width:820px){.press-block{grid-template-columns:1fr 1fr;}}
.press-list{list-style:none;padding:0;margin:0;display:grid;gap:14px;}
.press-list a{display:block;background:var(--color-soft);border-radius:8px;padding:18px 20px;text-decoration:none;font-weight:600;}
.press-list a:hover{background:#eceee5;}
.press-list span{display:block;font-weight:400;font-size:14px;color:var(--color-muted);margin-top:4px;}
.asset-box,.contact-box{background:var(--color-soft);border-radius:12px;padding:26px;}
.download-btn{display:inline-block;margin-top:8px;font-weight:600;color:var(--color-accent-dark);text-decoration:none;}

/* Magazin */
.mag-grid{display:grid;grid-template-columns:1fr;gap:22px;margin-top:8px;}
@media(min-width:760px){.mag-grid{grid-template-columns:repeat(2,1fr);}}
.mag-card{background:var(--color-soft);border-radius:12px;padding:28px;border:1px dashed #cfcfc6;}
.mag-card h3{font-size:19px;}
.mag-card .kw{font-size:13px;color:var(--color-muted);margin-top:10px;}
.mag-empty{text-align:center;color:var(--color-muted);background:var(--color-soft);border-radius:12px;padding:40px 24px;margin-top:24px;}

/* ---------- Hamburger (Pflicht-Snippet) ---------- */
.hamburger{z-index:1100;position:relative;background:transparent;border:0;width:44px;height:44px;cursor:pointer;padding:0;}
.menu-overlay{z-index:1000;}
.mobile-menu{z-index:1050;}
.hamburger span{display:block;width:24px;height:2px;background:var(--color-text,#1a1a1a);margin:6px auto;transition:transform .3s ease,opacity .3s ease;border-radius:2px;}
.hamburger.active span:nth-child(1){transform:translateY(8px) rotate(45deg);}
.hamburger.active span:nth-child(2){opacity:0;}
.hamburger.active span:nth-child(3){transform:translateY(-8px) rotate(-45deg);}
.menu-overlay{position:fixed;inset:0;background:rgba(0,0,0,.5);opacity:0;visibility:hidden;transition:opacity .3s ease,visibility .3s ease;}
.menu-overlay.active{opacity:1;visibility:visible;}
.mobile-menu{position:fixed;top:0;right:0;width:min(80vw,360px);height:100vh;background:var(--color-bg,#fff);transform:translateX(100%);transition:transform .3s ease;padding:80px 32px 32px;}
.mobile-menu.open{transform:translateX(0);}
.mobile-menu ul{list-style:none;padding:0;margin:0;}
.mobile-menu li{margin-bottom:16px;}
.mobile-menu a{font-size:20px;text-decoration:none;color:var(--color-text);font-family:var(--font-head);font-weight:700;}
@media(min-width:880px){.hamburger,.mobile-menu,.menu-overlay{display:none;}}

/* ---------- Footer (Pflicht-Snippet) ---------- */
.site-footer{background:#1a1a1a;color:rgba(255,255,255,.85);padding:48px 24px 32px;margin-top:0;}
.footer-inner{max-width:1200px;margin:0 auto;display:flex;flex-wrap:wrap;gap:24px;align-items:center;justify-content:space-between;font-size:14px;}
.footer-nav ul{list-style:none;padding:0;margin:0;display:flex;gap:24px;flex-wrap:wrap;}
.footer-nav a,.footer-service a{color:inherit;text-decoration:none;}
.footer-nav a:hover,.footer-service a:hover{color:var(--color-accent);}
.copyright{margin:0;}
.footer-social{display:flex;gap:16px;align-items:center;}
.footer-social a{color:rgba(255,255,255,.7);display:inline-flex;align-items:center;justify-content:center;width:32px;height:32px;border-radius:50%;transition:color .2s ease,background .2s ease;}
.footer-social a:hover{color:#fff;background:rgba(255,255,255,.1);}
.footer-social svg{display:block;}
.footer-service a{font-size:13px;opacity:.75;}

/* ---------- Legal-Seiten ---------- */
body.legal-page main{max-width:var(--max-width);margin:0 auto;padding:48px 20px 64px;}
body.legal-page main h1{margin:0 0 24px;font-size:clamp(28px,4vw,40px);line-height:1.2;}
body.legal-page main [id^="easyrecht-"]{font-size:1rem;line-height:1.6;}
body.legal-page main [id^="easyrecht-"] h2,body.legal-page main [id^="easyrecht-"] h3{margin-top:32px;margin-bottom:12px;}
body.legal-page main [id^="easyrecht-"] p,body.legal-page main [id^="easyrecht-"] ul,body.legal-page main [id^="easyrecht-"] ol{margin-bottom:16px;}
body.legal-page main [id^="easyrecht-"] a{color:var(--color-primary);text-decoration:underline;word-break:break-word;}
@media(max-width:768px){body.legal-page main{padding:32px 16px 48px;}}

/* =========================================================
   Erweiterung — 3D-Cover mit Glow, Cover-Grid, Portrait, Pressebilder
   ========================================================= */

/* ---------- 3D-Buch mit Akzent-Glow ---------- */
.cover3d{position:relative;display:inline-block;perspective:1600px;}
.cover3d .glow{
  position:absolute;inset:-22% -16%;z-index:0;pointer-events:none;
  background:radial-gradient(closest-side,rgba(199,224,26,.55),rgba(199,224,26,0) 70%);
  filter:blur(34px);
}
.cover3d figure{
  position:relative;z-index:1;margin:0;transform-style:preserve-3d;
  transform:rotateY(-23deg);
  transition:transform .6s cubic-bezier(.2,.7,.2,1);
}
.cover3d:hover figure{transform:rotateY(-7deg);}
.cover3d figure img{
  display:block;border-radius:2px 5px 5px 2px;
  box-shadow:6px 18px 44px rgba(0,0,0,.55);
}
/* Seiten-/Blockschnitt rechts */
.cover3d figure::before{
  content:"";position:absolute;top:2px;bottom:2px;right:0;width:24px;
  background:repeating-linear-gradient(90deg,#e7e7e1 0,#ffffff 1px,#d8d8d0 3px);
  transform:translateX(24px) rotateY(78deg);transform-origin:left center;
  border-radius:0 3px 3px 0;box-shadow:2px 0 6px rgba(0,0,0,.2);
}
/* Bund-/Rückenschatten links */
.cover3d figure::after{
  content:"";position:absolute;top:0;bottom:0;left:0;width:16%;z-index:2;
  background:linear-gradient(90deg,rgba(0,0,0,.32),rgba(0,0,0,0));
  border-radius:2px 0 0 2px;pointer-events:none;
}
@media(max-width:880px){.cover3d figure{transform:rotateY(-15deg);}}

.hero-cover .cover3d figure img{width:min(330px,76vw);}
@media(min-width:880px){.hero-cover .cover3d figure img{width:360px;}}
.offer-cover .cover3d figure img{width:min(290px,66vw);}

/* ---------- Bücher-Grid mit echten Covern ---------- */
.book-grid{display:grid;grid-template-columns:repeat(2,1fr);gap:24px;margin-top:8px;}
@media(min-width:680px){.book-grid{grid-template-columns:repeat(3,1fr);}}
@media(min-width:1000px){.book-grid{grid-template-columns:repeat(4,1fr);}}
.book{
  position:relative;display:flex;flex-direction:column;text-align:center;
  background:#fff;border:1px solid #e7e7e2;border-radius:14px;padding:24px 20px;
  transition:transform .2s ease,box-shadow .2s ease;
}
.book:hover{transform:translateY(-5px);box-shadow:0 20px 44px rgba(0,0,0,.13);}
.book .cover-wrap{margin:0 auto 18px;display:block;}
.book .cover-wrap img{
  width:148px;border-radius:3px;
  box-shadow:0 14px 32px rgba(0,0,0,.22);transition:box-shadow .2s ease;
}
.book:hover .cover-wrap img{box-shadow:0 20px 40px rgba(0,0,0,.3);}
.book h3{font-size:16px;margin:0 0 6px;line-height:1.22;}
.book .yr{font-size:13px;color:var(--color-muted);margin:0 0 16px;}
.book .book-link{margin-top:auto;font-weight:700;color:var(--color-accent-dark);text-decoration:none;font-size:14px;}
.book .book-link:hover{text-decoration:underline;}
.book .badge{
  position:absolute;top:0;left:50%;transform:translate(-50%,-50%);
  font-family:var(--font-head);font-weight:800;font-size:11px;letter-spacing:.06em;
  text-transform:uppercase;background:var(--color-accent);color:var(--color-dark);
  padding:5px 12px;border-radius:20px;box-shadow:0 6px 16px rgba(0,0,0,.18);
}

/* ---------- Über: Portrait + Timeline ---------- */
.about-top{display:grid;grid-template-columns:1fr;gap:34px;align-items:start;margin-bottom:8px;}
@media(min-width:780px){.about-top{grid-template-columns:300px 1fr;gap:48px;align-items:center;}}
.portrait img{width:100%;border-radius:16px;box-shadow:0 26px 54px rgba(0,0,0,.2);}
.portrait-ph{
  aspect-ratio:3/4;border-radius:16px;
  background:radial-gradient(120% 120% at 30% 20%,#2c2b27,#161513);
  display:flex;flex-direction:column;align-items:center;justify-content:center;
  box-shadow:0 26px 54px rgba(0,0,0,.2);
}
.portrait-ph .mono{font-family:var(--font-head);font-weight:800;font-size:72px;color:var(--color-accent);letter-spacing:.03em;line-height:1;}
.portrait-ph .cap{font-size:13px;color:rgba(255,255,255,.62);margin-top:14px;letter-spacing:.04em;}
.portrait .credit{font-size:12px;color:var(--color-muted);margin:10px 0 0;text-align:center;}

.timeline{margin:20px 0 0;border-left:2px solid #e3e3de;padding:0 0 0 26px;display:grid;gap:24px;list-style:none;}
.timeline li{position:relative;}
.timeline li::before{content:"";position:absolute;left:-33px;top:5px;width:12px;height:12px;border-radius:50%;background:var(--color-accent);border:2px solid #fff;box-shadow:0 0 0 2px #e3e3de;}
.timeline .yr{display:block;font-family:var(--font-head);font-weight:800;font-size:14px;color:var(--color-accent-dark);letter-spacing:.04em;margin-bottom:2px;}
.timeline .ev{font-size:16px;color:var(--color-text);}

/* ---------- Pressebilder ---------- */
.press-images{display:grid;grid-template-columns:repeat(2,1fr);gap:20px;margin-top:24px;}
@media(min-width:720px){.press-images{grid-template-columns:repeat(3,1fr);}}
.press-img{background:#fff;border:1px solid #e7e7e2;border-radius:12px;padding:18px;text-align:center;display:flex;flex-direction:column;}
.press-img img{width:100%;max-width:150px;margin:0 auto 14px;border-radius:3px;box-shadow:0 12px 28px rgba(0,0,0,.16);}
.press-img .ph{
  width:100%;max-width:150px;aspect-ratio:3/4;margin:0 auto 14px;border-radius:6px;
  background:radial-gradient(120% 120% at 30% 20%,#2c2b27,#161513);
  display:flex;flex-direction:column;align-items:center;justify-content:center;
}
.press-img .ph .mono{font-family:var(--font-head);font-weight:800;font-size:40px;color:var(--color-accent);}
.press-img .ph .cap{font-size:11px;color:rgba(255,255,255,.6);margin-top:8px;padding:0 8px;}
.press-img .nm{font-size:14px;font-weight:600;margin:0 0 4px;}
.press-img .meta{font-size:12px;color:var(--color-muted);margin:0 0 12px;}
.press-img .dl{margin-top:auto;font-size:13px;font-weight:700;color:var(--color-accent-dark);text-decoration:none;}
.press-img .dl:hover{text-decoration:underline;}

/* ---------- PM-Fließtext ---------- */
.prose .pm-meta{font-size:14px;color:var(--color-muted);margin-bottom:24px;}
.prose blockquote{margin:28px 0;padding:18px 24px;border-left:3px solid var(--color-accent);background:var(--color-soft);border-radius:0 8px 8px 0;font-size:18px;}
.prose .boiler{margin-top:40px;padding-top:24px;border-top:1px solid #e3e3de;font-size:15px;color:var(--color-muted);}

/* =========================================================
   Magazin — typografische Header & Artikel (keine Fotos)
   ========================================================= */

/* Übersicht: Typo-Kacheln */
.mag-grid{display:grid;grid-template-columns:1fr;gap:22px;margin-top:8px;}
@media(min-width:720px){.mag-grid{grid-template-columns:repeat(2,1fr);}}
.mag-tile{
  position:relative;display:flex;flex-direction:column;text-decoration:none;
  background:var(--color-dark);color:#fff;border-radius:16px;padding:32px;
  min-height:210px;overflow:hidden;transition:transform .2s ease,box-shadow .2s ease;
}
.mag-tile:hover{transform:translateY(-5px);box-shadow:0 22px 46px rgba(0,0,0,.22);}
.mag-tile .no{
  position:absolute;top:2px;right:18px;font-family:var(--font-head);font-weight:800;
  font-size:120px;line-height:1;color:rgba(199,224,26,.14);pointer-events:none;letter-spacing:-.04em;
}
.mag-tile .kicker{position:relative;z-index:1;font-family:var(--font-head);font-weight:700;text-transform:uppercase;letter-spacing:.12em;font-size:12px;color:var(--color-accent);margin-bottom:12px;}
.mag-tile h3{position:relative;z-index:1;color:#fff;font-size:22px;margin:0;line-height:1.18;}
.mag-tile p{position:relative;z-index:1;color:rgba(255,255,255,.72);font-size:15px;margin:14px 0 0;}
.mag-tile .rd{position:relative;z-index:1;margin-top:auto;padding-top:20px;color:var(--color-accent);font-weight:700;font-size:14px;}

/* Artikel-Header: Typobild */
.mag-hero{position:relative;background:var(--color-dark);color:#fff;padding:78px 0 64px;overflow:hidden;}
.mag-hero .container{position:relative;z-index:1;}
.mag-hero .watermark{
  position:absolute;right:-3%;bottom:-22%;z-index:0;pointer-events:none;
  font-family:var(--font-head);font-weight:800;font-size:clamp(200px,36vw,440px);
  line-height:.78;color:rgba(199,224,26,.10);letter-spacing:-.05em;
}
.mag-hero .kicker{font-family:var(--font-head);font-weight:700;text-transform:uppercase;letter-spacing:.14em;font-size:13px;color:var(--color-accent);margin-bottom:18px;}
.mag-hero h1{color:#fff;font-size:clamp(32px,6vw,54px);max-width:20ch;}
.mag-hero .meta{color:rgba(255,255,255,.6);font-size:14px;margin-top:20px;}

/* Artikel-Körper */
.article{max-width:var(--read-width);margin:0 auto;}
.article p{font-size:18px;}
.article h2{font-size:26px;margin-top:42px;}
.article .lead-in{font-size:21px;line-height:1.5;color:var(--color-text);}
.article .pullquote{
  font-family:var(--font-head);font-weight:800;font-size:clamp(22px,3.6vw,32px);line-height:1.22;
  color:var(--color-dark);border-left:5px solid var(--color-accent);padding:4px 0 4px 24px;margin:40px 0;
}
.article .statline{
  display:flex;gap:20px;align-items:center;margin:34px 0;padding:24px 26px;
  background:var(--color-soft);border-radius:12px;
}
.article .statline .big{font-family:var(--font-head);font-weight:800;font-size:clamp(36px,7vw,58px);color:var(--color-accent-dark);line-height:1;flex:0 0 auto;}
.article .statline .txt{font-size:16px;color:var(--color-muted);}
.article .cta-box{
  margin:48px 0 0;padding:34px;background:var(--color-dark);border-radius:16px;text-align:center;
}
.article .cta-box p{color:rgba(255,255,255,.82);max-width:46ch;margin:0 auto 22px;}
.article .cta-box .eyebrow{color:var(--color-accent);}
.article .back{display:inline-block;margin-top:28px;font-weight:600;color:var(--color-accent-dark);text-decoration:none;}

/* =========================================================
   Social-Media-Mockup (LinkedIn / Instagram)
   ========================================================= */
.social-intro{max-width:620px;margin:0 auto 8px;}
.social-group{max-width:600px;margin:0 auto;}
.social-group .grp{margin:54px 0 4px;}
.social-group .grp .gk{font-family:var(--font-head);font-weight:700;text-transform:uppercase;letter-spacing:.12em;font-size:12px;color:var(--color-accent-dark);}
.social-group .grp h2{font-size:21px;margin:6px 0 0;}

.li-post{background:#fff;border:1px solid #e3e3de;border-radius:12px;margin:16px auto 6px;max-width:600px;box-shadow:0 1px 4px rgba(0,0,0,.09);overflow:hidden;}
.li-head{display:flex;align-items:flex-start;gap:10px;padding:14px 16px 0;}
.li-ava{width:48px;height:48px;border-radius:50%;object-fit:cover;flex:0 0 auto;}
.li-id{flex:1;min-width:0;}
.li-id .nm{font-weight:700;font-size:14px;color:#1a1a1a;}
.li-id .ti{font-size:12px;color:#5e5e5e;line-height:1.35;}
.li-id .mt{font-size:12px;color:#5e5e5e;}
.li-follow{color:#0a66c2;font-weight:700;font-size:14px;white-space:nowrap;flex:0 0 auto;}
.li-body{padding:12px 16px;font-size:14px;line-height:1.55;color:#1a1a1a;white-space:pre-line;}
.li-body .htag{color:#0a66c2;}

.li-media{position:relative;background:var(--color-dark);color:#fff;aspect-ratio:1/1;display:flex;flex-direction:column;justify-content:center;padding:38px 34px;overflow:hidden;}
.li-media .wm{position:absolute;right:-2%;bottom:-16%;font-family:var(--font-head);font-weight:800;font-size:300px;line-height:.75;color:rgba(199,224,26,.12);letter-spacing:-.05em;pointer-events:none;}
.li-media .k{position:relative;z-index:1;color:var(--color-accent);font-family:var(--font-head);font-weight:700;text-transform:uppercase;letter-spacing:.12em;font-size:13px;}
.li-media .h{position:relative;z-index:1;font-family:var(--font-head);font-weight:800;font-size:clamp(26px,6vw,34px);line-height:1.1;margin-top:14px;max-width:15ch;}
.li-media .foot{position:absolute;left:34px;right:34px;bottom:26px;display:flex;align-items:center;gap:12px;z-index:1;}
.li-media .foot img{width:38px;border-radius:2px;box-shadow:0 6px 16px rgba(0,0,0,.5);}
.li-media .foot .bt{font-size:12px;color:rgba(255,255,255,.88);line-height:1.3;}
.li-actions{display:flex;justify-content:space-around;border-top:1px solid #eee;padding:8px 0;color:#5e5e5e;font-size:13px;font-weight:600;}

.li-copy{max-width:600px;margin:0 auto 4px;}
.li-copy summary{cursor:pointer;font-size:13px;color:var(--color-accent-dark);font-weight:700;padding:6px 0;}
.li-copy pre{white-space:pre-wrap;background:var(--color-soft);border:1px solid #e3e3de;border-radius:8px;padding:16px;font-size:13px;line-height:1.55;font-family:ui-monospace,Menlo,Consolas,monospace;color:#1f1f1d;margin:8px 0 0;}
.social-note{max-width:600px;margin:6px auto 0;font-size:13px;color:var(--color-muted);}

/* ===== Druck: jede Post-Karte eine eigene Seite ===== */
@media print{
  @page{ size:A4 portrait; margin:9mm; }
  body{ background:#fff; }
  .site-header,.site-footer,.menu-overlay,.mobile-menu,.page-hero,
  .social-intro,.social-note,.social-group .grp,.li-copy{ display:none !important; }
  section{ padding:0 !important; }
  .container{ padding:0 !important; max-width:none !important; }
  .social-group{ max-width:none; margin:0; }
  .li-post{
    width:112mm; max-width:112mm; margin:0 auto !important;
    box-shadow:none !important; border:1px solid #d8d8d2 !important;
    break-before:page; break-inside:avoid;
  }
  .li-post.li-first{ break-before:avoid; }
  .li-body{ font-size:13px; line-height:1.5; }
  *{ -webkit-print-color-adjust:exact !important; print-color-adjust:exact !important; }
}
