@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400&family=Inter:wght@400;500;600;700&display=swap');

:root {
  --blue:        #4A86B8;
  --blue-dark:   #2E5F8A;
  --blue-light:  #EDF4FA;
  --ink:         #1C2B3A;
  --gold:        #C8A84B;
  --gold-light:  #F5EDD4;
  --paper:       #F8F7F4;
  --white:       #FFFFFF;
  --text:        #1C2B3A;
  --text-mid:    #4A5568;
  --text-muted:  #718096;
  --border:      #E2E8F0;
  --radius:      8px;
  --radius-lg:   16px;
  --shadow:      0 2px 8px rgba(0,0,0,0.06);
  --shadow-md:   0 6px 24px rgba(0,0,0,0.10);
  --max-w:       920px;
  --max-w-sm:    680px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text);
  background: var(--paper);
}
img { max-width: 100%; display: block; }
a { color: inherit; }

h1, h2, h3, h4 { font-family: 'Playfair Display', Georgia, serif; line-height: 1.25; }

.container    { max-width: var(--max-w);    margin: 0 auto; padding: 0 1.5rem; }
.container-sm { max-width: var(--max-w-sm); margin: 0 auto; padding: 0 1.5rem; }

.navbar {
  background: var(--ink);
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 2px solid var(--gold);
}
.nav-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 1.5rem;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--white);
  text-decoration: none;
  letter-spacing: 0.03em;
  line-height: 1.2;
}
.nav-logo span { color: var(--gold); }
.nav-logo small {
  display: block;
  font-family: 'Inter', sans-serif;
  font-size: 0.62rem;
  font-weight: 400;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
}
.nav-links { display: flex; align-items: center; gap: 1.25rem; list-style: none; }
.nav-links a {
  font-size: 0.84rem;
  font-weight: 500;
  color: rgba(255,255,255,0.7);
  text-decoration: none;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--white); }
.nav-links .nav-cta {
  background: var(--gold);
  color: var(--ink);
  padding: 0.4rem 1.1rem;
  border-radius: 20px;
  font-weight: 700;
  font-size: 0.82rem;
  transition: opacity 0.2s;
}
.nav-links .nav-cta:hover { opacity: 0.88; color: var(--ink); }

.masthead {
  background: var(--ink);
  text-align: center;
  padding: 2.5rem 1.5rem 2rem;
  border-bottom: 3px solid var(--gold);
}
.masthead-eyebrow {
  font-size: 0.65rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.65rem;
  display: block;
}
.masthead h1 {
  font-size: clamp(1.8rem, 4.5vw, 3rem);
  color: var(--white);
  letter-spacing: 0.01em;
  margin-bottom: 0.6rem;
}
.masthead h1 span { color: var(--gold); }
.masthead-tagline {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.55);
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.6;
}

.ticker-strip {
  background: var(--gold);
  padding: 0.45rem 1rem;
  text-align: center;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink);
}

section { padding: 4rem 0; }
section.tight { padding: 2rem 0; }
.bg-white  { background: var(--white); }
.bg-paper  { background: var(--paper); }
.bg-ink    { background: var(--ink); }
.bg-blue-light { background: var(--blue-light); }

.section-eyebrow {
  font-size: 0.65rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 0.5rem;
}
.section-title { font-size: clamp(1.5rem, 3vw, 2.1rem); margin-bottom: 1rem; }
.section-sub   { font-size: 0.95rem; color: var(--text-mid); max-width: 580px; }

.featured-issue {
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr 1fr;
  text-decoration: none;
  color: inherit;
  transition: transform 0.2s, box-shadow 0.2s;
  margin-top: 2rem;
}
.featured-issue:hover { transform: translateY(-3px); box-shadow: 0 10px 32px rgba(0,0,0,0.13); }
.featured-left {
  background: var(--ink);
  padding: 2.5rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.featured-badge {
  display: inline-block;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  background: rgba(200,168,75,0.15);
  border: 1px solid rgba(200,168,75,0.3);
  padding: 0.28rem 0.7rem;
  border-radius: 20px;
  margin-bottom: 1.25rem;
  align-self: flex-start;
}
.featured-left h3 {
  font-size: 1.5rem;
  color: var(--white);
  line-height: 1.3;
  margin-bottom: 0.75rem;
}
.featured-left .subtitle { font-size: 0.88rem; color: rgba(255,255,255,0.55); line-height: 1.6; }
.featured-left .read-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin-top: 1.5rem;
  background: var(--gold);
  color: var(--ink);
  font-weight: 700;
  font-size: 0.85rem;
  padding: 0.6rem 1.25rem;
  border-radius: var(--radius);
  text-decoration: none;
  align-self: flex-start;
  transition: opacity 0.2s;
}
.featured-left .read-cta:hover { opacity: 0.88; }
.featured-right { padding: 2.5rem; }
.featured-right h4 {
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-muted);
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  margin-bottom: 1rem;
}
.featured-right ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}
.featured-right ul li {
  font-size: 0.9rem;
  color: var(--text-mid);
  padding-left: 1.1rem;
  position: relative;
  line-height: 1.5;
}
.featured-right ul li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--gold);
  font-weight: 700;
}

