.header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--color-bg);
  border-bottom: 3px solid var(--color-primary);
}

.header__inner {
  max-width: var(--container-wide);
  margin: 0 auto;
  padding: var(--space-2) var(--space-2);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: var(--space-2);
}

.header__brand {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  color: var(--color-text);
}

.header__badge {
  flex: none;
  display: flex;
  height: 46px;
}

.header__badge img {
  display: block;
  height: 100%;
  width: auto;
}

.header__wordmark {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.header__title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.2rem;
}

.header__subtitle {
  font-size: 0.75rem;
  color: var(--color-muted);
}
