:root {
  --playground-primary: #240046;
  --playground-primary-muted: rgb(36 0 70 / 62%);
  --playground-burgundy: #54002f;
  --playground-surface-strong: #c5cfdf;
  --playground-on-surface: #2b282f;
  --playground-white: #fff;
  --playground-divider: rgb(56 56 56 / 45%);
  --playground-font-family: "Boston", "Avenir Next", Avenir, "Segoe UI", Helvetica, Arial,
    sans-serif;
  font-family: var(--playground-font-family);
}

* {
  box-sizing: border-box;
}

button,
input,
select {
  font: inherit;
}

a {
  color: inherit;
  text-decoration: none;
}

.compact-header {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  background: var(--playground-surface-strong);
}

.compact-brand {
  min-height: 2.75rem;
  display: inline-flex;
  align-items: center;
  color: inherit;
  text-decoration: none;
}

.compact-brand img {
  width: auto;
  filter: brightness(0);
}

.compact-language-switch {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  font-size: 0.68rem;
  font-weight: 650;
}

.compact-language-switch form {
  display: contents;
}

.compact-language-switch button {
  min-width: 1.55rem;
  min-height: 2.75rem;
  display: inline-grid;
  place-items: center;
  padding: 0;
  border: 0;
  color: inherit;
  background: transparent;
  font: inherit;
  cursor: pointer;
}

.compact-language-switch button + button::before {
  position: absolute;
  content: "|";
  transform: translateX(-0.9rem);
  font-weight: 400;
}

.compact-language-switch .active {
  color: var(--playground-primary);
  font-weight: 850;
}
