/* Obere Info-Leiste (Top-Header) – eigenständig, ändert die zentrale style.css nicht */
.infobar {
  background: #f1f3f6;
  border-bottom: 1px solid #e6e9ee;
  font-size: 13px;
  color: #5b6573;
}
.infobar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 40px;
}
.infobar-info {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}
.infobar a {
  color: #5b6573;
  text-decoration: none;
}
.infobar a:hover {
  color: #1f2937;
}
.infobar .ib-ic {
  color: #2563eb;
  margin-right: 6px;
}
.infobar-login {
  font-weight: 600;
  white-space: nowrap;
}
@media (max-width: 820px) {
  .infobar { display: none; }
}
