/* ==========================================================================
   hero-video.css — full-bleed background video for the hero section
   (mcb-section-74krmk1m), on both desktop and mobile.
   ========================================================================== */
section.mcb-section-74krmk1m{
  position:relative;
  overflow:hidden;
}
.x3-hero-bg-video{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  object-fit:cover;      /* fill the hero on any aspect ratio / screen */
  z-index:0;
  border:0;
  pointer-events:none;
}
/* Dark tint over the video so the pills / text stay readable. */
section.mcb-section-74krmk1m::after{
  content:"";
  position:absolute;
  inset:0;
  z-index:1;
  background:rgba(16,18,42,.5);
  pointer-events:none;
}
/* Keep the real hero content above the video + tint. */
section.mcb-section-74krmk1m > .section_wrapper{
  position:relative;
  z-index:2;
}
/* The hero's decorative "balls" overlay (x3-home-bg1-overlay.webp) is
   hidden — the globe video is the background now. */
section.mcb-section-74krmk1m > .mcb-background-overlay{
  display:none !important;
}
