/* Higgsfield hero video layer for the current editorial site. */
.hero__video {
  display: block;
  opacity: 0;
  transition: opacity 1200ms ease;
  will-change: opacity;
}

.hero__video--active {
  opacity: 1;
}

.hero__video--standby {
  opacity: 0;
}

.hero__landscape--poster {
  display: none;
}

@media (prefers-reduced-motion: reduce) {
  .hero__video {
    display: none;
  }

  .hero__landscape--poster {
    display: block;
  }
}
