/* Shared top bar: brand + nav — /berichte, /results (branding-ci.md §4.4) */

.app-header {
  max-width: 900px;
  margin: 0 auto;
  padding: 28px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid #1a1a1a;
}

.app-header__brand {
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  text-decoration: none;
  transition: color 0.15s;
}

.app-header__brand:hover { color: var(--cream-dim); }

.app-header__nav {
  display: flex;
  gap: 20px;
}

.app-header__nav a {
  font-size: 11px;
  letter-spacing: 0.08em;
  color: #555;
  text-decoration: none;
  transition: color 0.15s;
}

.app-header__nav a:hover,
.app-header__nav a.is-active { color: var(--cream-dim); }
