/* =============================================
   SCHALOM ISRAEL - Entdecken
   Geteilte Optik der vier Tools und der Uebersichtsseite.
   Nutzt die Variablen aus styles.css.

   Heller Seitenhintergrund wie die uebrigen Lese-Seiten
   (.simple-page--light in article.css nutzt denselben Ton),
   die Karten und das Ergebnis bleiben dunkelblau.
   ============================================= */

:root {
  --entdecken-bg: #f8f3ea;
  --entdecken-text: #2a3a4a;
  --entdecken-headline: #0d1e35;
  --entdecken-muted: #5c6b7d;
  --entdecken-linie: rgba(13, 30, 53, 0.12);
}

body.entdecken-seite {
  background: var(--entdecken-bg);
}

/* ---------- Hero ---------- */
.tool-hero {
  padding: 6.5rem 1.5rem 2rem;
  text-align: center;
  background: var(--entdecken-bg);
}
.tool-hero h1 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(1.9rem, 5vw, 2.8rem);
  color: var(--entdecken-headline);
  margin-bottom: 0.6rem;
}
/* Eine einzige Inhaltsbreite fuer die ganze Rubrik: 660px aussen.
   Hero, Karte, Ergebnis, Opt-in, Erklaertext und Kachelraster fluchten
   dadurch an denselben Kanten. Vorher liefen hier drei Breiten
   nebeneinander (620, 660, 860), was sichtbar unruhig wirkte. */
.tool-hero p {
  max-width: 612px;
  margin: 0 auto;
  color: var(--entdecken-muted);
  font-size: 1.02rem;
  line-height: 1.7;
}

/* ---------- Karte mit dem Formular ---------- */
.tool-card {
  max-width: 660px;
  margin: 2rem auto;
  padding: 2rem 1.75rem;
  background: var(--navy-light);
  border: 1px solid rgba(200, 169, 98, 0.22);
  border-radius: var(--radius);
}

.tool-field {
  margin-bottom: 1.4rem;
  border: 0;
  padding: 0;
}
.tool-label {
  display: block;
  font-size: 0.88rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.5rem;
}
.tool-input,
.tool-select {
  width: 100%;
  padding: 0.8rem 0.9rem;
  background: var(--navy);
  border: 1px solid rgba(212, 207, 196, 0.22);
  border-radius: var(--radius);
  color: var(--text);
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 1rem;
  transition: border-color var(--transition);
}
.tool-input:focus,
.tool-select:focus {
  outline: none;
  border-color: var(--gold);
}
.tool-input::placeholder {
  color: var(--text-muted);
  opacity: 0.7;
}

/* ---------- Radio-Gruppen ---------- */
.tool-radio-gruppe label {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  padding: 0.5rem 0;
  color: var(--text);
  font-size: 0.98rem;
  cursor: pointer;
}
.tool-radio-gruppe input[type='radio'] {
  margin-top: 0.35rem;
  accent-color: var(--gold);
  flex-shrink: 0;
}
.tool-hinweis {
  margin-top: 0.7rem;
  color: var(--text-muted);
  font-size: 0.86rem;
  line-height: 1.6;
}

/* ---------- Status und Fehler ---------- */
/* Liegt direkt auf dem hellen Seitenhintergrund, deshalb dunkle Schrift. */
.tool-status {
  max-width: 660px;
  margin: 1rem auto 0;
  text-align: center;
  color: var(--entdecken-muted);
  font-size: 0.95rem;
  min-height: 1.4rem;
}
.tool-status.tool-fehler {
  color: #8a4b2a;
}

/* ---------- Ergebnis ---------- */
.tool-ergebnis {
  max-width: 660px;
  margin: 0 auto 2rem;
}
.tool-ergebnis:not(:empty) {
  padding: 1.75rem;
  background: var(--navy-light);
  border-left: 3px solid var(--gold);
  border-radius: var(--radius);
}
.tool-ergebnis h2 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.4rem;
  color: var(--cream);
  margin: 1.6rem 0 0.6rem;
}
.tool-ergebnis h2:first-child {
  margin-top: 0;
}
/* Projektregel: h4 traegt dieselbe Goldfarbe wie h3. */
.tool-ergebnis h3,
.tool-ergebnis h4 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.15rem;
  color: var(--gold);
  margin: 1.3rem 0 0.5rem;
}
.tool-ergebnis p {
  color: var(--text);
  line-height: 1.8;
  margin-bottom: 0.9rem;
}
.tool-ergebnis ul {
  margin: 0 0 1rem 1.1rem;
  color: var(--text);
  line-height: 1.8;
}
.tool-ergebnis strong { color: var(--cream); }
.tool-ergebnis a { color: var(--gold); }