.issues-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin-top: 2rem;
}
.issue-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
  transition: transform 0.2s, box-shadow 0.2s;
  border: 1px solid var(--border);
}
.issue-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.issue-card-head {
  background: var(--ink);
  padding: 1.1rem 1.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.issue-num {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  background: rgba(200,168,75,0.15);
  border: 1px solid rgba(200,168,75,0.3);
  padding: 0.22rem 0.6rem;
  border-radius: 20px;
}
.issue-card-head .topic-tag {
  font-size: 0.7rem;
  color: rgba(255,255,255,0.45);
}
.issue-card-body { padding: 1.25rem; flex: 1; }
.issue-card-body h3 { font-size: 1rem; margin-bottom: 0.5rem; line-height: 1.3; }
.issue-card-body p  { font-size: 0.84rem; color: var(--text-mid); line-height: 1.55; }
.issue-card-foot {
  padding: 0.9rem 1.25rem;
  border-top: 1px solid var(--border);
  font-size: 0.8rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--text-muted);
}
.issue-card-foot .lesen { color: var(--blue); font-weight: 600; text-decoration: none; }

.optin-wrap {
  background: var(--ink);
  border-radius: var(--radius-lg);
  padding: 3rem 2.5rem;
  text-align: center;
  max-width: 540px;
  margin: 0 auto;
  box-shadow: var(--shadow-md);
}
.optin-wrap .eyebrow { color: var(--gold); margin-bottom: 0.5rem; }
.optin-wrap h2 { font-size: 1.7rem; color: var(--white); margin-bottom: 0.6rem; }
.optin-wrap p  { font-size: 0.88rem; color: rgba(255,255,255,0.55); margin-bottom: 1.75rem; line-height: 1.6; }
.optin-form { display: flex; flex-direction: column; gap: 0.7rem; }
.optin-form input {
  padding: 0.8rem 1rem;
  border-radius: var(--radius);
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(255,255,255,0.07);
  color: var(--white);
  font-size: 0.93rem;
  font-family: inherit;
  outline: none;
  transition: border-color 0.2s;
}
.optin-form input::placeholder { color: rgba(255,255,255,0.3); }
.optin-form input:focus { border-color: var(--gold); background: rgba(255,255,255,0.10); }
.btn-gold {
  background: var(--gold);
  color: var(--ink);
  border: none;
  padding: 0.9rem 1.5rem;
  border-radius: var(--radius);
  font-weight: 700;
  font-size: 0.93rem;
  cursor: pointer;
  font-family: inherit;
  transition: opacity 0.2s;
  letter-spacing: 0.02em;
}
.btn-gold:hover { opacity: 0.9; }
.btn-gold:disabled { opacity: 0.6; cursor: not-allowed; }
.optin-disclaimer {
  font-size: 0.72rem;
  color: rgba(255,255,255,0.28);
  margin-top: 0.75rem;
  line-height: 1.6;
}
.optin-success {
  display: none;
  background: rgba(200,168,75,0.15);
  border: 1px solid rgba(200,168,75,0.4);
  border-radius: var(--radius);
  padding: 1.5rem;
  color: var(--gold);
  font-size: 0.95rem;
  line-height: 1.6;
}

.authors-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; margin-top: 2rem; }
.author-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
}
.author-avatar {
  width: 52px; height: 52px;
  border-radius: 50%;
  background: var(--ink);
  color: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-family: 'Playfair Display', serif;
  font-size: 1.15rem;
  font-weight: 700;
  flex-shrink: 0;
  border: 2px solid var(--gold);
}
.author-info h4 { font-size: 0.97rem; font-family: 'Inter', sans-serif; font-weight: 700; margin-bottom: 0.2rem; }
.author-info .role { font-size: 0.78rem; color: var(--gold); font-weight: 600; margin-bottom: 0.4rem; }
.author-info p { font-size: 0.82rem; color: var(--text-mid); line-height: 1.55; }

