/* Dezente Abdunklung und weiche Überlagerung nur auf der Sektionsseite */
h1, h2, h3, p{
    color: white;
}
.sektion-page main {
  position: relative;
  background: linear-gradient(180deg, rgba(34, 66, 107, 1), rgba(168, 195, 222, 1));
  overflow: hidden;
  isolation: isolate;
}

.mitglied-box{
    background-color: rgba(34, 66, 107, 0.5);
}

.sektion-page main::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(140% 70% at 50% -20%, rgba(255, 255, 255, 0.05), transparent 65%),
    radial-gradient(120% 80% at 50% 120%, rgba(0, 0, 0, 0.18), rgba(0, 0, 0, 0.08));
  pointer-events: none;
  mix-blend-mode: soft-light;
}

/* Inhalt bleibt unverändert klickbar und klar lesbar */
.sektion-page main > * {
  position: relative;
  z-index: 1;
}

.sektion-statuten{
    background-color: transparent;
}