/*
 * Language switcher, shared by every page.
 *
 * Lifted verbatim from membership.html's inline styles so the control that was
 * already live keeps its exact appearance, and the eight other pages match it
 * rather than drifting.
 */

.lang-switcher {
  width: 88px;
  min-width: 88px;
  height: 34px;
  min-height: 34px;
  padding: 0 24px 0 8px;
  border-radius: 6px;
  border: 1px solid var(--line-strong);
  background-color: #fff;
  color: var(--primary-strong);
  font-size: 0.76rem;
  font-weight: 600;
  line-height: 1;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='11' height='11' viewBox='0 0 24 24' fill='none' stroke='%236a8072' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 7px center;
  background-size: 11px;
  cursor: pointer;
}

.lang-switcher:hover { border-color: var(--primary); }

.lang-switcher:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(27, 82, 54, 0.08);
}

/* On narrow screens the header is tight, so the switcher loses its width floor
   and sits beside the menu button rather than pushing the CTA off-screen. */
@media (max-width: 720px) {
  .lang-switcher {
    width: 74px;
    min-width: 74px;
    font-size: 0.7rem;
    padding: 0 20px 0 6px;
  }
}
