h1, h2, h3 {
  font-family: 'tex_gyre', serif;
  font-feature-settings: "smcp"; /* Small Caps aktivieren */
  font-variant-caps: small-caps;
}

/* Für komplett in Kapitälchen: */
.kapitälchen {
  font-family: 'tex_gyre', serif;
  font-feature-settings: "smcp", "c2sc"; /* All Caps to Small Caps */
  font-variant-caps: all-small-caps;
}

h1 {
  text-align: right;
  font-size: xxx-large;
  font-weight: normal;
}

h2 {
  display: inline-block;
  width: 100%;
  color: darkgreen;
  text-indent: 20px;
}
h2::after {
  content: '';
  width: 100%;
  height: 2px;
  background-color: darkgreen;
  display: inline-block;
}

p {
  text-align: justify;
  text-align-last: left;
  hyphens: auto;
  font-size: large;
  line-height: 1.75;
}

@media (max-width: 768px) {
  .blocksatz {
    text-align-last: left; /* Auf Mobilgeräten linksbündig */
    hyphens: auto;
    word-spacing: normal;
  }