@import url('https://fonts.googleapis.com/css2?family=Lora:ital,wght@0,400;0,600;1,400&display=swap');

/* ========== FRAGMENTE HEADER: Marginalian Sticky + Shrink ========== */

/* Basis-Reset - ERWEITERT für alle Browser */
*, *::before, *::after {
  box-sizing: border-box;
}

body, html, .wp-site-blocks {
  margin: 0 !important;
  padding: 0 !important;
  overflow: visible !important;
}

/* Sticky Header */
header.wp-block-template-part {
  position: sticky !important;
  top: 0 !important;
  z-index: 1000 !important;
  background: transparent !important;
  margin: 0 !important;
  padding: 0 !important;
  overflow: visible !important;
}

/* Gelbes Band - SCHMALERE Marginalia-Breite */
.wp-block-group.site-header-container.is-layout-constrained {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5em;
  max-width: 1000px;  /* Schmaler: 1000px statt 1200px */
  width: 1000px;
  margin: 0 auto;  /* Zentriert */
  padding: 38px 40px; /* Auch Header auf px */
  background: #ffdd00;
  border-radius: 0;  /* Keine Rundung */
  box-shadow: 0 2px 12px 0 rgba(0,0,0,0.05);
  transition: padding 0.35s cubic-bezier(.42,0,.58,1.0),
    background 0.35s, border-radius 0.35s, justify-content 0.5s;
}

/* Logo & Titel (Header) - NORMAL */
.site-logo, .site-title {
  transition: transform 0.45s cubic-bezier(.7,.3,.3,.8), opacity 0.45s, margin 0.45s;
  will-change: opacity, transform, margin;
  display: flex !important;
  align-items: center !important;
  margin: 0 !important;
  padding: 0 !important;
  height: 95px;
}
.site-logo { align-self: center; }
.site-title {
  font-size: 2.4rem;
  margin-left: 1.6em;
  font-weight: 700;
  letter-spacing: 0.02em;
  white-space: nowrap;
}

/* SHRINK-EFFEKT Header - GLEICHE BREITE */
.wp-block-group.site-header-container.is-layout-constrained.is-shrunk {
  padding: 7px 2.5rem !important;
  border-radius: 0 !important;
  box-shadow: 0 1px 4px rgba(0,0,0,0.08) !important;
  justify-content: flex-start !important;
}
.wp-block-group.site-header-container.is-layout-constrained.is-shrunk .site-logo {
  transform: scale(0.45);
  margin-left: 0 !important;
  margin-right: 1.1em !important;
}
.wp-block-group.site-header-container.is-layout-constrained.is-shrunk .site-title {
  opacity: 0;
  pointer-events: none;
  transform: scale(0.5) translateX(-55%);
}

/* ========== SPLIT-ANSICHT - EINFACHES FLEXBOX ========== */
.wp-block-columns.split-layout {
  display: flex;
  align-items: start;
  max-width: 1000px;
  width: 1000px;
  margin: 0 auto;
  padding: 40px 40px 40px 1px; /* Noch weniger linkes Padding */
  gap: 0.5rem; /* Kleinerer Gap wie vorher */
  box-sizing: border-box;
}

.wp-block-columns.split-layout > .wp-block-column:first-child {
  width: 240px;
  max-width: 240px; /* Explizite Begrenzung */
  min-width: 240px; /* Verhindert Schrumpfen */
  flex-shrink: 0; /* Verhindert Schrumpfen */
  flex-grow: 0; /* Verhindert Wachsen */
  display: flex;
  flex-direction: column;
  align-items: flex-start !important;
  justify-content: flex-start !important;
  padding-top: 0.4em;
  padding-left: 0;
  text-align: left !important;
  gap: 1.4em;
  box-sizing: border-box;
  
  /* Dünne graue Trennlinie rechts */
  border-right: 1px solid #e0e0e0;
  padding-right: 1.5rem; /* Etwas Abstand zur Linie */
}

/* Rechte Spalte: Nimmt restlichen Platz */
.wp-block-columns.split-layout > .wp-block-column:last-child,
.wp-block-post-content {
  flex: 1; /* Nimmt verfügbaren Platz */
  margin-left: 0;
  margin-right: 0;
  padding-left: 0;
  padding-right: 0;
  box-sizing: border-box;
}

/* Abstand für Content unter dem Header */
.wp-site-blocks {
  margin-top: 110px !important;
}

