:root {
  --yellow: #ffcc19;
}

/* Original AIK identity: blue tile with the yellow lower line. */
.brand-mark {
  position: relative;
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 7px;
  background: var(--blue);
  border-bottom: 6px solid var(--yellow);
  color: #fff;
  box-shadow: 0 8px 18px #0757b538;
}

.brand-mark::after {
  display: none;
}

.brand-mark span {
  position: relative;
  z-index: 1;
  color: #fff;
  font-size: 15px;
  font-weight: 900;
  letter-spacing: -.05em;
}

.language-switcher {
  display: inline-flex;
  align-items: center;
  padding: 3px;
  border: 1px solid var(--line);
  border-radius: 11px;
  background: #fff;
  white-space: nowrap;
}

.language-switcher a {
  min-width: 33px;
  padding: 6px 7px;
  border-radius: 8px;
  color: var(--muted);
  font-size: 10px;
  font-weight: 850;
  text-align: center;
}

.language-switcher a:hover {
  color: var(--blue);
}

.language-switcher a.active {
  background: var(--blue);
  color: #fff;
  box-shadow: inset 0 -3px 0 var(--yellow);
}

@media (max-width: 900px) {
  .language-switcher { margin-left: auto; }
  .portal-nav { margin-left: 0; }
}

@media (max-width: 720px) {
  .brand-mark { width: 42px; height: 42px; border-radius: 7px; }
  .language-switcher a { min-width: 28px; padding: 6px 4px; }
  .header-actions { margin-left: auto; }
}

@media (max-width: 560px) {
  .language-switcher { order: -1; }
  .brand-copy { display: none; }
}
