/*
  NOVID-20: corrections to the converted page.
  Website developed by pressific.com Emily Park, Dileep C. Kaluaratchie and Tech Generation Ltd.

  The hero background video.

  On the original, the page-builder's player script measures the section and
  writes the pixel size onto the player and the video on every resize. The
  conversion captures the result, not the script, so what came across was
  width: 1440px; height: 810px; left: 50%; margin-left: -720px, frozen at the
  width the capture ran at. Below 1440 the video overflowed the section; above
  it, it stopped growing and sat centred with a band of background either side,
  which is what you see at 1920 and wider.

  Sized against the section instead, so it fills it at any width. Measured from
  390px to 2560px: the video now matches the section exactly at every step, and
  object-fit: cover keeps the framing rather than stretching it.

  Scoped to a video inside the section-background span, which is the only place
  this player shape occurs. It is deliberately not in the platform stylesheet:
  the same rule shrinks Murmidon's inline videos and crops iJRNY's header, both
  of which are correct as they are.
*/
span:has(mediaelementwrapper) > div {
  left: 0 !important;
  margin-left: 0 !important;
  width: 100% !important;
  height: 100% !important;
}
span:has(mediaelementwrapper) video {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
}