.article-header {
  background: var(--ink);
  padding: 3.5rem 1.5rem 3rem;
  text-align: center;
  border-bottom: 3px solid var(--gold);
}
.article-badge {
  display: inline-block;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  background: rgba(200,168,75,0.15);
  border: 1px solid rgba(200,168,75,0.3);
  padding: 0.28rem 0.75rem;
  border-radius: 20px;
  margin-bottom: 1.1rem;
}
.article-header h1 {
  font-size: clamp(1.7rem, 4vw, 2.6rem);
  color: var(--white);
  max-width: 680px;
  margin: 0 auto 0.75rem;
}
.article-header .article-subtitle {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.55);
  max-width: 560px;
  margin: 0 auto;
  font-style: italic;
  font-family: 'Playfair Display', serif;
}

.article-body { background: var(--white); }
.article-content {
  max-width: var(--max-w-sm);
  margin: 0 auto;
  padding: 3rem 1.5rem 2rem;
}
.article-content h2 {
  font-size: 1.35rem;
  color: var(--ink);
  margin: 2.5rem 0 0.75rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid var(--gold);
}
.article-content h2:first-child { margin-top: 0; }
.article-content p { margin-bottom: 1.1rem; color: var(--text); line-height: 1.8; }
.article-content a { color: var(--blue); text-decoration: none; }
.article-content a:hover { text-decoration: underline; }
.article-content ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin: 0.5rem 0 1.25rem;
}
.article-content ul li {
  padding-left: 1.3rem;
  position: relative;
  color: var(--text-mid);
  font-size: 0.93rem;
  line-height: 1.6;
}
.article-content ul li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--gold);
  font-weight: 700;
}

.summary-box {
  background: var(--blue-light);
  border-left: 4px solid var(--blue);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 1.25rem 1.5rem;
  margin: 1.5rem 0;
}
.summary-box .summary-label {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--blue-dark);
  margin-bottom: 0.8rem;
  display: block;
}
.summary-box ul li { font-size: 0.9rem; color: var(--ink); }
.summary-box ul li::before { color: var(--blue); }

.expert-quote {
  background: var(--ink);
  border-radius: var(--radius-lg);
  padding: 2rem 2rem 1.5rem;
  margin: 2rem 0;
}
.expert-quote blockquote {
  font-family: 'Playfair Display', serif;
  font-size: 1.15rem;
  color: var(--white);
  line-height: 1.65;
  font-style: italic;
  margin-bottom: 1rem;
}
.expert-quote blockquote::before { content: '\201E'; color: var(--gold); font-size: 2rem; line-height: 0; vertical-align: -0.4em; margin-right: 0.2rem; }
.expert-quote cite {
  font-size: 0.8rem;
  color: var(--gold);
  font-style: normal;
  font-weight: 600;
  letter-spacing: 0.03em;
}

.data-table-wrap { overflow-x: auto; margin: 1rem 0 1.5rem; border-radius: var(--radius); box-shadow: var(--shadow); }
.data-table { width: 100%; border-collapse: collapse; font-size: 0.88rem; }
.data-table th {
  background: var(--ink);
  color: var(--white);
  padding: 0.7rem 1rem;
  text-align: left;
  font-family: 'Inter', sans-serif;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.06em;
}
.data-table td { padding: 0.65rem 1rem; border-bottom: 1px solid var(--border); color: var(--text); }
.data-table td strong { color: var(--ink); font-weight: 600; }
.data-table tr:last-child td { border-bottom: none; }
.data-table tr:nth-child(even) td { background: var(--paper); }

.sources-section {
  background: var(--paper);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
  margin-top: 2.5rem;
}
.sources-section h3 {
  font-family: 'Inter', sans-serif;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 0.9rem;
}
.sources-section ol { padding-left: 1.25rem; display: flex; flex-direction: column; gap: 0.45rem; }
.sources-section li { font-size: 0.78rem; color: var(--text-muted); line-height: 1.55; }
.sources-section a { color: var(--blue); text-decoration: none; }
.sources-section a:hover { text-decoration: underline; }
.sources-disclaimer {
  font-size: 0.74rem;
  color: var(--text-muted);
  font-style: italic;
  margin-top: 0.85rem;
  padding-top: 0.85rem;
  border-top: 1px solid var(--border);
  line-height: 1.55;
}

