/*
 * R59: restore the original desktop reader-control position.
 *
 * The original reader stylesheet kept the sidebar at its natural content
 * height and vertically centered it beside the screen.  Later responsive
 * rules made the sidebar screen-height and top-aligned.  Restore only the
 * desktop positioning; button styles/events, screen geometry and the mobile
 * control grid are intentionally unchanged.
 */
@media (min-width: 821px) {
  html body .image-wrapper.with-sidebar[data-v-fc0266af] {
    align-items: center !important;
  }

  html body .image-wrapper.with-sidebar[data-v-fc0266af]
  > .inner-sidebar[data-v-fc0266af] {
    height: auto !important;
    max-height: none !important;
    align-self: center !important;
  }
}

/*
 * R72: restore the original vertical wheel chain on desktop.
 *
 * The sidebar keeps the exact same dimensions, position and button styling.
 * Only release wheel input at its scroll boundary so the document can scroll.
 */
@media (min-width: 821px) {
  html body .image-wrapper.with-sidebar[data-v-fc0266af]
  > .inner-sidebar[data-v-fc0266af] {
    overscroll-behavior-y: auto !important;
  }
}
