/* Fixierter Banner oberhalb des Inhalts */
.ef-archive-notice {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 500;              /* kann bei Bedarf erhöht werden */
  width: 100%;
  box-sizing: border-box;
  padding: 12px 18px;
  text-align: center;
  font-weight: 700;
  font-size: 28px;
  line-height: 1.35;
  background: #111;
  color: #c00000;              /* Rot für Hinweistext */
  border-bottom: 2px solid #ffcc00;
}

/* Link bleibt gelb und blinkt NICHT */
.ef-archive-notice .ef-link {
  color: #ffd500;
  text-decoration: underline;
}

/* Nur der Hinweissatz blinkt */
@keyframes ef-blink { 0%,49%{opacity:1} 50%,100%{opacity:0} }
.ef-archive-notice .ef-blink { animation: ef-blink 1s steps(1, end) infinite; }

/* Dokument-Offset oben wird via JS gesetzt */
:root { --ef-archive-h: 0px; }
body { padding-top: var(--ef-archive-h); }

