
/* =========================
   NEEB MAGAZINE ARTICLE
   komplett isoliert
========================= */

.neeb-magazine-article{
  max-width:900px;
  margin:0 auto;
  padding:60px 20px;
  font-family:system-ui,-apple-system,BlinkMacSystemFont,"Segoe UI",sans-serif;
  color:#0f172a;
  line-height:1.75;
  counter-reset:mag-section;
}

/* HERO */

.neeb-magazine-hero{
  position:relative;
  overflow:hidden;
  margin-bottom:52px;
  padding:38px;
  border-radius:32px;
  background:
    repeating-linear-gradient(120deg, rgba(255,255,255,.04) 0px, rgba(255,255,255,.04) 1px, transparent 1px, transparent 14px),
    radial-gradient(circle at top right, rgba(255,255,255,.14), transparent 42%),
    linear-gradient(135deg,#02131c 0%,#084863 58%,#0b6b8d 100%);
  color:#ffffff;
  box-shadow:0 30px 80px rgba(8,72,99,.22);
}

.neeb-magazine-kicker{
  display:inline-block;
  margin-bottom:14px;
  padding:7px 13px;
  border-radius:999px;
  background:rgba(255,255,255,.10);
  border:1px solid rgba(255,255,255,.16);
  color:#ffffff;
  font-size:12px;
  font-weight:800;
  text-transform:uppercase;
  letter-spacing:.07em;
}

.neeb-magazine-hero h1{
  margin:0 0 18px;
  max-width:820px;
  font-size:46px;
  line-height:1.06;
  letter-spacing:-.045em;
  color:#ffffff;
  font-weight:850;
}

.neeb-magazine-meta{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  margin-bottom:22px;
}

.neeb-magazine-meta span{
  padding:8px 12px;
  border-radius:999px;
  background:rgba(255,255,255,.10);
  border:1px solid rgba(255,255,255,.12);
  color:rgba(255,255,255,.78);
  font-size:13px;
  font-weight:600;
}

.neeb-magazine-intro{
  max-width:780px;
  margin:0;
  font-size:19px;
  line-height:1.75;
  color:rgba(255,255,255,.88);
}

/* TOC */

.neeb-magazine-toc{
  position:relative;
  overflow:hidden;
  margin:52px 0 68px;
  padding:32px;
  border-radius:30px;
  background:
    repeating-linear-gradient(120deg, rgba(255,255,255,.045) 0px, rgba(255,255,255,.045) 1px, transparent 1px, transparent 14px),
    radial-gradient(circle at top right, rgba(255,255,255,.14), transparent 42%),
    linear-gradient(135deg,#02131c 0%,#084863 58%,#0b6b8d 100%);
  box-shadow:0 30px 80px rgba(8,72,99,.22);
}

.neeb-magazine-toc strong{
  display:block;
  margin-bottom:20px;
  color:#ffffff;
  font-size:21px;
  line-height:1.2;
  letter-spacing:-.02em;
}

.neeb-magazine-toc ol{
  margin:0;
  padding:0;
  list-style:none;
  counter-reset:mag-toc;
  display:grid;
  grid-template-columns:1fr;
  gap:10px;
}

.neeb-magazine-toc li{
  margin:0;
  counter-increment:mag-toc;
}

.neeb-magazine-toc a{
  display:grid;
  grid-template-columns:40px 1fr;
  gap:12px;
  align-items:center;
  padding:12px 14px;
  border-radius:16px;
  background:rgba(255,255,255,.08);
  border:1px solid rgba(255,255,255,.12);
  color:rgba(255,255,255,.9) !important;
  text-decoration:none !important;
  border-bottom:none !important;
  font-size:15px;
  line-height:1.35;
  transition:.22s ease;
}

.neeb-magazine-toc a::before{
  content:counter(mag-toc);
  display:flex;
  align-items:center;
  justify-content:center;
  width:34px;
  height:34px;
  border-radius:12px;
  background:rgba(255,255,255,.14);
  color:#ffffff;
  font-size:13px;
  font-weight:850;
}

.neeb-magazine-toc a:hover,
.neeb-magazine-toc a.is-active{
  transform:translateY(-2px);
  background:#ffffff;
  color:#084863 !important;
}

.neeb-magazine-toc a:hover::before,
.neeb-magazine-toc a.is-active::before{
  background:#084863;
  color:#ffffff;
}

/* CONTENT */

.neeb-magazine-section{
  counter-increment:mag-section;
  margin-bottom:60px;
}

.neeb-magazine-section h2{
  position:relative;
  margin:0 0 18px;
  padding-left:50px;
  font-size:31px;
  line-height:1.16;
  letter-spacing:-.035em;
  color:#0f172a;
  font-weight:780;
}

.neeb-magazine-section h2::before{
  content:counter(mag-section);
  position:absolute;
  left:0;
  top:1px;
  display:flex;
  align-items:center;
  justify-content:center;
  width:36px;
  height:36px;
  border-radius:13px;
  background:linear-gradient(135deg,#084863,#0b6b8d);
  color:#ffffff;
  font-size:14px;
  font-weight:850;
  box-shadow:0 12px 28px rgba(8,72,99,.18);
}

.neeb-magazine-section p{
  margin:0 0 16px;
  font-size:17px;
  line-height:1.85;
  color:#334155;
}

.neeb-magazine-section ul{
  margin:18px 0 22px;
  padding:0;
  list-style:none;
  display:grid;
  gap:10px;
}

.neeb-magazine-section li{
  position:relative;
  padding-left:28px;
  font-size:16.5px;
  line-height:1.7;
  color:#334155;
}

.neeb-magazine-section li::before{
  content:"";
  position:absolute;
  left:0;
  top:.72em;
  width:9px;
  height:9px;
  border-radius:50%;
  background:#084863;
  box-shadow:0 0 0 5px rgba(8,72,99,.08);
}

/* IMAGES */

.neeb-magazine-image{
  display:block;
  width:100%;
  margin:56px 0 88px !important;
}

.neeb-magazine-image img{
  width:100%;
  display:block;
  border-radius:26px;
  box-shadow:0 28px 80px rgba(15,23,42,.14);
}

/* CTA */

.neeb-magazine-cta{
  position:relative;
  overflow:hidden;
  margin:56px 0;
  padding:32px;
  border-radius:28px;
  background:
    repeating-linear-gradient(120deg, rgba(255,255,255,.04) 0px, rgba(255,255,255,.04) 1px, transparent 1px, transparent 14px),
    radial-gradient(circle at top right, rgba(255,255,255,.14), transparent 42%),
    linear-gradient(135deg,#02131c 0%,#084863 58%,#0b6b8d 100%);
  color:#ffffff;
  box-shadow:0 28px 70px rgba(8,72,99,.24);
}

.neeb-magazine-cta strong{
  display:block;
  margin-bottom:10px;
  font-size:24px;
  line-height:1.18;
  letter-spacing:-.025em;
  color:#ffffff;
}

.neeb-magazine-cta p{
  margin:0 0 18px;
  color:rgba(255,255,255,.84);
  font-size:17px;
  line-height:1.7;
}

/* normale Glossar-/Textlinks in CTA */
.neeb-magazine-cta a{
  color:#ffffff !important;
  font-weight:700 !important;
  text-decoration:underline !important;
  text-decoration-thickness:2px !important;
  text-underline-offset:4px !important;
  background:transparent !important;
  padding:0 !important;
  border-radius:0 !important;
}

/* echter CTA Button */
.neeb-magazine-cta-button{
  display:inline-flex !important;
  align-items:center;
  justify-content:center;
  margin-top:14px;
  padding:14px 20px !important;
  border-radius:15px !important;
  background:#ffffff !important;
  color:#084863 !important;
  text-decoration:none !important;
  font-weight:850 !important;
  box-shadow:0 14px 34px rgba(0,0,0,.18);
  transition:.22s ease;
}

.neeb-magazine-cta-button:hover{
  transform:translateY(-2px);
}

/* FAZIT */

.neeb-magazine-fazit{
  padding:30px;
  border-radius:26px;
  background:
    radial-gradient(circle at top right, rgba(8,72,99,.08), transparent 42%),
    linear-gradient(180deg,#ffffff 0%,#f8fbfc 100%);
  border:1px solid rgba(8,72,99,.12);
  box-shadow:0 20px 54px rgba(15,23,42,.06);
}

/* SOURCES */

.neeb-magazine-sources{
  margin-top:74px;
  padding:28px;
  border-radius:24px;
  background:#ffffff;
  border:1px solid rgba(8,72,99,.12);
  box-shadow:0 18px 44px rgba(15,23,42,.045);
  color:#475569;
}

.neeb-magazine-sources h2{
  margin:0 0 18px;
  padding:0;
  font-size:24px;
  line-height:1.2;
  color:#0f172a;
}

.neeb-magazine-sources ol{
  margin:0;
  padding-left:20px;
}

.neeb-magazine-sources li{
  margin-bottom:12px;
  padding-left:0;
  font-size:14px;
  line-height:1.65;
  color:#475569;
}

/* LINKS */

.neeb-magazine-article a{
  pointer-events:auto !important;
}

.neeb-magazine-article section[id]{
  scroll-margin-top:110px;
}

.neeb-magazine-article a.glossary-link{
  color:#084863 !important;
  font-weight:800 !important;
  text-decoration:underline !important;
  text-decoration-thickness:2px !important;
  text-underline-offset:4px !important;
  border-bottom:none !important;
}

.neeb-magazine-cta a.glossary-link{
  color:#ffffff !important;
}

/* MOBILE */

@media(max-width:768px){

  .neeb-magazine-article{
    padding:38px 16px;
  }

  .neeb-magazine-hero{
    padding:24px 20px;
    border-radius:24px;
  }

  .neeb-magazine-hero h1{
    font-size:31px;
  }

  .neeb-magazine-intro{
    font-size:16px;
  }

  .neeb-magazine-meta{
    display:grid;
    gap:8px;
  }

  .neeb-magazine-toc{
    padding:24px 18px;
    border-radius:24px;
  }

  .neeb-magazine-toc a{
    grid-template-columns:36px 1fr;
    font-size:14.5px;
  }

  .neeb-magazine-section{
    margin-bottom:48px;
  }

  .neeb-magazine-section h2{
    font-size:24px;
    padding-left:42px;
  }

  .neeb-magazine-section h2::before{
    width:30px;
    height:30px;
    font-size:13px;
  }

  .neeb-magazine-section p,
  .neeb-magazine-section li{
    font-size:15.5px;
  }

  .neeb-magazine-image{
    margin:42px 0 64px !important;
  }

  .neeb-magazine-cta,
  .neeb-magazine-fazit,
  .neeb-magazine-sources{
    padding:22px;
    border-radius:22px;
  }

  .neeb-magazine-cta-button{
    width:100%;
  }
}
