.header {
  background: var(--bg-1);
  border-bottom: 1px solid var(--border);
}

.header .container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 8px 24px;
  padding-top: 12px;
  padding-bottom: 12px;
}


.header-logo { width: auto; height: 44px; }

@media (max-width: 850px) {
  .header .container { flex-direction: column; }

  .header nav {
    justify-content: center;
    gap: 0 20px;
  }

  .header nav a { padding: 6px 0; }
}
