.lang-switcher {
  position: static;
  display: inline-block;
  font-family: 'NB International Pro', 'Hanken Grotesk', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  font-size: 12px;
  letter-spacing: 0.08em;
}
.lang-switcher select {
  -webkit-appearance: none;
  appearance: none;
  min-height: 44px;
  padding: 0 36px 0 14px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 0;
  /* solid dark chip so the switcher stays legible on light-themed pages too, not just dark grounds */
  background-color: #1a1a1a;
  color: #F4F8F6;
  cursor: pointer;
  font: inherit;
  letter-spacing: inherit;
  text-transform: uppercase;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6' fill='none'%3E%3Cpath d='M1 1l4 4 4-4' stroke='%23F4F8F6' stroke-width='1.5' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  transition: border-color 0.2s, color 0.2s;
}
.lang-switcher select:hover {
  border-color: rgba(255, 70, 58, 0.6);
}
.lang-switcher select:focus-visible {
  outline: 2px solid #FF463A;
  outline-offset: 2px;
}
.lang-switcher select option {
  background: #1a1a1a;
  color: #F4F8F6;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  letter-spacing: normal;
  text-transform: none;
  padding: 8px;
}
@media print {
  .lang-switcher { display: none !important; }
}
@media (max-width: 700px) {
  .lang-switcher select {
    font-size: 11px;
    padding: 0 28px 0 10px;
    background-position: right 9px center;
  }
}
