/* Kluge Finanz — Rechtstextseiten (Impressum, Datenschutz)
   Eigenständiges Stylesheet für die ruhige Textdarstellung der Pflichtseiten
   sowie für den Inhalt, der bei aktivem JavaScript zusätzlich in das
   Legal-Modal (legal-modal.js/.css) übernommen wird. Nutzt ausschließlich
   bestehende :root-Variablen aus site.css — keine neuen Farb- oder
   Bewegungswerte. site.css und product-modal.css bleiben unberührt. */

/* ---------- Hero (Eyebrow, Titel, Stand) ---------- */
.lg-hero {
  padding: calc(var(--nav-h) + clamp(2.5rem, 6vw, 4.5rem)) 0 clamp(1.75rem, 4vw, 2.5rem);
}
.lg-hero h1 {
  margin-top: 0.85rem;
  font-size: clamp(2rem, 4vw, 2.6rem);
}
.lg-stand {
  margin-top: 0.9rem;
  font-size: 0.85rem;
  color: var(--c-off-faint);
}

/* ---------- Schmalere Lesespalte ---------- */
.lg-container {
  max-width: 760px;
  margin: 0 auto;
  padding: 0 clamp(1.25rem, 4vw, 2.5rem);
}

/* ---------- Inhaltsbereich ---------- */
.lg-content-section {
  padding-bottom: clamp(4rem, 8vw, 6rem);
}

.lg-section {
  padding-top: 1.9rem;
  margin-top: 1.9rem;
  border-top: 1px solid var(--c-line);
}
.lg-section:first-child {
  padding-top: 0;
  margin-top: 0;
  border-top: none;
}

.lg-content h2 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  color: var(--c-off);
  margin: 0 0 1rem;
}
.lg-content h3 {
  font-family: var(--font-display);
  font-size: 1rem;
  color: var(--c-gold);
  margin: 0 0 0.6rem;
}
.lg-content p {
  margin: 0 0 1rem;
  font-size: 0.98rem;
  line-height: 1.8;
  color: var(--c-off-dim);
}
.lg-content p:last-child { margin-bottom: 0; }
.lg-content address {
  font-style: normal;
  margin: 0 0 1rem;
  font-size: 0.98rem;
  line-height: 1.8;
  color: var(--c-off-dim);
}
.lg-content ul {
  margin: 0 0 1.1rem;
  padding-left: 1.3rem;
  list-style: disc;
}
.lg-content li {
  margin-bottom: 0.5rem;
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--c-off-dim);
}
.lg-content li:last-child { margin-bottom: 0; }
.lg-content a {
  color: var(--c-gold);
  border-bottom: 1px solid var(--c-gold-dim);
  transition: color var(--dur-fast) var(--ease-lux), border-color var(--dur-fast) var(--ease-lux);
}
.lg-content a:hover {
  color: var(--c-gold-bright);
  border-color: var(--c-gold-bright);
}

.lg-highlight {
  margin-top: 1.4rem;
  border: 1px solid var(--c-gold-dim);
  border-radius: var(--radius-md);
  padding: 1.2rem 1.4rem;
  background: rgba(201, 174, 121, 0.05);
}
.lg-highlight h3 { margin-bottom: 0.6rem; }
.lg-highlight p:last-child { margin-bottom: 0; }
