/* =========================
   SOLOVKI – TEXTBLOCK
   ABSTÄNDE WIE IKONEN
========================= */

/* Block mittig wie bei .konzepte */
#solovkiText {
  max-width: 1000px;
  margin: 0 auto;
}

/* Fließtext */
#solovkiText,
#solovkiText p {
  font-family: "Cormorant Garamond", serif;
  font-weight: 500;
  font-size: 24px;
  line-height: 1.75;

  text-align: justify;
  hyphens: auto;
}

/* ÜBERSCHRIFT – Ikonen-Abstand */
#solovkiText h1 {
  margin-top: 6rem;     /* viel Luft von oben */
  margin-bottom: 2.2rem;

  font-size: 40px;
  font-weight: 700;
  text-align: center;
}

/* ABSÄTZE – Ikonen-Rhythmus */
#solovkiText p {
  margin: 0 0 1.65em;   /* exakt der „luftige“ Abstand */
}

/* ERSTER ABSATZ NACH H1: kein Extra-Loch */
#solovkiText h1 + p {
  margin-top: 0;
}

/* SERIFENLOS + KURSIV */
#solovkiText span.sans {
  font-family: "Calibri", Arial, sans-serif;
  font-style: italic;
  font-weight: 400;
  font-size: 0.95em;
  letter-spacing: 0.04em;
}

/* BLOCKZITATE */
#solovkiText blockquote {
  margin: 3.2rem 4rem;   /* deutlich abgesetzt wie Ikonen */

  font-size: 22px;
  line-height: 1.7;
  text-align: justify;
}

#solovkiText blockquote p {
  margin-bottom: 1.4em;
}

#solovkiText .quote-source {
  margin-top: 1.2rem;
  font-size: 0.9em;
  opacity: 0.65;
  text-align: center;
}
/* SOLOVKI – sanfter Hintergrund-Schleier */
body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 1;

  background: rgba(255, 255, 255, 0.75); /* sacht, nicht tot */
  pointer-events: none;
}

/* Inhalt über den Schleier */
.site-header,
main,
.site-footer {
  position: relative;
  z-index: 2;
}

