.language-selector {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 0.4rem;
  width: 100%;
  margin: 0 0 12px;
  color: var(--muted, #6b7280);
  font-size: 0.9rem;
  line-height: 1.2;
  text-align: left;
}

.language-selector__label {
  margin-right: 0.15rem;
  font-weight: 700;
}

.language-selector__link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 44px;
  min-height: 44px;
  padding: 0.45rem 0.65rem;
  border: 1px solid #9bc8bd;
  border-radius: 8px;
  background: var(--bg, #ffffff);
  color: #0b4f4a;
  font-weight: 700;
  text-decoration: none;
}

.language-selector__link:hover {
  border-color: #0b4f4a;
  background: #d6ebe5;
  color: #0b4f4a;
  text-decoration: underline;
}

.language-selector__link:focus-visible {
  outline: 3px solid #8f2727;
  outline-offset: 2px;
}

.language-selector__link[aria-current="page"] {
  border-color: #0b4f4a;
  background: #0b4f4a;
  color: #ffffff;
  cursor: default;
  text-decoration: none;
}

@media (max-width: 768px) {
  .language-selector {
    justify-content: center;
    margin-bottom: 10px;
  }
}

@media (forced-colors: active) {
  .language-selector__link[aria-current="page"] {
    border: 2px solid currentColor;
  }
}
