/* Taalschakelaar, gedeeld door alle pagina's van deze site. */
.langswitch { display: flex; align-items: center; gap: .3rem; }

.langswitch a {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  padding: .32rem .58rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .08em;
  line-height: 1;
  color: inherit;
  opacity: .62;
  text-decoration: none;
  transition: opacity .24s ease, border-color .24s ease, background-color .24s ease;
}

.langswitch a:hover,
.langswitch a:focus-visible { opacity: 1; border-color: currentColor; }

.langswitch a[aria-current] {
  opacity: 1;
  border-color: rgba(197,160,80,.7);
  background: rgba(197,160,80,.14);
}

.langswitch svg { display: block; width: 18px; height: 12px; border-radius: 2px; flex: none; }

.nav__inner .langswitch { margin-left: .8rem; }
.langswitch--standalone { justify-content: flex-end; margin-bottom: 1.6rem; }

@media (max-width: 900px) {
  .nav__inner .langswitch { margin-left: .4rem; }
  .langswitch a { padding: .3rem .46rem; font-size: .68rem; }
}
