/* Decorative background video hardening, added 2026-09-10.
   Chrome offers "Show controls" from the right click menu on any video element
   whatever the markup says, which is how a scrubber, volume slider, settings
   gear and picture in picture button appeared across the About hero. Every
   video on this site is wallpaper except the firm video cards, so the rule is
   written as an exception list rather than a list of class names, and any video
   added later is covered without another edit. */

video:not(.about-firm-videos__video) {
  pointer-events: none !important;
  user-select: none;
}

video:not(.about-firm-videos__video)::-webkit-media-controls,
video:not(.about-firm-videos__video)::-webkit-media-controls-enclosure,
video:not(.about-firm-videos__video)::-webkit-media-controls-panel,
video:not(.about-firm-videos__video)::-webkit-media-controls-start-playback-button,
video:not(.about-firm-videos__video)::-webkit-media-controls-overlay-play-button {
  display: none !important;
  opacity: 0 !important;
  pointer-events: none !important;
  -webkit-appearance: none;
  appearance: none;
}

/* The firm cards are the one interactive pair. They keep their own play button
   and must never draw the browser's panel either. */
.about-firm-videos__video::-webkit-media-controls-overlay-play-button {
  display: none !important;
}
