@charset "UTF-8";
.c-lang-switcher {
  position: relative;
  display: inline-flex;
  align-items: center;
}
.c-lang-switcher__toggle {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 4px 8px;
  background: transparent;
  border: none;
  border-radius: var(--radius-field, 4px);
  cursor: pointer;
  color: var(--Grey-900, #1A2431);
  font-family: var(--primary-font, "Inter", sans-serif);
  font-size: var(--font-size-base, 14px);
  font-style: normal;
  font-weight: var(--font-weight-normal, 400);
  line-height: var(--line-height-base, 20px);
  transition: color 0.15s ease;
}
.c-lang-switcher__toggle:hover {
  background: transparent;
}
.c-lang-switcher__toggle:focus-visible {
  outline: 2px solid var(--color-primary, #1557b5);
  outline-offset: 2px;
}
.c-lang-switcher__globe {
  display: block;
  flex-shrink: 0;
  width: 20px;
  height: 20px;
}
.c-lang-switcher__chevron {
  display: block;
  flex-shrink: 0;
  transition: transform 0.2s ease;
}
.c-lang-switcher__toggle[aria-expanded=true] .c-lang-switcher__chevron {
  transform: rotate(180deg);
}
.c-lang-switcher__menu {
  position: absolute;
  top: calc(100% + 6px);
  right: 0;
  z-index: 100;
  min-width: 130px;
  margin: 0;
  padding: 4px 0;
  list-style: none;
  background: #ffffff;
  border: 1px solid var(--color-secondary, #dbf4ff);
  border-radius: var(--radius-box, 8px);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1), 0 1px 4px rgba(0, 0, 0, 0.06);
}
.c-lang-switcher__menu[hidden] {
  display: none;
}
.c-lang-switcher__option {
  display: block;
  padding: 8px 16px;
  font-family: var(--primary-font, "Inter", sans-serif);
  font-size: 0.875rem;
  font-weight: 400;
  color: var(--color-neutral, #1c2024);
  text-decoration: none;
  white-space: nowrap;
  transition: background 0.1s ease;
}
.c-lang-switcher__option:hover, .c-lang-switcher__option:focus-visible {
  background: var(--color-secondary, #dbf4ff);
  color: var(--color-secondary-content, #0038a1);
  outline: none;
}
.c-lang-switcher__option:focus-visible {
  outline: 2px solid var(--color-primary, #1557b5);
  outline-offset: -2px;
}
.c-lang-switcher__option.is-active {
  font-weight: 700;
  color: var(--color-primary, #1557b5);
}
.c-lang-switcher__option.is-active::after {
  content: "✓";
  margin-left: 6px;
  font-size: 0.75rem;
}
@media (max-width: 480px) {
  .c-lang-switcher__menu {
    right: auto;
    left: 0;
    min-width: 160px;
  }
}