.site-header {
  min-height: 78px;
  border-bottom: 1px solid var(--line);
  display: flex;
  align-items: center;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  font-size: 18px;
  font-weight: 720;
  letter-spacing: -0.025em;
}

.brand-logo {
  width: 43px;
  height: 43px;
  overflow: hidden;
  border-radius: 11px;
}

.brand-logo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.site-nav,
.header-cta {
  display: none;
}

.locale-switch {
  margin-left: auto;
  padding: 3px;
  border: 1px solid var(--line);
  border-radius: 999px;
  display: flex;
  gap: 2px;
  background: var(--panel);
}

.locale-switch button {
  width: 31px;
  height: 30px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  color: var(--muted);
  background: transparent;
  font-size: 11px;
  font-weight: 700;
  cursor: pointer;
}

.locale-switch button[aria-pressed="true"] {
  color: var(--background);
  background: var(--ink);
}

body[data-theme="classic"] .locale-switch button[aria-pressed="true"] {
  color: #ffffff;
  background: var(--accent);
}
