body, p, h1, h2, h3, h4, h5, h6 {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Oxygen", "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
}

.glass-effect {
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  background-color: rgba(255, 255, 255, 0.6);
}
/* Desktop only: Blur-Effekt */
@media (min-width: 782px) {
  .has-glass-effect {
    background-color: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
  }
}

/* Optional: Mobile explizit */
@media (max-width: 781px) {
  .has-glass-effect {
    background-color: transparent !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
  }
}

.cta-button {
    border-radius: 1rem;
    background: linear-gradient(180deg, #FF6F40 0%, #FE4E15 100%);
    box-shadow: 0px 11px 22px 0px rgba(255, 77, 0, 0.40);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.cta-button:hover {
    transform: translateY(-1px);
box-shadow: 0px 6px 11px 0px rgba(255, 77, 0, 0.40);
}

:where(.wp-site-blocks *) :focus:not(:focus-visible) {
  outline: none !important;
  box-shadow: none !important;
}

:where(.wp-site-blocks *) :focus-visible {
  outline: none;
  box-shadow: 0 0 0 3px rgba(0, 122, 255, 0.6);
  border-radius: 8px;
  transition: box-shadow 0.2s ease;
}

footer a {
  text-decoration: none;
}

footer a:hover {
  text-decoration: underline;
}

#table-of-contents a {
  text-decoration: none;
  color: inherit;
}

#table-of-contents a:hover {
  text-decoration: underline;
}

#table-of-contents .toc-link.active {
  font-weight: bold;
  color: var(--your-accent-color, #007aff); /* Apple-Blau */
}

#reading-progress-container {
  position: relative;
  height: 4px;
  width: 100%;
  background: rgba(0, 0, 0, 0.05); /* dezenter Hintergrund */
  border-radius: 999px;
  overflow: hidden;
  margin-top: 1rem;
}

#reading-progress-bar {
  height: 100%;
  width: 0%;
  background-color: #007aff; /* nur Apple-Blau */
  transition: width 0.1s ease-out;
  border-radius: inherit;
}