.locale-select {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  min-width: 132px;
  height: 40px;
  padding: 0 10px;
  border: 1px solid rgba(11, 20, 38, .13);
  border-radius: 999px;
  background: rgba(255, 255, 255, .82);
  color: #0b1426;
  box-shadow: 0 7px 22px rgba(11, 20, 38, .06);
  cursor: pointer;
  isolation: isolate;
}
.locale-select:focus-within { outline: 3px solid rgba(38, 158, 229, .2); border-color: #269ee5; }
.locale-select .locale-flag { flex: 0 0 auto; font-size: 17px; line-height: 1; }
.locale-select select {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0 24px 0 0;
  appearance: none;
  border: 0;
  outline: 0;
  background: transparent;
  color: inherit;
  font: 700 12px/1.2 Manrope, Inter, system-ui, sans-serif;
  cursor: pointer;
}
.locale-select > .material-symbols-rounded { position: absolute; right: 8px; z-index: 0; font-size: 17px; pointer-events: none; }
.locale-select-auth { position: absolute; top: max(18px, env(safe-area-inset-top)); right: 22px; z-index: 8; }

@media (max-width: 820px) {
  .locale-select { min-width: 44px; width: 44px; height: 40px; padding: 0; justify-content: center; }
  .locale-select .locale-flag { font-size: 19px; }
  .locale-select select { position: absolute; inset: 0; opacity: 0; padding: 0; }
  .locale-select > .material-symbols-rounded { display: none; }
  .locale-select-auth { top: max(12px, env(safe-area-inset-top)); right: 14px; }
}

.topbar .locale-select { background: #fff; }
.admin-account .locale-select { margin-right: 2px; }
.blog-nav .locale-select { flex: 0 0 auto; }

@media (prefers-reduced-motion: reduce) {
  .locale-select { transition: none !important; }
}