/* ========== MARGINALIAN-STYLE GRAUE LINKS IN LINKER SPALTE ========== */

/* Container für Titelliste */
.left-aligned-posts, .split-titles {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start !important;
  gap: 0 !important;
  margin: 0;
  padding: 1.3em 0 0 0;  /* Linkes Padding entfernt */
}

/* Standard-Zustand: Grauer Hintergrund */
.left-aligned-posts .wp-block-post-title,
.split-titles .wp-block-post-title {
  font-family: 'Lora', Georgia, serif !important;
  font-weight: 400 !important;  /* Feiner gemacht */
  font-size: 1.05rem !important;
  line-height: 1.32 !important;
  color: #2c2c2c !important;
  margin: 0 0 0.2em 0 !important;  /* KLEINERER ABSTAND NACH TITEL */
  padding: 0 !important; /* Kein Padding am Container */
  background: none !important; /* Kein Hintergrund am Container */
  border: none !important;
  border-radius: 0 !important;
  text-align: left !important;
  cursor: pointer !important;
  transition: all 0.2s ease !important;
  display: block !important;
  text-decoration: none !important;
  box-shadow: none !important;
  box-sizing: border-box;
}

/* Links innerhalb der Titel - HIER ist der Trick */
.left-aligned-posts .wp-block-post-title a,
.split-titles .wp-block-post-title a,
.wp-block-query-loop a,
.wp-block-post-template a {
  color: #2c2c2c !important;
  border-bottom: none !important;
  font-family: inherit !important;
  font-size: inherit !important;
  text-decoration: none !important;
  background: #e6e6e6 !important; /* Hintergrund auf den Link */
  box-shadow: 0 4px 0 0 #e6e6e6, 0 -4px 0 0 #e6e6e6 !important; /* Schatten oben und unten */
  font-style: normal !important;
  font-weight: inherit !important;
  margin: 0 !important;
  padding: 0.9em 1.2em !important; /* Padding auf den Link */
  transition: all 0.2s ease !important;
  display: inline !important; /* Inline für natürlichen Zeilenumbruch */
  line-height: 1.45 !important;
  
  /* Moderne Alternative zu box-decoration-break */
  background-clip: padding-box !important;
}

/* Hover-Effekt: Invertiert */
.left-aligned-posts .wp-block-post-title:hover,
.left-aligned-posts .wp-block-post-title:focus,
.split-titles .wp-block-post-title:hover,
.split-titles .wp-block-post-title:focus {
  background: #2c2c2c !important;
  color: #ffffff !important;
  box-shadow: none !important;
  outline: none !important;
  text-decoration: none !important;
}

.left-aligned-posts .wp-block-post-title:hover a,
.left-aligned-posts .wp-block-post-title:focus a,
.split-titles .wp-block-post-title:hover a,
.split-titles .wp-block-post-title:focus a {
  color: #ffffff !important;
  text-decoration: none !important;
  box-shadow: none !important;
}

/* Aktiver Zustand */
.left-aligned-posts .wp-block-post-title.active,
.split-titles .wp-block-post-title.active,
.wp-block-post-title a[aria-current="page"],
.wp-block-post-title.is-active,
.split-titles .wp-block-post-title a.active {
  background: #1a1a1a !important;
  color: #ffffff !important;
  font-weight: 500 !important;
  border-left: none !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  text-decoration: none !important;
  transition: all 0.2s ease !important;
}

.left-aligned-posts .wp-block-post-title.active a,
.split-titles .wp-block-post-title.active a,
.wp-block-post-title.is-active a {
  color: #ffffff !important;
  text-decoration: none !important;
  box-shadow: none !important;
}

/* Unterstützung für .is-active Klasse (zusätzlich zu .active) */
.left-aligned-posts .wp-block-post-title.is-active,
.split-titles .wp-block-post-title.is-active,
.left-aligned-posts .wp-block-post-title.is-active a,
.split-titles .wp-block-post-title.is-active a {
  background: #1a1a1a !important;
  color: #ffffff !important;
  font-weight: 500 !important;
  border-left: none !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  text-decoration: none !important;
  transition: all 0.2s ease !important;
}

/* ========== BILDER IN LINKER SPALTE ========== */

/* Abstand vor Bildern */
.left-aligned-posts .wp-block-post-featured-image,
.left-aligned-posts .wp-block-image {
  margin-top: 0.2em !important;
  margin-bottom: 1.5em !important;
}

