/* PlanB Ratgeber: gemeinsames Stylesheet für alle Artikel-Seiten */
:root {
  --bg:      #0A0F1F;
  --bg-2:    #0B1426;
  --card:    #111A30;
  --blue:    #2C7BE5;
  --blue-hi: #4FA0F5;
  --blue-lo: #1E5FBF;
  --glow:    #6FB6F7;
  --text:    #EEF2F8;
  --muted:   #9FB2CE;
  --muted-2: #5E8FC4;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', system-ui, sans-serif;
  color: var(--text);
  background:
    radial-gradient(60% 40% at 50% 0%, rgba(47,123,229,0.14), transparent 70%),
    linear-gradient(180deg, var(--bg) 0%, var(--bg-2) 60%, var(--bg) 100%);
  background-attachment: fixed;
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
}

header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px clamp(20px, 5vw, 56px);
  border-bottom: 1px solid rgba(111,182,247,0.08);
}
header img { height: 46px; width: auto; display: block; }
header nav { display: flex; align-items: center; gap: 24px; }
header nav a {
  color: var(--muted);
  text-decoration: none;
  font-size: 14px;
}
header nav a:hover { color: var(--text); }
.nav-cta {
  padding: 9px 20px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--blue-lo), var(--blue-hi));
  color: #fff !important;
  font-weight: 500;
  box-shadow: 0 6px 20px rgba(47,123,229,0.35);
}

main {
  max-width: 760px;
  margin: 0 auto;
  padding: 60px clamp(20px, 5vw, 40px) 40px;
}

.kicker {
  font-size: 12px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--muted-2);
  margin-bottom: 16px;
}

h1 {
  font-family: 'Cinzel', serif;
  font-weight: 600;
  font-size: clamp(1.8rem, 5vw, 2.7rem);
  line-height: 1.2;
  letter-spacing: 0.5px;
  background: linear-gradient(180deg, #ffffff 0%, #cfe0f7 60%, var(--glow) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin-bottom: 18px;
}

.lead {
  font-size: 1.1rem;
  color: var(--muted);
  font-weight: 300;
  margin-bottom: 40px;
}

article h2 {
  font-family: 'Cinzel', serif;
  font-weight: 600;
  font-size: clamp(1.25rem, 3vw, 1.6rem);
  color: var(--text);
  margin: 44px 0 14px;
  letter-spacing: 0.5px;
}
article h3 {
  font-size: 1.05rem;
  color: var(--text);
  margin: 28px 0 10px;
}
article p { color: var(--muted); font-weight: 300; margin-bottom: 16px; }
article ul, article ol { color: var(--muted); font-weight: 300; margin: 0 0 16px 22px; }
article li { margin-bottom: 8px; }
article strong { color: var(--text); font-weight: 600; }
article a { color: var(--glow); }

.hinweis {
  border: 1px solid rgba(111,182,247,0.2);
  border-left: 3px solid var(--blue);
  border-radius: 10px;
  background: rgba(17,26,48,0.6);
  padding: 16px 20px;
  margin: 24px 0;
  font-size: 0.95rem;
  color: var(--muted);
}

/* CTA-Box am Artikel-Ende */
.cta-box {
  margin: 56px 0 20px;
  padding: 36px 30px;
  text-align: center;
  border: 1px solid rgba(111,182,247,0.2);
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(17,26,48,0.9), rgba(13,20,38,0.9));
}
.cta-box h2 {
  font-family: 'Cinzel', serif;
  font-size: 1.5rem;
  margin: 0 0 10px;
  background: linear-gradient(180deg, #ffffff, var(--glow));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.cta-box p { color: var(--muted); font-weight: 300; margin-bottom: 22px; }
.btn-primary {
  display: inline-block;
  padding: 14px 32px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--blue-lo), var(--blue-hi));
  color: #fff;
  text-decoration: none;
  font-weight: 500;
  box-shadow: 0 10px 30px rgba(47,123,229,0.4);
}

/* Artikel-Liste (Ratgeber-Übersicht) */
.artikel-liste { list-style: none; margin: 40px 0 0; }
.artikel-liste li { margin-bottom: 18px; }
.artikel-liste a {
  display: block;
  padding: 24px 26px;
  border: 1px solid rgba(111,182,247,0.12);
  border-radius: 16px;
  background: rgba(17,26,48,0.6);
  text-decoration: none;
  transition: border-color .2s ease, transform .2s ease;
}
.artikel-liste a:hover { border-color: rgba(111,182,247,0.4); transform: translateY(-3px); }
.artikel-liste h2 {
  font-family: 'Inter', sans-serif;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text);
  margin: 0 0 6px;
}
.artikel-liste p { color: var(--muted); font-weight: 300; font-size: 0.95rem; margin: 0; }

footer {
  text-align: center;
  padding: 40px 20px 50px;
  margin-top: 40px;
  border-top: 1px solid rgba(111,182,247,0.08);
  font-size: 13px;
  color: var(--muted-2);
}
footer a { color: var(--muted-2); }
