/* Post-migration fixes for the 55-5 Consulting static mirror.
   The cookie-consent library locks page scroll via
   `html.disable--interaction.show--consent` -> overflow:hidden!important.
   On the frozen site the banner may not clear that state, leaving the page
   unscrollable. Re-enable scrolling regardless of consent state.
   (Same selector + !important, loaded last, so it wins the cascade.) */
html.disable--interaction.show--consent,
html.disable--interaction.show--consent body,
html.show--consent,
html.show--consent body {
  overflow: auto !important;
  overflow-y: auto !important;
  height: auto !important;
}
