/* Eigene Schriften, alles selbst ausgeliefert (variable Fonts, SIL OFL):
   Cinzel fuer den Schriftzug, Cormorant Garamond fuer Ueberschriften und
   Navigation, EB Garamond fuer den Lesetext. */
@font-face {
  font-family: "Cormorant Garamond";
  src: url("/static/fonts/CormorantGaramond.woff2") format("woff2");
  font-weight: 300 700;
  font-display: swap;
}
@font-face {
  font-family: "EB Garamond";
  src: url("/static/fonts/EBGaramond.woff2") format("woff2");
  font-weight: 400 800;
  font-display: swap;
}
@font-face {
  font-family: "EB Garamond";
  src: url("/static/fonts/EBGaramond-Italic.woff2") format("woff2");
  font-weight: 400 800;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "Great Vibes";
  src: url("/static/fonts/GreatVibes.woff2") format("woff2");
  font-weight: 400;
  font-display: swap;
}
@font-face {
  font-family: "Alegreya";
  src: url("/static/fonts/Alegreya.woff2") format("woff2");
  font-weight: 400 700;
  font-display: swap;
}
@font-face {
  font-family: "Alegreya";
  src: url("/static/fonts/Alegreya-Italic.woff2") format("woff2");
  font-weight: 400 700;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "Tangerine";
  src: url("/static/fonts/Tangerine.woff2") format("woff2");
  font-weight: 700;
  font-display: swap;
}
@font-face {
  font-family: "Sorts Mill Goudy";
  src: url("/static/fonts/SortsMillGoudy.woff2") format("woff2");
  font-weight: 400;
  font-display: swap;
}

/* Farbwelt: warmes Papier bei Tag, tiefes Nachtblau bei Nacht. Das Thema
   folgt dem System; der Knopf in der Seitenleiste (data-thema) gewinnt. */
:root {
  --grund: #f8f4ea;
  --flaeche: #fdfaf2;
  --tinte: #262019;
  --tinte-mild: #756751;
  --gold: #a8813f;
  --gold-zart: #c4a668;
  --linie: #e2d7bf;
  --schatten: rgba(80, 60, 30, 0.08);

  /* Alegreya ueberall; nur der Empfang auf der Startseite behaelt seine
     eigenen Schriften (Goudy, Great Vibes, Tangerine, Garamond). */
  --titelschrift: "Alegreya", Georgia, serif;
  --leseschrift: "Alegreya", Georgia, serif;
}

@media (prefers-color-scheme: dark) {
  :root:not([data-thema="hell"]) {
    --grund: #14181f;
    --flaeche: #1a1f29;
    --tinte: #eae4d6;
    --tinte-mild: #9b917d;
    --gold: #d0a75c;
    --gold-zart: #93794a;
    --linie: #2c3441;
    --schatten: rgba(0, 0, 0, 0.4);
  }
}

:root[data-thema="dunkel"] {
  --grund: #14181f;
  --flaeche: #1a1f29;
  --tinte: #eae4d6;
  --tinte-mild: #9b917d;
  --gold: #d0a75c;
  --gold-zart: #93794a;
  --linie: #2c3441;
  --schatten: rgba(0, 0, 0, 0.4);
}

/* Beschriftung des Thema-Knopfs: es steht immer das Ziel darauf. */
.thema-dunkel { display: none; }
@media (prefers-color-scheme: dark) {
  :root:not([data-thema="hell"]) .thema-hell { display: none; }
  :root:not([data-thema="hell"]) .thema-dunkel { display: inline; }
}
:root[data-thema="dunkel"] .thema-hell { display: none; }
:root[data-thema="dunkel"] .thema-dunkel { display: inline; }

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

/* Sanfte Ueberblendung beim Seitenwechsel (Browser ohne Unterstuetzung
   wechseln einfach hart, wie bisher). */
@view-transition { navigation: auto; }

body {
  margin: 0;
  background: var(--grund);
  color: var(--tinte);
  font-family: var(--leseschrift);
  font-size: 1.14rem;
  line-height: 1.85;
  transition: background 0.3s, color 0.3s;
}

/* touch-action nimmt Mobil-Browsern die Doppeltipp-Wartezeit: ein Tipp
   loest sofort aus. */
a, button { touch-action: manipulation; }

a { color: var(--gold); text-decoration: none; }
a:hover { text-decoration: underline; text-underline-offset: 3px; }

