/**
 * tempo-hero-media-enter-v1 � short hero media fade (global)
 * Paul � 20/Jul/26 � soft land on every .insight-hero image/video.
 * Not cinema / Ken Burns / scale � opacity only.
 * Pair with presets/tempo-hero-media-enter-v1.js
 * Contract: ../../templates/insight-hero-v1.md � templates/hero-media-enter-v1.md
 */
.insight-hero__media{
  opacity:0;
  transition:opacity 1.2s cubic-bezier(.33,0,.12,1);
}
.insight-hero__media.is-in{
  opacity:1;
}
@media (prefers-reduced-motion:reduce){
  .insight-hero__media{
    opacity:1;
    transition:none;
  }
}
