/*
 * The exported Horizons bundle uses Framer Motion initial states. Outside the
 * Horizons runtime, some browsers keep those initial inline styles forever.
 * Keep every section usable and visible while preserving ordinary CSS hover
 * and transition styles.
 */
header {
  transform: none !important;
  opacity: 1 !important;
  visibility: visible !important;
}

[style*="opacity: 0"] {
  opacity: 1 !important;
  transform: none !important;
}

[style*="height: 0"] {
  height: auto !important;
}
