/**
 * Language switch between the player and the programme of each streaming room.
 *
 * The theme's accordion bar overflows the fixed-height hero and covers what
 * follows it with z-index 89. The switch starts at the bottom edge of the
 * video, so it sits inside that bar: raising its stacking order and pushing it
 * to the right keeps it clear of the centred "Read more" label, and costs no
 * extra page height.
 *
 * The row spans the full width, so it would swallow the clicks meant for the
 * "Read more" toggle underneath: only the button itself takes pointer events.
 */
.programme-language-switch {
  display: flex;
  justify-content: flex-end;
  gap: 8px;
  position: relative;
  z-index: 90;
  margin: 18px 24px 0;
  pointer-events: none;
}

.programme-language-switch .btn {
  padding: 3px 18px;
  font-size: .82rem;
  pointer-events: auto;
}
