/* A compact, optically centered navigation bar. The icon and type are sized
   as one system instead of competing for attention. */
.site-header {
  height: 64px;
  padding: 0 clamp(20px, 4vw, 64px);
  align-items: center;
}

.site-header .brand {
  gap: 8px;
  font-size: 15px;
  font-weight: 650;
  line-height: 1;
}

.site-header .brand-logo {
  width: 24px;
  height: 24px;
  flex: 0 0 auto;
  border-radius: 7px;
}

.site-header .desktop-nav {
  align-items: center;
  gap: 24px;
  font-size: 13px;
  line-height: 1;
}

.site-header .header-download {
  padding: 7px 13px;
  font-size: 13px;
  line-height: 1.1;
}

@media (min-width: 801px) {
  .site-header {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
  }
}

@media (max-width: 800px) {
  .site-header { height: 58px; }
  .site-header .brand { font-size: 14px; }
  .site-header .header-download { padding: 7px 11px; font-size: 12px; }
}