/* Container zwischen Einträgen */
.left-aligned-posts .wp-block-group {
  margin-bottom: 1.8em !important;
  display: flex !important;
  flex-direction: column !important;
  align-items: flex-start !important;
  gap: 0 !important;
}

/* ========== RESPONSIVE MOBILE ========== */
@media (max-width: 900px) {
  .wp-block-columns.split-layout {
    grid-template-columns: 1fr;
    max-width: 99vw;
    padding: 1rem 0.5rem;
    gap: 1rem;
    justify-content: stretch; /* Auf Mobile volle Breite */
  }
  .wp-block-columns.split-layout > .wp-block-column {
    max-width: 100% !important;
    min-width: 0 !important;
    padding-left: 0.5rem !important;
  }
  .left-aligned-posts, .split-titles {
    align-items: center;
    padding-left: 0;
    padding-top: 0.5em;
  }
  .left-aligned-posts .wp-block-post-title,
  .split-titles .wp-block-post-title {
    font-size: 0.95rem !important;
    padding: 0.8em 1em !important;
    text-align: center !important;
    margin: 0 0 0.2em 0 !important;
  }
  .left-aligned-posts .wp-block-post-featured-image,
  .left-aligned-posts .wp-block-image {
    margin-top: 0.2em !important;
    margin-bottom: 1.2em !important;
  }
  /* Header Mobile Anpassung */
  .wp-block-group.site-header-container.is-layout-constrained {
    max-width: 100%;
    width: 100%;
    padding: 38px 1rem;
  }
  .wp-block-group.site-header-container.is-layout-constrained.is-shrunk {
    padding: 7px 1rem !important;
  }
}

/* ========== TYPOGRAFIE ========= */
body {
  font-family: 'Georgia', 'Merriweather', 'Times New Roman', serif;
  font-size: 1.1rem;
  line-height: 1.95;
  color: #191919;
  background: #fff;
  letter-spacing: 0.01em;
  font-weight: 400;
}
h1, h2, h3, h4 {
  font-family: 'Montserrat', 'Inter', 'Fira Sans', Arial, sans-serif;
  font-weight: 700;
  letter-spacing: 0.01em;
  line-height: 1.15;
  color: #181818;
}
h1 { font-size: 2.8rem; margin-bottom: 1.2rem; }
h2 { font-size: 2rem; margin-bottom: 1rem; }
h3 { font-size: 1.35rem; }
h4 { font-size: 1.08rem; }
p { margin-bottom: 1.3em; }

@media (max-width: 900px) {
  body { font-size: 1rem; }
  h1 { font-size: 2rem; }
  h2 { font-size: 1.4rem; }
}

/* ========== MARGINALIAN-STYLE EINGEFÜGTE TITEL ========== */

.marginalian-header {
  margin: 0 0 2.5rem 0;
  padding: 0;
  width: 100%;
}

.marginalian-title {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, "avenir next", avenir, "segoe ui", "helvetica neue", helvetica, Ubuntu, roboto, noto, arial, sans-serif !important;
  font-size: 2.5rem !important;
  font-weight: 400 !important;
  line-height: 1.2 !important;
  color: #191919 !important;
  margin: 0 0 1.5rem 0 !important;
  padding: 0 !important;
  text-align: left !important;
  letter-spacing: -0.02em !important;
  font-style: normal !important;
}

.marginalian-separator {
  width: 100% !important;
  max-width: 100% !important;
  height: 1px !important;
  background-color: #d0d0d0 !important;
  border: none !important;
  margin: 0 0 2rem 0 !important;
  padding: 0 !important;
  opacity: 0.7 !important;
  display: block !important;
}

@media (max-width: 900px) {
  .marginalian-title {
    font-size: 1.9rem !important;
    line-height: 1.25 !important;
  }
  .marginalian-separator {
    margin: 0 0 1.5rem 0 !important;
  }
}

/* ========== BLOCKQUOTES - MARGINALIA-STYLE ========== */
blockquote, .wp-block-quote {
  position: relative;
  margin: 2.5em 0 2.5em 0;  /* Weniger Margin */
  padding: 0 0 0 4em;  /* Nur linkes Padding für Anführungszeichen */
  background: none;  /* Kein Hintergrund */
  border: none;  /* Kein Rand */
  border-radius: 0;  /* Keine Rundung */
  box-shadow: none;  /* Kein Schatten */
  font-family: 'Georgia', serif;
  font-size: 1.2em;  /* Etwas kleiner */
  font-style: italic;
  color: #191919;  /* Dunklere Farbe wie Content */
  max-width: 100%;  /* Volle Breite nutzen */
  line-height: 1.68;
  box-sizing: border-box;
}