.article-cta {
  background: var(--blue-light);
  padding: 2.5rem 1.5rem;
  text-align: center;
}
.article-cta h3 { font-size: 1.3rem; margin-bottom: 0.5rem; color: var(--ink); }
.article-cta p  { font-size: 0.88rem; color: var(--text-mid); margin-bottom: 1.25rem; }
.article-cta .cta-form {
  display: flex;
  gap: 0.6rem;
  max-width: 420px;
  margin: 0 auto;
  flex-wrap: wrap;
  justify-content: center;
}
.article-cta .cta-form input {
  flex: 1;
  min-width: 200px;
  padding: 0.75rem 1rem;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  font-family: inherit;
  font-size: 0.9rem;
  outline: none;
}
.article-cta .cta-form input:focus { border-color: var(--blue); }
.btn-navy {
  background: var(--ink);
  color: var(--white);
  border: none;
  padding: 0.75rem 1.25rem;
  border-radius: var(--radius);
  font-weight: 700;
  font-size: 0.88rem;
  cursor: pointer;
  font-family: inherit;
  transition: opacity 0.2s;
  white-space: nowrap;
}
.btn-navy:hover { opacity: 0.88; }
.btn-navy:disabled { opacity: 0.55; cursor: not-allowed; }

.article-pagination {
  max-width: var(--max-w-sm);
  margin: 0 auto;
  padding: 1.5rem;
  display: flex;
  justify-content: space-between;
  border-top: 1px solid var(--border);
  gap: 1rem;
}
.article-pagination a {
  font-size: 0.84rem;
  color: var(--blue);
  text-decoration: none;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 0.3rem;
}
.article-pagination a:hover { color: var(--blue-dark); }
.article-pagination .back-to-archive { color: var(--text-muted); }

.site-footer {
  background: var(--ink);
  color: rgba(255,255,255,0.55);
  padding: 3rem 1.5rem 2rem;
}
.footer-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-brand .logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  color: var(--white);
  font-weight: 700;
  margin-bottom: 0.5rem;
}
.footer-brand .logo span { color: var(--gold); }
.footer-brand p { font-size: 0.82rem; line-height: 1.65; margin-bottom: 0.4rem; }
.footer-col h4 {
  font-family: 'Inter', sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  margin-bottom: 0.9rem;
}
.footer-col nav { display: flex; flex-direction: column; gap: 0.45rem; }
.footer-col nav a { font-size: 0.84rem; color: rgba(255,255,255,0.55); text-decoration: none; transition: color 0.2s; }
.footer-col nav a:hover { color: var(--white); }
.footer-bottom {
  max-width: var(--max-w);
  margin: 1.5rem auto 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.75rem;
  color: rgba(255,255,255,0.28);
  flex-wrap: wrap;
  gap: 0.5rem;
}

.danke-hero {
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--ink);
  text-align: center;
  padding: 3rem 1.5rem;
}
.danke-box { max-width: 520px; }
.danke-box .check-circle {
  width: 72px; height: 72px;
  border-radius: 50%;
  background: rgba(200,168,75,0.15);
  border: 2px solid var(--gold);
  color: var(--gold);
  font-size: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
}
.danke-box h1 { font-size: 2rem; color: var(--white); margin-bottom: 0.75rem; }
.danke-box p  { color: rgba(255,255,255,0.6); font-size: 0.95rem; line-height: 1.7; margin-bottom: 1rem; }
.btn-gold-lg {
  display: inline-block;
  background: var(--gold);
  color: var(--ink);
  font-weight: 700;
  font-size: 0.95rem;
  padding: 0.85rem 2rem;
  border-radius: var(--radius);
  text-decoration: none;
  margin-top: 0.5rem;
  transition: opacity 0.2s;
}
.btn-gold-lg:hover { opacity: 0.88; }

@media (max-width: 768px) {
  .nav-links { display: none; }
  .featured-issue { grid-template-columns: 1fr; }
  .issues-grid  { grid-template-columns: 1fr; }
  .authors-grid { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; gap: 1.5rem; }
  .article-content { padding: 2rem 1rem; }
  .optin-wrap { padding: 2rem 1.25rem; }
  section { padding: 2.5rem 0; }
  .article-cta .cta-form { flex-direction: column; align-items: center; }
  .article-cta .cta-form input { width: 100%; min-width: unset; }
}
@media (max-width: 480px) {
  .masthead h1 { font-size: 1.6rem; }
  .article-header h1 { font-size: 1.5rem; }
}