/* ---------- Ergebnis-Kopf (Geburtstag) ---------- */
.geb-kopf {
  text-align: center;
  padding-bottom: 1.4rem;
  margin-bottom: 1.4rem;
  border-bottom: 1px solid rgba(200, 169, 98, 0.22);
}
.geb-datum {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(1.6rem, 4.5vw, 2.2rem);
  color: var(--cream);
  margin-bottom: 0.3rem;
}
.geb-datum-he {
  font-size: 1.5rem;
  color: var(--gold);
  margin-bottom: 0.8rem;
}
.geb-zeile {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.7;
}
.geb-zeile strong { color: var(--text); }
.geb-aliyah {
  margin-top: 1.2rem;
  padding: 1rem;
  background: var(--navy);
  border-radius: var(--radius);
}
.geb-aliyah-label {
  font-size: 0.8rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.4rem;
}
.geb-aliyah-wert {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.3rem;
  color: var(--cream);
}
.geb-aliyah-stelle {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-top: 0.2rem;
}

/* ---------- Quiz ---------- */
.check-frage-block {
  padding: 1.1rem 0;
  border-bottom: 1px solid rgba(212, 207, 196, 0.12);
}
.check-frage-block:last-of-type { border-bottom: 0; }
.check-frage-text {
  color: var(--cream);
  font-size: 1.02rem;
  margin-bottom: 0.7rem;
  line-height: 1.6;
}
.check-optionen label {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  padding: 0.35rem 0;
  color: var(--text);
  font-size: 0.96rem;
  cursor: pointer;
}
.check-optionen input[type='radio'] {
  margin-top: 0.32rem;
  accent-color: var(--gold);
  flex-shrink: 0;
}

