/* Gemeinsames Layout aller allgemeinen Sternzeichen-Ratgeberseiten
   (/sternzeichen-<zeichen>.html). Die Löwe-Seite bringt ihr eigenes
   Inline-Styling mit und wird von dieser Datei bewusst nicht berührt.

   Bild-Schema (wie bei Löwe):
   - .hero-img  ganz oben: ausdrucksstarke Illustration im Hochformat, ohne Text
   - .cta-img   unten im CTA-Kasten: beschriftetes Banner des Zeichens
*/

:root {
  --pink: #d678be;
  --pink-dark: #c25fa8;
  --text: #4a3b52;
  --text-soft: #6b5c73;
  --line: #ece3f0;
  --panel: #fdf9fc;
}

* { box-sizing: border-box; }

body {
  margin: 0;
  background: #fffdfe;
  color: var(--text);
  font-family: Inter, system-ui, -apple-system, "Segoe UI", sans-serif;
  font-size: 17px;
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
}

.wrap { max-width: 760px; margin: 0 auto; padding: 0 20px 64px; }

/* ── Kopfzeile ── */
.site-header {
  border-bottom: 1px solid var(--line);
  background: #fff;
  padding: 14px 20px;
  margin-bottom: 28px;
}
.site-header .inner {
  max-width: 760px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.brand {
  font-family: "Playfair Display", Georgia, serif;
  font-size: 22px;
  color: var(--text);
  text-decoration: none;
}
.brand span { color: var(--pink); }
.site-header a.top-link { font-size: 14px; color: var(--pink-dark); text-decoration: none; }

/* ── Typografie ── */
h1, h2, h3 {
  font-family: "Playfair Display", Georgia, serif;
  line-height: 1.25;
  color: var(--text);
}
h1 { font-size: 34px; margin: 8px 0 10px; }
h2 { font-size: 26px; margin: 42px 0 12px; }
h3 { font-size: 20px; margin: 26px 0 8px; }
p { margin: 0 0 16px; }
.lead { font-size: 19px; color: var(--text-soft); }
a { color: var(--pink-dark); }
.kicker {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--pink-dark);
}

/* ── Bilder: beide Formate werden vollständig gezeigt, nie beschnitten ── */
.hero-img,
.cta-img {
  display: block;
  width: 100%;
  max-width: 420px;
  max-height: 520px;
  height: auto;
  margin: 18px auto 6px;
  object-fit: contain;
  border-radius: 18px;
  border: 1px solid var(--line);
  box-shadow: 0 10px 34px rgba(74, 59, 82, 0.14);
}
/* Unteres Dating-Banner: großzügig über die volle Inhaltsspalte, vollständig
   sichtbar (kein Zuschnitt oben/unten/seitlich) und mit deutlichem Innenabstand
   zur abgerundeten Kartenkante. Standard für alle zwölf Zeichen-Seiten. */
.cta-img {
  width: 100%;
  max-width: 100%;
  max-height: none;
  height: auto;
  aspect-ratio: auto;
  object-fit: contain;
  margin: 8px 0 16px;
}
.cta-box { padding-top: 26px; }
.fig-caption {
  text-align: center;
  font-size: 13px;
  color: var(--text-soft);
  margin: 0 0 8px;
}

/* ── Grunddaten-Tabelle ── */
.facts {
  width: 100%;
  border-collapse: collapse;
  margin: 18px 0 8px;
  font-size: 16px;
}
.facts th,
.facts td {
  text-align: left;
  padding: 10px 12px;
  border-bottom: 1px solid var(--line);
  vertical-align: top;
}
.facts th { width: 40%; color: var(--text-soft); font-weight: 600; }

/* ── Stärken / Schwächen ── */
.grid2 { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin: 18px 0; }
.panel {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 18px 20px;
}
.panel h3 { margin: 0 0 6px; font-size: 18px; }
.panel ul { margin: 0; padding-left: 20px; }
.panel li { margin-bottom: 6px; }

/* ── CTA ── */
.cta-box {
  background: linear-gradient(165deg, #fff3fa 0%, #f6ecfa 100%);
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 24px;
  margin: 34px 0;
  text-align: center;
}
.cta-box p { color: var(--text-soft); }
.btn {
  display: inline-block;
  background: #b946b1;
  color: #fff;
  font-weight: 600;
  text-decoration: none;
  padding: 14px 26px;
  border-radius: 999px;
  box-shadow: 0 6px 20px rgba(185, 70, 177, 0.28);
}
.btn:hover { opacity: 0.92; }
.btn-secondary {
  display: inline-block;
  margin-top: 12px;
  font-size: 15px;
  font-weight: 600;
  color: var(--pink-dark);
  text-decoration: underline;
  text-underline-offset: 4px;
}
.inline-cta { font-weight: 600; }

/* ── Fachteil & FAQ ── */
.expert {
  border-left: 3px solid var(--pink);
  background: var(--panel);
  border-radius: 0 16px 16px 0;
  padding: 6px 22px;
  margin: 22px 0;
}
.faq { margin-top: 12px; }
.faq-q { font-weight: 600; margin: 20px 0 4px; }
.faq-a { color: var(--text-soft); margin: 0; }

/* ── Weiterlesen & Fußzeile ── */
.more-list { padding-left: 20px; color: var(--text-soft); }
.more-list li { margin-bottom: 8px; }
.site-footer {
  margin-top: 48px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
  font-size: 13px;
  color: var(--text-soft);
  text-align: center;
}
.site-footer a { margin: 0 8px; }

@media (max-width: 600px) {
  body { font-size: 16px; }
  h1 { font-size: 27px; }
  h2 { font-size: 22px; }
  .grid2 { grid-template-columns: 1fr; }
  .wrap { padding: 0 16px 48px; }
}
