/* Fix Chrome deprecation warning: H1UserAgentFontSizeInSection */
h1 {
  font-size: 2.25rem;
  line-height: 2.5rem;
  font-weight: 700;
}

article h1, section h1, aside h1, nav h1 {
  font-size: 2.25rem;
  line-height: 2.5rem;
  font-weight: 700;
}

.prose h1 {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  font-weight: 700;
  color: #1e3a5f;
  margin-top: 2.5rem;
  margin-bottom: 1rem;
  line-height: 1.3;
}

/* Inhaltsverzeichnis (item.html.twig): Mobile eingeklappt, Desktop immer sichtbar.
   Statisch per CSS, damit vor der Alpine-Initialisierung kein Layout-Sprung entsteht. */
.toc-list {
  display: none;
}
.toc-list.toc-open {
  display: block;
}
@media (min-width: 768px) {
  .toc-list {
    display: block;
  }
}
