.hero-locale {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  margin: 0 0 20px;
  color: var(--gold-light);
  text-transform: uppercase;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.18em;
}

.hero-tagline {
  color: var(--gold-light);
  font-size: clamp(0.9rem, 1.35vw, 1.08rem);
  letter-spacing: 0.11em;
}

.hero-locale::before {
  content: "";
  width: 46px;
  height: 1px;
  background: var(--gold);
}

.language-switch {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  letter-spacing: 0.08em;
}

.language-switch button {
  min-height: 40px;
  padding: 7px 9px;
  border: 1px solid transparent;
  border-radius: 0;
  background: transparent;
  color: rgba(246, 240, 228, 0.68);
  font: inherit;
  text-transform: uppercase;
  cursor: pointer;
}

.language-switch button:hover,
.language-switch button:focus-visible {
  color: var(--gold-light);
  border-color: rgba(214, 173, 97, 0.48);
}

.language-switch button.is-active {
  border-color: var(--gold);
  background: rgba(214, 173, 97, 0.16);
  color: var(--gold-light);
}

.page-language-switch {
  width: fit-content;
  margin-bottom: 18px;
  color: var(--gold-light);
  font-size: 0.72rem;
  font-weight: 750;
}

@media (max-width: 560px) {
  .hero-locale {
    gap: 8px;
    letter-spacing: 0.12em;
  }

  .hero-locale::before {
    width: 30px;
  }

  .language-switch button {
    padding-inline: 7px;
  }
}