/* ------- Seitenleiste ------- */

.seitenleiste {
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  width: 17rem;
  display: flex;
  flex-direction: column;
  padding: 3.5rem 2rem 1.75rem;
  background: var(--flaeche);
  border-right: 1px solid var(--linie);
  transition: background 0.3s, transform 0.25s ease;
}

.marke {
  text-align: center;
  padding-bottom: 2rem;
  margin-bottom: 2rem;
  border-bottom: 1px solid var(--linie);
}

.markenname {
  font-family: "Sorts Mill Goudy", var(--titelschrift);
  font-weight: 400;
  font-size: 2.3rem;
  letter-spacing: 0.05em;
  color: var(--gold);
  text-shadow: 0 1px 2px var(--schatten);
}
.markenname:hover { text-decoration: none; color: var(--tinte); }

.seitenleiste nav {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.navpunkt {
  font-family: var(--titelschrift);
  font-weight: 500;
  font-size: 1.25rem;
  letter-spacing: 0.05em;
  color: var(--tinte);
  padding: 0.35rem 0.9rem;
  border-left: 2px solid transparent;
  transition: color 0.15s, border-color 0.15s;
}
.navpunkt:hover {
  color: var(--gold);
  text-decoration: none;
}
.navpunkt.aktiv {
  color: var(--gold);
  border-left-color: var(--gold);
  font-weight: 600;
}

.leistenfuss {
  margin-top: auto;
  padding-top: 1.5rem;
  text-align: center;
}
.rechtlink {
  color: var(--tinte-mild);
  font-size: 0.8rem;
  letter-spacing: 0.06em;
  margin: 0 0.5rem;
}
.rechtlink:hover { color: var(--gold); }

.thema-knopf {
  display: block;
  width: 2.7rem;
  height: 2.7rem;
  margin: 1.1rem auto 0;
  border: 1px solid var(--linie);
  background: none;
  color: var(--tinte-mild);
  font-size: 1.15rem;
  line-height: 1;
  border-radius: 999px;
  cursor: pointer;
  transition: color 0.2s, border-color 0.2s;
}
.thema-knopf:hover { color: var(--gold); border-color: var(--gold-zart); }

.ikon {
  width: 1em;
  height: 1em;
  vertical-align: -0.15em;
  margin-right: 0.4em;
}
.ikon.allein { margin-right: 0; vertical-align: -0.2em; }

/* ------- Inhalt ------- */

.inhalt {
  margin-left: 17rem;
  padding: 4.5rem 2.5rem 6rem;
}

.seitenkopf, article, .willkommen {
  max-width: 41rem;
  margin-left: auto;
  margin-right: auto;
}
.liste { margin-left: auto; margin-right: auto; }

/* ------- Startseite ------- */

.start-allein { margin-top: 6vh; text-align: center; }

/* Der Empfang behaelt sein bisheriges Schriftbild. */
.start-allein .umschrift,
.start-allein .newsletter-hinweis,
.start-allein .newsletter input {
  font-family: "EB Garamond", Georgia, serif;
}
.start-allein .newsletter button {
  font-family: "Cormorant Garamond", "EB Garamond", serif;
}

/* Startseite senkrecht mittig im Sichtfenster, ohne eigene Seitenklasse:
   der Inhaltsbereich zentriert sich, sobald er den Empfang enthaelt. */
.inhalt:has(.start-allein) {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  padding-top: 1rem;
  padding-bottom: 1rem;
}
.inhalt:has(.start-allein) .start-allein { margin-top: 0; }

/* Gemischtes Motto: Pfad und Wort gross in Cormorant, das "und" dazwischen
   als goldener kalligrafischer Schwung. Gemischte Schreibung statt
   Versalien, damit Serifen und Schreibschrift zusammenfinden. */
.gruss {
  font-family: "Sorts Mill Goudy", var(--titelschrift);
  font-weight: 400;
  font-size: 4.2rem;
  letter-spacing: 0.02em;
  line-height: 1.15;
  margin: 0;
}
.gruss .und {
  font-family: "Great Vibes", cursive;
  font-weight: 400;
  font-size: 0.85em;
  letter-spacing: normal;
  text-transform: none;
  color: var(--gold);
  margin: 0 0.1em;
}

.umschrift {
  color: var(--tinte-mild);
  font-style: italic;
  font-size: 1.15rem;
  letter-spacing: 0.14em;
  margin: 0.6rem 0 0;
}
.umschrift .wa { color: var(--gold); }

/* Goldener Stern als Zaesur, mit Haarlinien links und rechts */
.willkommen::before {
  content: "";
}
.leitvers {
  position: relative;
  margin: 3.2rem auto 3.2rem;
  padding: 1.2rem 2.8rem;
  max-width: 30rem;
  font-family: "Tangerine", var(--titelschrift);
  font-weight: 700;
  font-size: 2.5rem;
  font-style: normal;
  line-height: 1.55;
  border: none;
}
.leitvers::before, .leitvers::after {
  position: absolute;
  font-family: var(--titelschrift);
  font-style: normal;
  font-size: 3.6rem;
  line-height: 1;
  color: var(--gold);
}
.leitvers::before { content: "\201E"; left: 0; top: 0.2rem; }
.leitvers::after { content: "\201C"; right: 0; bottom: -0.2rem; }

.newsletter-hinweis {
  color: var(--tinte-mild);
  font-style: italic;
  margin: 0 0 1rem;
}

.newsletter {
  display: flex;
  gap: 0.9rem 1.2rem;
  justify-content: center;
  align-items: stretch;
  flex-wrap: wrap;
  margin-top: 1rem;
}
.newsletter input {
  font-family: var(--leseschrift);
  font-size: 1.05rem;
  padding: 0.55rem 0.2rem;
  border: none;
  border-bottom: 1px solid var(--linie);
  background: none;
  color: var(--tinte);
  width: 17rem;
  max-width: 100%;
  text-align: center;
  transition: border-color 0.2s;
}
.newsletter input:focus { outline: none; border-bottom-color: var(--gold); }
.newsletter input::placeholder { color: var(--tinte-mild); letter-spacing: 0.06em; }

.newsletter button, .kontaktformular button {
  font-family: var(--titelschrift);
  font-weight: 600;
  font-size: 1rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 0.5rem 1.6rem;
  background: none;
  border: 1px solid var(--gold);
  color: var(--gold);
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
}
.newsletter button:hover, .kontaktformular button:hover {
  background: var(--gold);
  color: var(--grund);
}

/* Schmuckrahmen: doppelte Linie mit goldenem Stern, damit Anmeldung und
   Kontaktformular als eigener Kasten hervortreten. */
.schmuckrahmen {
  position: relative;
  border: 1px solid var(--gold-zart);
  outline: 1px solid var(--linie);
  outline-offset: 5px;
  padding: 2rem 1.6rem 1.8rem;
  margin: 1.4rem auto 0;
}
.schmuckrahmen::before {
  content: "✦";
  position: absolute;
  top: -0.8rem;
  left: 50%;
  transform: translateX(-50%);
  background: var(--grund);
  padding: 0 0.7rem;
  color: var(--gold);
  font-size: 0.95rem;
}
.start-allein .schmuckrahmen { max-width: 28rem; }

.formecho {
  text-align: center;
  color: var(--gold);
  margin-top: 1.4rem;
  font-style: italic;
}
.formecho.fehler { color: #b3466b; }

/* ------- Schriftenliste ------- */

.seitenkopf { text-align: center; }

.seitenkopf h1 {
  font-family: var(--titelschrift);
  font-weight: 500;
  font-size: 2.6rem;
  margin: 0;
  letter-spacing: 0.06em;
}
.zaehler {
  color: var(--tinte-mild);
  font-size: 0.85rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  margin: 0.5rem 0 0;
}

.suche {
  font-family: var(--leseschrift);
  font-size: 1.05rem;
  margin-top: 2rem;
  padding: 0.55rem 0.4rem;
  width: 24rem;
  max-width: 100%;
  border: none;
  border-bottom: 1px solid var(--linie);
  background: none;
  color: var(--tinte);
  text-align: center;
  transition: border-color 0.2s;
}
.suche:focus { outline: none; border-bottom-color: var(--gold); }
.suche::placeholder { color: var(--tinte-mild); letter-spacing: 0.06em; }
.liste {
  list-style: none;
  margin-top: 3rem;
  padding: 0;
}

/* Kachelraster: bis zu drei quadratische Karten nebeneinander */
.kacheln {
  max-width: 66rem;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(17rem, 1fr));
  gap: 1.4rem;
}

.kachel[hidden] { display: none; }

.kachel {
  aspect-ratio: 1 / 1;
  display: flex;
  flex-direction: column;
  padding: 1.5rem 1.5rem 1.3rem;
  background: var(--flaeche);
  border: 1px solid var(--linie);
  border-radius: 12px;
  overflow: hidden;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.kachel:hover {
  border-color: var(--gold-zart);
  box-shadow: 0 3px 18px var(--schatten);
}

.kachel .titel {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
  font-family: var(--titelschrift);
  font-weight: 600;
  font-size: 1.45rem;
  line-height: 1.25;
  color: var(--tinte);
  margin: 0.6rem 0 0.5rem;
  transition: color 0.15s;
}
.kachel .titel:hover { color: var(--gold); text-decoration: none; }

.kachel .auszug {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 4;
  overflow: hidden;
  margin: 0;
  font-family: "Alegreya", var(--leseschrift);
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--tinte-mild);
}

.kachel .weiter { margin-top: auto; padding-top: 0.8rem; }

.keine-treffer {
  text-align: center;
  color: var(--tinte-mild);
  font-style: italic;
  margin-top: 3rem;
}

.meta {
  color: var(--tinte-mild);
  font-size: 0.8rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem 1.4rem;
  align-items: center;
}

.weiter {
  font-size: 0.85rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

/* ------- Artikel ------- */

.artikelkopf { text-align: center; margin-bottom: 3rem; }

.artikelkopf .meta { justify-content: center; margin-bottom: 1.3rem; }

.artikeltitel {
  font-family: var(--titelschrift);
  font-weight: 600;
  font-size: 2.9rem;
  line-height: 1.15;
  margin: 0;
  letter-spacing: 0.01em;
}

.leseknoepfe {
  display: flex;
  gap: 0.6rem;
  justify-content: center;
  margin-top: 1.4rem;
}
.leseknoepfe button {
  font-family: var(--leseschrift);
  font-size: 0.95rem;
  min-width: 2.5rem;
  padding: 0.3rem 0.7rem;
  background: none;
  border: 1px solid var(--linie);
  border-radius: 999px;
  color: var(--tinte-mild);
  cursor: pointer;
  transition: color 0.2s, border-color 0.2s;
}
.leseknoepfe button:hover { color: var(--gold); border-color: var(--gold-zart); }

.trenner {
  color: var(--gold);
  margin: 2rem 0;
  font-size: 0.85rem;
  text-align: center;
  display: flex;
  align-items: center;
  gap: 1.2rem;
  justify-content: center;
  letter-spacing: 0;
}
.trenner::before, .trenner::after {
  content: "";
  flex: 0 0 4.5rem;
  height: 1px;
  background: var(--linie);
}

/* Lesetext in Alegreya, dem frei lizenzierten Gegenstueck zur Quadraat
   von renovatio.zaytuna.edu; Startseite und Ueberschriften bleiben wie
   gehabt. */
.text {
  font-family: "Alegreya", var(--leseschrift);
  font-size: 1.14rem;
  hyphens: auto;
  -webkit-hyphens: auto;
}
.text p { margin: 0 0 1.4rem; }

.text h2, .text h3 {
  font-family: var(--titelschrift);
  font-weight: 600;
  font-size: 1.8rem;
  line-height: 1.3;
  margin: 2.8rem 0 1rem;
  color: var(--tinte);
}
.text h2::after, .text h3::after {
  content: "";
  display: block;
  width: 3.2rem;
  height: 1px;
  background: var(--gold-zart);
  margin-top: 0.5rem;
}
.text blockquote {
  margin: 1.8rem 0;
  padding: 0.2rem 0 0.2rem 1.4rem;
  border-left: 2px solid var(--gold);
  color: var(--tinte-mild);
  font-style: italic;
}
.text a { text-decoration: underline; text-underline-offset: 3px; }
.text ul { padding-left: 1.4rem; }
.text img {
  display: block;
  max-width: 100%;
  margin: 2.4rem auto;
  border: 1px solid var(--linie);
  box-shadow: 0 2px 14px var(--schatten);
}

.signatur {
  font-family: "Great Vibes", cursive;
  font-size: 2.1rem;
  line-height: 1.4;
  margin-top: 2.2rem;
}

/* Leselinie: duenner goldener Fortschrittsbalken am oberen Rand */
.leselinie {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  width: 0;
  background: var(--gold);
  z-index: 40;
}

/* Abo-Kasten im Artikel */
.artikel-abo {
  text-align: center;
  margin: 2.5rem 0;
  padding: 1.8rem 1rem;
  border-top: 1px solid var(--linie);
  border-bottom: 1px solid var(--linie);
}
.artikel-abo .newsletter-hinweis { margin-bottom: 0.9rem; }

/* Reihen-Kasten: die uebrigen Teile derselben Serie */
.reihe {
  margin: 2.5rem 0 0;
  padding: 1.4rem 1.6rem;
  border: 1px solid var(--linie);
  border-radius: 8px;
  background: var(--flaeche);
}
.reihe h2 {
  font-family: var(--titelschrift);
  font-weight: 600;
  font-size: 1.25rem;
  margin: 0 0 0.7rem;
}
.reihe ul { list-style: none; margin: 0; padding: 0; }
.reihe li { padding: 0.25rem 0; }
.reihe .aktuell { color: var(--tinte-mild); }
.reihe .aktuell::after { content: " (dieser Beitrag)"; font-size: 0.85em; }

/* Weiterlesen-Angebot */
.lesepos { text-align: center; margin: 0 0 1rem; }
.lesepos button {
  font-family: var(--leseschrift);
  font-size: 0.92rem;
  font-style: italic;
  letter-spacing: 0.04em;
  padding: 0.4rem 1.2rem;
  border: 1px solid var(--gold-zart);
  border-radius: 999px;
  background: none;
  color: var(--gold);
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
}
.lesepos button:hover { background: var(--gold); color: var(--grund); }

/* Teilen-Knoepfe */
.teilen {
  display: flex;
  gap: 0.8rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 1.6rem;
}
.teilen button, .teilen-knopf {
  font-family: var(--leseschrift);
  font-size: 0.88rem;
  letter-spacing: 0.06em;
  padding: 0.35rem 1rem;
  border: 1px solid var(--linie);
  border-radius: 999px;
  background: none;
  color: var(--tinte-mild);
  cursor: pointer;
  transition: color 0.2s, border-color 0.2s;
}
.teilen button:hover, .teilen-knopf:hover {
  color: var(--gold);
  border-color: var(--gold-zart);
  text-decoration: none;
}

/* Nachbar-Schriften unter dem Artikel */
.nachbarn {
  display: flex;
  justify-content: space-between;
  gap: 1.5rem;
  margin-bottom: 1.6rem;
  text-align: left;
}
.nachbarn a {
  max-width: 46%;
  font-family: var(--titelschrift);
  font-weight: 500;
  font-size: 1.05rem;
  line-height: 1.4;
}
.nachbarn .rechts { margin-left: auto; text-align: right; }

.artikelfuss { text-align: center; margin-top: 3rem; }
.artikelfuss a {
  font-size: 0.85rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.artikelfuss .teilen-knopf {
  font-size: 0.88rem;
  letter-spacing: 0.06em;
  text-transform: none;
}

.zurueck { font-size: 0.9rem; }

/* Kompakte Seiten (Über uns, Kontakt, Impressum, Datenschutz): engere
   Abstaende und kleinere Grade, damit alles moeglichst ohne Scrollen
   auf einen Bildschirm passt. */
.inhalt:has(.kompakt) { padding-top: 2rem; }
.kompakt .artikelkopf { margin-bottom: 1rem; }
.kompakt .artikeltitel { font-size: 1.9rem; }
.kompakt .trenner { margin: 0.9rem 0; }
.kompakt .text { font-size: 1.2rem; line-height: 1.75; }
.kompakt .text p { margin-bottom: 0.85rem; }
.kompakt .text ul { margin: 0.4rem 0 2rem; }
.kompakt .text h2, .kompakt .text h3 { font-size: 1.3rem; margin: 1.4rem 0 0.6rem; }
.kompakt .signatur { font-size: 1.7rem; margin-top: 2.4rem; }
.kompakt .kontaktformular {
  gap: 0.65rem;
  margin-top: 2.2rem;
  padding: 1.5rem 1.4rem 1.3rem;
}
.kompakt .kontaktformular input,
.kompakt .kontaktformular textarea { padding: 0.45rem 0.2rem; }

/* ------- Kontaktformular ------- */

.kontaktformular {
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
  margin-top: 3.6rem;
}
.kontaktformular input, .kontaktformular textarea {
  font-family: var(--leseschrift);
  font-size: 1.05rem;
  padding: 0.65rem 0.2rem;
  border: none;
  border-bottom: 1px solid var(--linie);
  background: none;
  color: var(--tinte);
  resize: vertical;
  transition: border-color 0.2s;
}
.kontaktformular input:focus, .kontaktformular textarea:focus {
  outline: none;
  border-bottom-color: var(--gold);
}
.kontaktformular input::placeholder, .kontaktformular textarea::placeholder {
  color: var(--tinte-mild);
  letter-spacing: 0.04em;
}
.kontaktformular button { align-self: center; margin-top: 0.6rem; }

/* ------- Druck und PDF ------- */

/* Beim Drucken oder Speichern als PDF liegt auf jeder Seite ein
   halbtransparentes Wasserzeichen aus wiederholten Schriftzuegen in
   schraegen Bahnen; der Text darunter bleibt lesbar. Ein fest
   positioniertes Element wird von den Browsern auf jeder Druckseite
   wiederholt. */
@media print {
  /* Im Druck immer helle Farben, egal welches Thema aktiv ist: Papier ist
     weiss, und ohne diese Regel wuerde die helle Schrift des dunklen
     Themas auf dem weissen Blatt unsichtbar. */
  :root, :root[data-thema="dunkel"], :root[data-thema="hell"] {
    --grund: #ffffff;
    --flaeche: #ffffff;
    --tinte: #1e1a14;
    --tinte-mild: #55503f;
    --gold: #8a6d3b;
    --gold-zart: #a68b5e;
    --linie: #cfc7b4;
    --schatten: rgba(0, 0, 0, 0);
  }
  /* Das Wasserzeichen liegt als gekacheltes Hintergrundbild direkt auf
     dem Seitenkoerper: kein fest positioniertes Element, mit dem manche
     Druckwerke (WebKit) sonst leere Seiten erzeugen. */
  body, .inhalt {
    background: #ffffff url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='280' height='170'%3E%3Ctext x='10' y='95' font-family='Georgia, serif' font-size='19' fill='rgba(70,58,35,0.16)' transform='rotate(-25 140 85)'%3E%C2%A9 sufiswelt.com%3C/text%3E%3C/svg%3E") repeat !important;
    color: #1e1a14;
  }
  .seitenleiste, .menue-knopf, .schleier, .leselinie, .leseknoepfe,
  .teilen, .artikel-abo, .newsletter, .newsletter-hinweis { display: none !important; }
  .inhalt { margin-left: 0; }
}

/* ------- Mobiles Menü ------- */

.menue-knopf {
  display: none;
  position: fixed;
  top: 0.9rem;
  left: 0.9rem;
  z-index: 30;
  width: 2.6rem;
  height: 2.6rem;
  border: 1px solid var(--linie);
  border-radius: 6px;
  background: var(--flaeche);
  cursor: pointer;
  padding: 0.65rem 0.55rem;
  flex-direction: column;
  justify-content: space-between;
}
.menue-knopf span { display: block; height: 2px; background: var(--tinte); border-radius: 1px; }

.schleier { display: none; }

@media (max-width: 52rem) {
  .menue-knopf { display: flex; }

  .seitenleiste {
    transform: translateX(-100%);
    z-index: 20;
    box-shadow: 0 0 30px var(--schatten);
  }
  body.menue-offen .seitenleiste { transform: translateX(0); }
  body.menue-offen .schleier {
    display: block;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.35);
    z-index: 10;
  }

  .inhalt { margin-left: 0; padding: 4.5rem 1.25rem 4rem; }

  /* Auf dem Telefon nicht senkrecht zentrieren: sonst schiebt sich das
     Motto unter den Menueknopf. */
  .inhalt:has(.start-allein) {
    display: block;
    min-height: auto;
    padding-top: 4.5rem;
    padding-bottom: 4rem;
  }
  /* Alles auf einen Telefonbildschirm: engere Abstaende, damit auch das
     Anmeldefeld ohne Wischen sichtbar ist. */
  .start-allein { margin-top: 0; }
  .gruss { font-size: 2.8rem; }
  .umschrift { margin-bottom: 0.6rem; }
  .leitvers { font-size: 1.8rem; margin: 1.5rem auto; padding-top: 0.8rem; }
  .newsletter-hinweis { margin-bottom: 0.6rem; }
  .artikeltitel { font-size: 2rem; }
  .kachel { aspect-ratio: auto; }
  .newsletter { flex-direction: column; align-items: center; gap: 1.2rem; }
  .newsletter button { margin-left: 0; }
}
