/*
 * Version 34: ruhiger Architekturschnitt ohne Randfuge.
 * Die Betonsektion überlappt die schwarze Schnittkante leicht, damit am
 * rechten Rand auch bei Subpixel-Rundung kein weißer Zwischenraum entsteht.
 */
.signal-strip {
  position: relative;
  z-index: 5;
  isolation: isolate;
  min-height: 142px;
  margin-bottom: -66px;
  padding-bottom: 78px;
  clip-path: polygon(
    0 0,
    100% 0,
    100% 58%,
    57% 88%,
    53.5% 76%,
    0 100%
  );
  filter: drop-shadow(0 2px 0 var(--wk-gold));
}

.signal-strip > * {
  position: relative;
  z-index: 2;
}

/* Das Betonmuster bleibt in der Fläche – zusätzliche Zacken entfallen. */
.signal-strip::before {
  content: none;
  display: none;
}

/* Der vorhandene einmalige Lichtlauf sitzt direkt auf der Schnittzone. */
.signal-strip::after {
  height: 70px;
}

#warum.data-section {
  padding-top: calc(clamp(88px, 9vw, 150px) + 66px);
}

@media (max-width: 780px) {
  .signal-strip {
    min-height: 0;
    margin-bottom: -24px;
    padding: 26px 16px 46px !important;
    clip-path: polygon(
      0 0,
      100% 0,
      100% 83%,
      60% 100%,
      55% 92%,
      0 98%
    );
    filter: drop-shadow(0 1.5px 0 var(--wk-gold));
  }

  .signal-strip::after {
    height: 42px;
  }

  #warum.data-section {
    padding-top: 92px !important;
  }
}

@media (prefers-reduced-motion: reduce) {
  .signal-strip::after {
    display: none;
    animation: none;
  }
}
