.nav-actions {
  z-index: 6;
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  justify-content: flex-end;
  align-items: center;
  margin-left: auto;
  display: flex;
  position: relative;
}

.language-switcher {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--_typography---font-families--secondary-font-family, "Chivo Mono", monospace);
}

.appointment-button {
  background-color: transparent;
  color: var(--colors--black, #1e1e1e);
  cursor: pointer;
  border: none;
  border-bottom: 1px solid var(--colors--black, #1e1e1e);
  font-family: inherit;
  font-size: 12px;
  font-weight: 500;
  line-height: 1;
  transition: opacity .2s ease, border-color .2s ease;
  padding: 0;
  text-decoration: none;
}

.appointment-button:hover {
  opacity: 0.6;
}

.language-link {
  background-color: transparent;
  color: var(--colors--black, #1e1e1e);
  cursor: pointer;
  border: none;
  font-family: inherit;
  font-size: 12px;
  font-weight: 500;
  line-height: 1;
  transition: opacity .2s ease;
  padding: 0;
}

.language-link:hover {
  opacity: 0.6;
}

.language-link.is-active {
  opacity: 1;
  font-weight: 600;
}

@media screen and (max-width: 767px) {
  .nav-actions {
    grid-column-gap: 12px;
  }

  .language-switcher {
    gap: 6px;
  }

  .language-link {
    font-size: 11px;
  }
}
