/* content.css — gemeinsames Stylesheet für statische Content-Seiten
   (FAQ, Blog, Vergleich). Palette identisch zu landing-a.jsx (PALETTE_A). */

*, *::before, *::after { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  font-family: 'DM Sans', system-ui, -apple-system, sans-serif;
  background: #FBF6EE;
  color: #1F1812;
  -webkit-font-smoothing: antialiased;
}
a { color: #C9442A; }
a:hover { color: #E85C3D; }

/* ── Navigation ── */
.nav {
  padding: 20px clamp(20px, 5vw, 80px);
  display: flex;
  align-items: center;
  gap: 12px;
  border-bottom: 1px solid #EFE5D2;
  background: #FBF6EE;
  position: sticky;
  top: 0;
  z-index: 10;
}
.logo-icon {
  width: 32px; height: 32px; border-radius: 9px;
  background: #FF7A59; color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Bricolage Grotesque', system-ui;
  font-weight: 800; font-size: 16px; flex-shrink: 0;
  text-decoration: none;
}
.logo-name {
  font-family: 'Bricolage Grotesque', system-ui;
  font-weight: 700; font-size: 18px; color: #1F1812;
  text-decoration: none;
}
.nav-links {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 24px;
}
.nav-links a {
  font-size: 14px; font-weight: 500; color: #1F1812;
  text-decoration: none;
}
.nav-links a:hover { color: #C9442A; }
.nav-cta {
  padding: 9px 16px; border-radius: 10px;
  background: #1F1812; color: #FBF6EE !important;
  font-weight: 600;
}
.nav-cta:hover { background: #3D3024; }
@media (max-width: 700px) {
  .nav-links a:not(.nav-cta) { display: none; }
}

/* ── Inhalt ── */
.container {
  max-width: 760px;
  margin: 0 auto;
  padding: 56px clamp(20px, 5vw, 40px) 80px;
}
.eyebrow {
  display: inline-block;
  padding: 6px 12px; border-radius: 999px;
  background: #F4ECDF; color: #6B5D4E;
  font-size: 13px; font-weight: 600;
  margin-bottom: 18px;
}
h1 {
  font-family: 'Bricolage Grotesque', system-ui;
  font-size: clamp(32px, 5vw, 52px);
  font-weight: 700; letter-spacing: -1.5px; line-height: 1.05;
  margin: 0 0 18px; color: #1F1812;
  text-wrap: balance;
}
.lead {
  font-size: 19px; line-height: 1.6; color: #6B5D4E;
  margin: 0 0 40px;
}
h2 {
  font-family: 'Bricolage Grotesque', system-ui;
  font-size: clamp(22px, 3vw, 28px);
  font-weight: 700; letter-spacing: -0.5px; line-height: 1.2;
  margin: 44px 0 14px; color: #1F1812;
}
h3 {
  font-size: 18px; font-weight: 700; letter-spacing: -0.2px;
  margin: 28px 0 8px; color: #1F1812;
}
p, li { font-size: 16px; line-height: 1.7; color: #3D3024; }
p { margin: 0 0 14px; }
ul, ol { margin: 0 0 14px; padding-left: 24px; }
li { margin-bottom: 6px; }
hr { border: none; border-top: 1px solid #EFE5D2; margin: 36px 0; }
.meta {
  font-size: 13px; color: #6B5D4E; margin-bottom: 28px;
}

/* ── Tabellen ── */
.table-wrap { overflow-x: auto; margin: 20px 0 24px; }
table {
  width: 100%;
  border-collapse: collapse;
  background: #FFFFFF;
  border: 1px solid #EFE5D2;
  border-radius: 14px;
  overflow: hidden;
  font-size: 15px;
}
th, td {
  padding: 12px 14px;
  text-align: left;
  border-bottom: 1px solid #EFE5D2;
  vertical-align: top;
  line-height: 1.5;
}
th {
  background: #F4ECDF; color: #1F1812;
  font-weight: 700; font-size: 14px;
}
tr:last-child td { border-bottom: none; }
td .yes { color: #1F8A6D; font-weight: 700; }
td .no { color: #6B5D4E; }

/* ── Boxen ── */
.note {
  background: #F4ECDF; border-radius: 12px; padding: 18px 22px;
  font-size: 14px; line-height: 1.65; color: #6B5D4E; margin: 24px 0;
}
.tip {
  background: #D6F1E9; border-radius: 12px; padding: 18px 22px;
  font-size: 15px; line-height: 1.65; color: #1F1812; margin: 24px 0;
}

/* ── FAQ (details/summary) ── */
details.faq {
  border-top: 1px solid #EFE5D2;
  padding: 4px 0;
}
details.faq:last-of-type { border-bottom: 1px solid #EFE5D2; }
details.faq summary {
  cursor: pointer;
  list-style: none;
  display: flex; justify-content: space-between; align-items: center; gap: 20px;
  padding: 18px 0;
  font-size: 18px; font-weight: 600; color: #1F1812;
}
details.faq summary::-webkit-details-marker { display: none; }
details.faq summary::after {
  content: '+';
  width: 30px; height: 30px; border-radius: 50%;
  background: #F4ECDF; color: #6B5D4E;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; font-weight: 500;
}
details.faq[open] summary::after {
  content: '−';
  background: #FF7A59; color: #fff;
}
details.faq .answer { padding: 0 0 20px; max-width: 640px; }
details.faq .answer p:last-child { margin-bottom: 0; }

/* ── CTA-Block ── */
.cta-box {
  background: #FF7A59;
  border-radius: 24px;
  padding: 36px clamp(24px, 4vw, 44px);
  margin: 48px 0 0;
  color: #fff;
}
.cta-box h2 {
  color: #fff; margin: 0 0 10px;
  font-size: clamp(24px, 3.5vw, 32px);
}
.cta-box p { color: rgba(255,255,255,0.92); margin: 0 0 22px; }
.cta-btn {
  display: inline-block;
  padding: 13px 22px; border-radius: 13px;
  background: #1F1812; color: #FBF6EE !important;
  font-weight: 600; font-size: 15px; text-decoration: none;
}
.cta-btn:hover { background: #3D3024; }

/* ── Artikel-Karten (Blog-Übersicht, "Weiterlesen") ── */
.card-list { display: grid; gap: 16px; margin: 24px 0; padding: 0; list-style: none; }
.card-list li { margin: 0; }
.card {
  display: block;
  background: #FFFFFF; border: 1px solid #EFE5D2; border-radius: 16px;
  padding: 22px 24px; text-decoration: none;
}
.card:hover { border-color: #FF7A59; }
.card .card-title {
  font-size: 18px; font-weight: 700; color: #1F1812; margin-bottom: 6px;
  display: flex; align-items: center; gap: 8px;
}
.card .card-desc { font-size: 14px; color: #6B5D4E; line-height: 1.55; }

/* ── Quellen ── */
.sources { font-size: 14px; color: #6B5D4E; }
.sources li { margin-bottom: 8px; word-break: break-word; }

/* ── Footer ── */
.footer {
  border-top: 1px solid #EFE5D2;
  padding: 36px clamp(20px, 5vw, 80px) 48px;
  font-size: 14px; color: #6B5D4E;
}
.footer-links {
  display: flex; flex-wrap: wrap; gap: 10px 24px; margin-bottom: 18px;
}
.footer-links a { color: #6B5D4E; text-decoration: none; }
.footer-links a:hover { color: #C9442A; }
