/* Lesebreite + Typo */
    .article-wrap{
      max-width: 880px;
      margin: 0 auto;
      padding-bottom: 30px;
    }

    .backlink{
      display: inline-block;
      margin: 8px 0 18px;
      text-decoration: none;
      font-weight: 700;
      color: rgba(0,0,0,.78);
    }
    .backlink:hover{ text-decoration: underline; }

    .article-head{
      margin: 6px 0 18px;
    }
    .article-title{
      margin: 0 0 6px;
      font-size: 34px;
      line-height: 1.15;
      letter-spacing: -0.2px;
      font-weight: 900;
      color: rgba(0,0,0,.90);
    }
    .article-subtitle{
      margin: 0;
      font-size: 18px;
      line-height: 1.4;
      font-weight: 600;
      color: rgba(0,0,0,.68);
    }

    .article-meta{
      margin-top: 14px;
      padding-top: 14px;
      border-top: 1px solid rgba(0,0,0,.10);
      display: flex;
      flex-wrap: wrap;
      gap: 10px 16px;
      color: rgba(0,0,0,.62);
      font-size: 14px;
    }

    .article{
      margin-top: 18px;
      font-size: 17px;
      line-height: 1.8;
      color: rgba(0,0,0,.88);
    }

    .article p{ margin: 0 0 16px; }

    .section-title{
      margin: 26px 0 10px;
      font-size: 20px;
      font-weight: 900;
      letter-spacing: 0.2px;
      color: rgba(0,0,0,.88);
    }

    .poem{
      margin: 18px 0 20px;
      padding: 14px 16px;
      border: 1px solid rgba(0,0,0,.10);
      border-radius: 14px;
      background: rgba(255,255,255,.65);
      font-size: 16px;
      line-height: 1.7;
    }
    .poem .poem-title{
      font-weight: 900;
      margin-bottom: 8px;
      color: rgba(0,0,0,.86);
    }
    .about-note{
      margin-top: 12px;
      font-size: 14px;
      color: rgba(0,0,0,.64);
    }
    .poem pre{
      margin: 0;
      white-space: pre-wrap;
      font-family: inherit;
    }

    figure.figure{
      margin: 22px 0 22px;
      padding: 14px;
      border: 1px solid rgba(0,0,0,.10);
      border-radius: 14px;
      background: rgba(255,255,255,.55);
    }
    figure.figure img{
      width: 100%;
      height: auto;
      display: block;
      border-radius: 12px;
    }
    figure.figure figcaption{
      margin-top: 10px;
      font-size: 14px;
      color: rgba(0,0,0,.65);
      line-height: 1.45;
    }

    .psalm{
      margin: 18px 0 16px;
      padding: 14px 16px;
      border-left: 4px solid rgba(0,0,0,.18);
      background: rgba(255,255,255,.45);
      border-radius: 12px;
    }
    .psalm p{ margin: 0; }

    /* Mobile Feinschliff */
    @media (max-width: 820px){
      .article-title{ font-size: 28px; }
      .article{ font-size: 16px; }
      .poem{ font-size: 15px; }
    }

    /* Druckfreundlich */
    @media print{
      .nav, .site-footer, .backlink{ display: none !important; }
      body{ background: #fff !important; }
      .article{ color: #000; }
      figure.figure{ break-inside: avoid; }
    }
    /* ===== Reading Progress ===== */

.reading-progress{
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: rgba(0,0,0,.08);
  z-index: 9999;
}

.reading-progress__bar{
  height: 100%;
  width: 0%;
  background: linear-gradient(
    90deg,
    #6b8f8b,
    #3f6f6b
  );
  transition: width 0.1s linear;
}