.check-punkte {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 2rem;
  color: var(--gold);
  text-align: center;
  margin-bottom: 1.2rem;
}
.check-liste {
  list-style: none;
  margin: 0 0 1.5rem;
  padding: 0;
}
.check-zeile {
  padding: 0.8rem 0 0.8rem 1rem;
  border-left: 3px solid var(--text-muted);
  margin-bottom: 0.8rem;
}
.check-zeile.ist-richtig { border-left-color: var(--gold); }
.check-zeile.ist-falsch { border-left-color: #a35d5d; }
.check-zeile-frage {
  display: block;
  color: var(--cream);
  font-size: 0.96rem;
  margin-bottom: 0.25rem;
}
.check-zeile-loesung {
  display: block;
  color: var(--gold);
  font-size: 0.92rem;
  margin-bottom: 0.25rem;
}
.check-zeile-erklaerung {
  display: block;
  color: var(--text-muted);
  font-size: 0.88rem;
  line-height: 1.6;
}

/* ---------- Gematria ---------- */
.gem-schrift {
  font-size: clamp(2rem, 7vw, 3rem);
  line-height: 1.3;
  direction: rtl;
}
.gem-summe {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(2.6rem, 9vw, 4rem);
  color: var(--cream);
  line-height: 1;
  margin: 0.3rem 0 0.6rem;
}
.gem-quelle {
  font-size: 0.86rem;
  color: var(--text-muted);
}

/* Buchstaben mit ihren Werten. Hebraeisch laeuft von rechts nach links,
   deshalb die Leserichtung umkehren. */
.gem-zerlegung {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 0.3rem;
  direction: rtl;
  margin: 1.2rem 0 0.8rem;
}
.gem-buchstabe {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 2.5rem;
  padding: 0.4rem 0.5rem;
  background: var(--navy);
  border: 1px solid rgba(200, 169, 98, 0.28);
  border-radius: var(--radius);
}
.gem-zeichen {
  font-size: 1.5rem;
  color: var(--cream);
  line-height: 1.2;
}
.gem-wert {
  font-size: 0.8rem;
  color: var(--gold);
  margin-top: 0.15rem;
}
.gem-plus {
  color: var(--text-muted);
  font-size: 0.9rem;
}
.gem-klein {
  margin-top: 0.6rem;
  font-size: 0.9rem;
}

/* Treffer mit gleichem Wert */
.gem-treffer {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  cursor: default;
}
.gem-treffer:hover { color: var(--text); }
.gem-treffer-heb {
  font-size: 1.35rem;
  color: var(--gold);
  min-width: 4.5rem;
  text-align: right;
  direction: rtl;
  flex-shrink: 0;
}
.gem-treffer-text {
  font-size: 0.94rem;
  line-height: 1.5;
}
.gem-treffer-text strong {
  color: var(--cream);
  margin-right: 0.35rem;
}

/* ---------- Tora-Codes ---------- */
/* Gefunden und zufaellig erwartet stehen bewusst gleich gross nebeneinander.
   Die Einordnung gehoert ins Ergebnis, nicht ins Kleingedruckte. */
.els-bilanz {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
  margin: 1.2rem 0 0.8rem;
}
.els-zahl {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 8rem;
  padding: 0.8rem 1rem;
  background: var(--navy);
  border-radius: var(--radius);
}
.els-zahl-wert {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(1.6rem, 5vw, 2.2rem);
  color: var(--cream);
  line-height: 1.1;
}
.els-zahl-wert.els-erwartet { color: var(--gold); }
.els-zahl-label {
  font-size: 0.78rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-top: 0.3rem;
  text-align: center;
}
.els-einordnung {
  max-width: 30rem;
  margin: 0 auto;
}

/* Buchstabenkette: Fund hervorgehoben, Fuellbuchstaben blass. */
.els-kette {
  direction: rtl;
  text-align: center;
  font-size: 1.15rem;
  line-height: 2;
  letter-spacing: 0.04em;
  margin-bottom: 1rem;
  word-break: break-all;
}
.els-hit {
  color: var(--navy);
  background: var(--gold);
  border-radius: 3px;
  padding: 0.1rem 0.2rem;
  font-weight: 500;
}
.els-fill {
  color: var(--text-muted);
  opacity: 0.45;
}

/* Zwei Eingabefelder nebeneinander, ab Mobil untereinander */
.tool-zwei-felder {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
@media (max-width: 520px) {
  .tool-zwei-felder { grid-template-columns: 1fr; gap: 0; }
}

.tool-beispiele {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem;
  margin-top: 0.9rem;
}
.tool-beispiele-label {
  font-size: 0.84rem;
  color: var(--text-muted);
}
.tool-beispiel {
  padding: 0.35rem 0.75rem;
  background: var(--navy);
  border: 1px solid rgba(200, 169, 98, 0.3);
  border-radius: var(--radius);
  color: var(--text);
  font-family: inherit;
  font-size: 0.84rem;
  cursor: pointer;
  transition: color var(--transition), border-color var(--transition);
}
.tool-beispiel:hover {
  color: var(--gold);
  border-color: var(--gold);
}

/* Zwei Suchwoerter im Kopf */
.els-plus {
  color: var(--text-muted);
  margin: 0 0.6rem;
  font-size: 0.7em;
}
.els-wort-a { color: var(--gold); }
.els-wort-b { color: #7fb3d5; }
.els-einzelzahlen {
  font-size: 0.88rem;
  color: var(--text-muted);
}

.els-stelle {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.2rem;
  color: var(--cream);
  margin-bottom: 0.5rem;
}

/* Breiter Ausschnitt fuer Paare */
.els-kette--breit {
  font-size: 0.95rem;
  line-height: 1.9;
  max-height: 16rem;
  overflow-y: auto;
  padding: 0.6rem;
  background: var(--navy);
  border-radius: var(--radius);
}
.els-hit-a { background: var(--gold); color: var(--navy); }
.els-hit-b { background: #7fb3d5; color: var(--navy); }

.els-legende {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin-top: 0.7rem;
  font-size: 0.9rem;
  color: var(--text);
}
.els-punkt {
  display: inline-block;
  width: 0.85rem;
  height: 0.85rem;
  border-radius: 2px;
  margin-left: 0.6rem;
}
.els-detail {
  display: block;
  font-size: 0.82rem;
  color: var(--text-muted);
  margin-top: 0.1rem;
}

.els-treffer {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  cursor: default;
}
.els-treffer:hover { color: var(--text); }
.els-sprung {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.15rem;
  color: var(--gold);
  min-width: 3.5rem;
  text-align: right;
  flex-shrink: 0;
}
.els-treffer-text {
  font-size: 0.92rem;
  line-height: 1.5;
}
.els-treffer-text strong { color: var(--cream); }

.source-note-klein {
  font-size: 0.82rem;
  color: var(--entdecken-muted);
  line-height: 1.6;
  margin-top: 1.5rem;
  padding-top: 1rem;
  border-top: 1px solid var(--entdecken-linie);
}

/* ---------- Blatt zum Ausdrucken ---------- */
.blatt-aktion {
  max-width: 660px;
  margin: 0 auto 2rem;
  padding: 0 1.5rem;
  text-align: center;
}
.blatt-text {
  color: var(--entdecken-text);
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 0.9rem;
}

/* ---------- Buchhinweis im Geburtstags-Tool ---------- */
/* Zurueckhaltend gehalten: kein Preis, kein Kasten in Signalfarbe.
   Der Leser hat gerade etwas Persoenliches erfahren. */
.geb-buch {
  display: grid;
  grid-template-columns: 5.5rem 1fr;
  gap: 1.1rem;
  align-items: center;
  max-width: 660px;
  margin: 0 auto 2rem;
  padding: 1.3rem;
  background: var(--navy-light);
  border: 1px solid rgba(200, 169, 98, 0.22);
  border-radius: var(--radius);
}
@media (max-width: 520px) {
  .geb-buch { grid-template-columns: 4.5rem 1fr; gap: 0.9rem; padding: 1rem; }
}
.geb-buch-cover {
  width: 100%;
  height: auto;
  border-radius: 2px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
  display: block;
}
.geb-buch-eyebrow {
  font-size: 0.74rem;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.35rem;
}
.geb-buch-satz {
  color: var(--text);
  font-size: 0.95rem;
  line-height: 1.65;
  margin-bottom: 0.7rem;
}
.geb-buch-satz strong { color: var(--cream); }
.geb-buch-btn {
  display: inline-block;
  padding: 0.4rem 1rem;
  border: 1px solid var(--gold);
  border-radius: var(--radius);
  color: var(--gold);
  font-size: 0.88rem;
  text-decoration: none;
  transition: background var(--transition), color var(--transition);
}
.geb-buch-btn:hover { background: var(--gold); color: var(--navy); }

/* ---------- Glossar ---------- */
.glossar-filter {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-top: 1rem;
}
.glossar-knopf {
  padding: 0.35rem 0.75rem;
  background: var(--navy);
  border: 1px solid rgba(200, 169, 98, 0.28);
  border-radius: var(--radius);
  color: var(--text-muted);
  font-family: inherit;
  font-size: 0.84rem;
  cursor: pointer;
  transition: color var(--transition), border-color var(--transition), background var(--transition);
}
.glossar-knopf:hover { color: var(--gold); }
.glossar-knopf.ist-aktiv {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--navy);
}

.glossar-liste {
  max-width: 660px;
  margin: 1.5rem auto 3rem;
  padding: 0 1.5rem;
}
.glossar-anzahl {
  font-size: 0.84rem;
  color: var(--entdecken-muted);
  margin-bottom: 1rem;
}
.glossar-leer {
  color: var(--entdecken-text);
  line-height: 1.8;
  padding: 1.5rem 0;
}

/* Eintraege als helle Karten auf hellem Grund, abgesetzt durch Linie */
.glossar-eintrag {
  padding: 1.3rem 0;
  border-top: 1px solid var(--entdecken-linie);
}
.glossar-eintrag:last-child { border-bottom: 1px solid var(--entdecken-linie); }

.glossar-kopf {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 0.4rem;
}
.glossar-begriff {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.35rem;
  color: var(--entdecken-headline);
  margin: 0;
}
.glossar-hebraeisch {
  font-size: 1.4rem;
  color: #7a5c22;
  direction: rtl;
  flex-shrink: 0;
}
.glossar-kurz {
  color: #7a5c22;
  font-size: 0.98rem;
  margin-bottom: 0.5rem;
}
.glossar-text {
  color: var(--entdecken-text);
  line-height: 1.8;
  margin-bottom: 0.6rem;
}
.glossar-fuss {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  align-items: center;
}
.glossar-stelle,
.glossar-gruppe {
  font-size: 0.8rem;
  padding: 0.2rem 0.55rem;
  border-radius: var(--radius);
  border: 1px solid var(--entdecken-linie);
  color: var(--entdecken-muted);
}
.glossar-stelle {
  border-color: rgba(122, 92, 34, 0.35);
  color: #7a5c22;
}

/* ---------- Feste ---------- */
.feste-filter {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}
.feste-liste {
  max-width: 660px;
  margin: 1.5rem auto 3rem;
  padding: 0 1.5rem;
}
.fest-eintrag {
  display: grid;
  grid-template-columns: 9rem 1fr;
  gap: 1.2rem;
  padding: 1.3rem 0;
  border-top: 1px solid var(--entdecken-linie);
}
.fest-eintrag:last-child { border-bottom: 1px solid var(--entdecken-linie); }
@media (max-width: 560px) {
  .fest-eintrag { grid-template-columns: 1fr; gap: 0.4rem; }
}

.fest-datum { display: flex; flex-direction: column; }
.fest-abstand {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.05rem;
  color: #7a5c22;
}
.fest-tag {
  font-size: 0.84rem;
  color: var(--entdecken-muted);
  margin-top: 0.1rem;
}

.fest-name {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.3rem;
  color: var(--entdecken-headline);
  margin: 0 0 0.3rem;
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 0.8rem;
}
.fest-hebraeisch {
  font-size: 1.1rem;
  color: #7a5c22;
  direction: rtl;
  flex-shrink: 0;
}
.fest-kurz {
  color: #7a5c22;
  font-size: 0.96rem;
  margin-bottom: 0.45rem;
}
.fest-text {
  color: var(--entdecken-text);
  line-height: 1.8;
  margin-bottom: 0.5rem;
}
/* Hauptfeste etwas kraeftiger */
.fest-eintrag.rang-1 .fest-name { font-size: 1.45rem; }

/* ---------- Artikel zur Parascha ---------- */
.tool-artikel {
  margin-top: 1.6rem;
  padding-top: 1.4rem;
  border-top: 1px solid rgba(200, 169, 98, 0.22);
}
.tool-artikel-titel {
  font-size: 0.8rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.8rem;
}
.tool-artikel-liste {
  display: grid;
  gap: 0.6rem;
}
.tool-artikel-link {
  display: block;
  padding: 0.7rem 0.9rem;
  background: var(--navy);
  border-radius: var(--radius);
  color: var(--text);
  text-decoration: none;
  font-size: 0.95rem;
  transition: color var(--transition);
}
.tool-artikel-link:hover { color: var(--gold); }

/* ---------- Opt-in ---------- */
.tool-optin {
  max-width: 660px;
  margin: 0 auto 3rem;
  padding: 1.75rem;
  background: var(--navy-light);
  border: 1px solid rgba(200, 169, 98, 0.22);
  border-radius: var(--radius);
  text-align: center;
}
.tool-optin-titel {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.3rem;
  color: var(--cream);
  margin-bottom: 0.5rem;
}
.tool-optin-text {
  color: var(--text-muted);
  font-size: 0.96rem;
  line-height: 1.7;
  margin-bottom: 1.2rem;
}
.tool-optin-disclaimer {
  margin-top: 0.8rem;
  color: var(--text-muted);
  font-size: 0.82rem;
}

/* ---------- Erklaertext unter dem Tool ---------- */
/* Liegt direkt auf dem hellen Seitenhintergrund. */
.tool-info {
  max-width: 660px;
  margin: 0 auto 3rem;
  padding: 0 1.5rem;
}
.tool-info h2 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.35rem;
  color: var(--entdecken-headline);
  margin-bottom: 0.7rem;
}
.tool-info p {
  color: var(--entdecken-text);
  line-height: 1.8;
  margin-bottom: 0.9rem;
}
/* Dunkler als das Marken-Gold, damit der Kontrast auf hellem Grund
   ueber 4.5 liegt. Reines --gold kaeme nur auf 2.4. */
.tool-info a {
  color: #7a5c22;
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* ---------- Uebersichtsseite ---------- */
/* Dieselbe Breite wie Text und Karten. Zwei Spalten statt drei: die
   Kacheln werden dadurch sogar groesser (296px statt 258px) und die
   Seite bekommt eine durchgehende Kante. */
.entdecken-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.2rem;
  max-width: 660px;
  margin: 2.5rem auto 3rem;
  padding: 0 1.5rem;
}
.entdecken-kachel {
  display: flex;
  flex-direction: column;
  padding: 1.6rem;
  background: var(--navy-light);
  border: 1px solid rgba(200, 169, 98, 0.22);
  border-radius: var(--radius);
  text-decoration: none;
  transition: border-color var(--transition), transform var(--transition);
}
.entdecken-kachel:hover {
  border-color: var(--gold);
  transform: translateY(-2px);
}
.entdecken-icon {
  width: 30px;
  height: 30px;
  margin-bottom: 0.9rem;
  color: var(--gold);
}
.entdecken-kachel-titel {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.25rem;
  color: var(--cream);
  margin-bottom: 0.45rem;
}
.entdecken-kachel-text {
  color: var(--text-muted);
  font-size: 0.94rem;
  line-height: 1.7;
  flex-grow: 1;
}
.entdecken-kachel-cta {
  margin-top: 1rem;
  color: var(--gold);
  font-size: 0.9rem;
}

@media (max-width: 600px) {
  .tool-card,
  .tool-ergebnis:not(:empty),
  .tool-optin {
    padding: 1.25rem;
  }
  .tool-hero { padding-top: 5.5rem; }
}