blockquote::before, .wp-block-quote::before {
  content: """;
  position: absolute;
  top: -0.3em;  /* Etwas höher wegen der Größe */
  left: 0;
  font-size: 8em;  /* Sehr groß: 8em */
  color: #ffda3e;
  opacity: 1;
  font-family: serif;
  line-height: 1;
  pointer-events: none;
  z-index: 1;
}

blockquote cite, .wp-block-quote cite {
  display: block;
  margin-top: 1.5em;  /* Mehr Abstand */
  color: #191919;  /* Gleiche Farbe wie Text */
  font-size: 1em;  /* Normale Größe */
  font-style: normal;
  font-weight: normal;  /* Normal statt 500 */
  text-align: left;  /* Links statt rechts */
  letter-spacing: 0;
}

blockquote cite::before,
.wp-block-quote cite::before {
  content: "— ";
  color: #191919;  /* Gleiche Farbe wie Text */
  font-size: 1em;
  font-family: 'Georgia', serif;
  margin-right: 0.3em;
  letter-spacing: 0;
  vertical-align: baseline;
}

@media (max-width: 900px) {
  blockquote, .wp-block-quote {
    padding-left: 4em;  /* Mehr Platz für große Anführungszeichen */
    font-size: 1.1em;
    max-width: 98vw;
  }
  blockquote::before, .wp-block-quote::before {
    font-size: 5em;  /* Auch auf Mobile entsprechend größer */
  }
}

/* ========== BILDER IM CONTENT ========== */
.entry-content .wp-block-image,
.wp-block-post-content .wp-block-image,
.entry-content .wp-block-image.aligncenter,
.wp-block-post-content .wp-block-image.aligncenter {
  background: #ededed;
  border-radius: 0;
  padding: 1.1em 1.3em 1.2em 1.3em;
  margin: 2.5em auto 2.8em auto;
  max-width: 700px;
  box-shadow: 0 3px 24px 0 rgba(0,0,0,0.04);
  display: block;
  text-align: center;
  border: none;
  box-sizing: border-box;
}
.entry-content .wp-block-image img,
.wp-block-post-content .wp-block-image img {
  display: block;
  margin: 0 auto 0.5em auto;
  border-radius: 0;
  box-shadow: none;
  background: none;
  max-width: 100%;
  height: auto;
}
.entry-content .wp-block-image figcaption,
.wp-block-post-content .wp-block-image figcaption {
  font-family: 'Georgia', 'Times New Roman', Times, serif;
  font-size: 1.13em;
  color: #A14A28;
  font-style: italic;
  letter-spacing: 0.01em;
  text-align: center;
  margin: 0.12em auto 0.2em auto;
  padding: 0 0.8em;
  line-height: 1.4;
  background: none;
  border: none;
  border-radius: 0;
  box-shadow: none;
  max-width: 93%;
  font-weight: normal;
  opacity: 0.93;
}

/* Float-Bilder links */
.wp-block-post-content .wp-block-image.alignleft,
.entry-content .wp-block-image.alignleft {
  float: left !important;
  margin: 0 2rem 1rem 0 !important;
  padding: 1.1em 1.3em 1.2em 1.3em;
  background: #ededed;
  border-radius: 0;
  max-width: 280px !important;
  box-shadow: 0 3px 24px 0 rgba(0,0,0,0.04);
  clear: left;
}

@media (max-width: 768px) {
  .wp-block-post-content .wp-block-image.alignleft,
  .entry-content .wp-block-image.alignleft {
    float: none !important;
    margin: 2rem auto !important;
    max-width: 100% !important;
    display: block;
  }
  .entry-content .wp-block-image figcaption,
  .wp-block-post-content .wp-block-image figcaption {
    font-size: 1em;
    padding: 0 0.2em;
    max-width: 99vw;
  }
}

/* ========== LINKS IM CONTENT ========== */
.wp-block-post-content a,
.entry-content a {
  color: #b94c43;
  font-family: 'Georgia', 'Times New Roman', Times, serif;
  font-size: 1.12em;
  border-bottom: 2px solid #d9a59b;
  text-decoration: none;
  background: none;
  box-shadow: none;
  font-style: normal;
  font-weight: normal;
  margin: 0 0.07em;
  margin-left: 0.04em;
  margin-right: 0.06em;
  transition: color 0.19s, border-bottom-color 0.22s;
  text-underline-offset: 0.18em;
  border-radius: 0;
}
.wp-block-post-content a:hover,
.wp-block-post-content a:focus,
.entry-content a:hover,
.entry-content a:focus {
  color: #A14A28;
  border-bottom: 2.5px solid #b94c43;
  background: none;
  text-decoration: none;
  outline: none;
}

/* ========== SEPARATOREN ========== */
.entry-content hr,
.wp-block-post-content hr,
.entry-content .wp-block-separator,
.wp-block-post-content .wp-block-separator {
  border: none;
  border-top: 2px solid #b5b5b5;
  width: 100%;
  max-width: 620px;
  margin: 1.2em auto 2.1em auto;
  opacity: 0.55;
  background: none;
  height: 0;
}

/* ========== UTILITY CLASSES ========== */
.wp-block-spacer {
  display: none !important;
  height: 0 !important;
  margin: 0 !important;
  padding: 0 !important;
}

body, html, .wp-site-blocks, .is-root-container, .is-layout-constrained, .site, .site-main, .wp-block-group {
  margin-top: 0 !important;
  padding-top: 0 !important;
}

.fragment-back-btn {
  display: block;
  margin: 3em auto 1.5em auto;
  padding: 0.65em 1.8em;
  font-size: 1.09em;
  background: #fffbe6;
  color: #b8860b;
  border: 2px solid #ffdd00;
  border-radius: 22px;
  cursor: pointer;
  font-family: 'Montserrat', 'Inter', Arial, sans-serif;
  transition: background 0.17s, color 0.17s, box-shadow 0.17s;
  box-shadow: 0 2px 8px 0 rgba(220,180,0,0.07);
}
.fragment-back-btn:hover,
.fragment-back-btn:focus {
  background: #ffed7b;
  color: #181818;
  outline: none;
}

/* Ultra-minimaler Abstand - praktisch null */
.left-aligned-posts [class*="wp-block"] {
  margin-top: 0 !important;
  margin-bottom: 0 !important;  /* Komplett null */
}

.left-aligned-posts .wp-block-post-title {
  margin-bottom: 0 !important;  /* Null Abstand nach Titel */
}

/* Auch Line-Height reduzieren für engeren Look */
.left-aligned-posts .wp-block-post-title {
  line-height: 1.2 !important;  /* Noch enger */
  margin: 0 !important;
  padding: 0.9em 1.2em 0.9em 1.2em !important;  /* Gleichmäßiges Padding */
}

/* Container komplett dicht */
.left-aligned-posts .wp-block-group {
  gap: 0 !important;
  margin: 0 !important;
  padding: 0 !important;
  line-height: 1 !important;
}

/* Falls noch versteckte Abstände da sind */
.left-aligned-posts .wp-block-group > * {
  margin: 0 !important;
  padding-top: 0 !important;
  padding-bottom: 0 !important;
}

.fragment-back-btn {
  display: none !important;
}

.impressum-link {
  display: block;
  width: fit-content;
  margin: 3em auto 0 auto;        /* oben Abstand, mittig */
  font-size: 1.01em;
  font-family: 'Georgia', serif;
  color: #2c2c2c;
  opacity: 0.49;
  text-align: center;
  text-decoration: underline dotted;
  letter-spacing: 0.03em;
  transition: opacity 0.17s, color 0.18s, text-decoration 0.18s;
}
.impressum-link:hover,
.impressum-link:focus {
  opacity: 0.92;
  color: #A14A28;
  text-decoration: underline solid;
  outline: none;
}


/* Inline-Fußnoten für Fragmente */

.inline-footnote {
    position: relative;
    cursor: help;
    color: #888;
    font-size: 0.9em;
    display: inline-block;
    margin-left: 0.2em;
}

.inline-footnote {
    position: relative;
    cursor: help;
    color: #888;
    font-size: 0.9em;
    display: inline-block;
    margin-left: 0.2em;
}

.inline-footnote:hover::after {
    content: attr(data-footnote);
    position: absolute;
    top: 1.4em;
    left: 0;
    background: #fff;
    border: 1px solid #ddd;
    padding: 0.5em;
    max-width: 250px;
    font-size: 0.85em;
    z-index: 100;
    box-shadow: 0 2px 6px rgba(0,0,0,0.15);
    white-space: normal;
    line-height: 1.4;
    display: block;
    width: max-content;
    min-width: 150px;
    word-wrap: break-word;
}

/* Verstecke alle H1s in der Split-Ansicht sofort beim Laden */
.wp-block-columns.split-layout .wp-block-column:last-child h1 {
    display: none !important;
}

/* Nur Marginalian-Titel anzeigen */
.wp-block-columns.split-layout .wp-block-column:last-child h1.marginalian-title {
    display: block !important;
}


/* CSS für die Kategorie-Ansicht - zu style.css hinzufügen */

/* Kategorie-Beitragsliste */
.category-posts-list {
  margin: 2rem 0;
}

.category-post-item {
  margin-bottom: 2.5rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid #e0e0e0;
}

.category-post-item:last-child {
  border-bottom: none;
  margin-bottom: 1rem;
}

.category-post-item h3 {
  margin: 0 0 0.8rem 0;
  font-size: 1.4rem;
  line-height: 1.3;
}

.category-post-item h3 a {
  color: #191919 !important;
  text-decoration: none !important;
  border-bottom: 2px solid transparent !important;
  transition: all 0.2s ease !important;
  font-family: 'Inter', sans-serif !important;
  font-size: inherit !important;
  font-weight: 600 !important;
}

.category-post-item h3 a:hover {
  color: #b94c43 !important;
  border-bottom-color: #d9a59b !important;
}

.category-post-date {
  font-size: 0.9rem;
  color: #777;
  margin-bottom: 0.8rem;
  font-family: 'Inter', sans-serif;
}

.category-post-excerpt {
  color: #555;
  line-height: 1.6;
  font-size: 1rem;
  margin-top: 0.8rem;
}

.category-back-buttons {
  margin: 3rem 0 2rem 0;
  text-align: center;
}

.category-back-buttons .fragment-back-btn {
  display: inline-block !important;
  margin: 0 auto !important;
}

/* Responsive Anpassungen */
@media (max-width: 768px) {
  .category-post-item {
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
  }
  
  .category-post-item h3 {
    font-size: 1.2rem;
  }
  
  .category-post-date {
    font-size: 0.85rem;
  }
  
  .category-post-excerpt {
    font-size: 0.95rem;
  }
}

/* Kategorie-Links im Artikel - aktiv halten */
.wp-block-columns.split-layout .post-categories a,
.wp-block-columns.split-layout .wp-block-post-terms a {
  color: #b94c43 !important;
  text-decoration: none !important;
  border-bottom: 1px solid #d9a59b !important;
  font-size: inherit !important;
  font-family: inherit !important;
  margin: 0 0.3em !important;
  padding: 0.2em 0.4em !important;
  background: #fff !important;
  border-radius: 3px !important;
  transition: all 0.2s ease !important;
  box-shadow: none !important;
  cursor: pointer !important;
}

.wp-block-columns.split-layout .post-categories a:hover,
.wp-block-columns.split-layout .wp-block-post-terms a:hover {
  color: #A14A28 !important;
  border-bottom-color: #b94c43 !important;
  background: #ffdd00 !important;
}


/* Verstecke den nativen WordPress-H1-Titel im Artikelbereich, außer dynamische Marginalian-Titel */
.entry-content h1:not(.marginalian-title) {
  display: none !important;
}


/* ── Kategorie-Labels in der Navigationsspalte ── */
.left-aligned-posts .cat-label {
  display: block;
  font-family: 'Lora', Georgia, serif;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 7px;
  line-height: 1;
}
.cat-ersonnenes   { color: #9b7cb6; }
.cat-beobachtetes { color: #5a8a78; }
.cat-essays       { color: #c37a3d; }
.cat-fragmente    { color: #a08060; }

/* Label auf dunklem Hintergrund (aktiver Nav-Eintrag) */
.left-aligned-posts a.active-link .cat-label,
.page-id-1540 .left-aligned-posts a[style*="background: rgb(0"] .cat-label,
.page-id-1540 .left-aligned-posts a[style*="background:#1a"] .cat-label {
  color: rgba(255, 255, 255, 0.5) !important;
}
