.i18n-switcher {
  position: relative;
  display: inline-block;
}
.i18n-switcher__btn {
  background: transparent;
  border: 1px solid currentColor;
  border-radius: 4px;
  padding: 4px 10px;
  font: inherit;
  color: inherit;
  cursor: pointer;
}
.i18n-switcher__menu {
  display: none;
  position: absolute;
  right: 0;
  top: 100%;
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 4px;
  list-style: none;
  margin: 4px 0 0;
  padding: 4px 0;
  min-width: 140px;
  z-index: 100;
}
.i18n-switcher:hover .i18n-switcher__menu,
.i18n-switcher:focus-within .i18n-switcher__menu {
  display: block;
}
.i18n-switcher__menu a {
  display: block;
  padding: 6px 12px;
  color: #222;
  text-decoration: none;
}
.i18n-switcher__menu a[aria-current="true"] {
  font-weight: 600;
  background: #f5f1e8;
}
.i18n-switcher__menu a:hover {
  background: #f5f1e8;
}

.i18n-banner {
  background: #c9a163;
  color: #fff;
  padding: 10px 14px;
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.95rem;
}
.i18n-banner a, .i18n-banner button {
  color: #fff;
  text-decoration: underline;
  background: transparent;
  border: 0;
  cursor: pointer;
  font: inherit;
}
.i18n-banner button[data-i18n-banner-dismiss] {
  margin-left: auto;
  text-decoration: none;
  font-size: 1.2rem;
  line-height: 1;
}
