/* BIL-19: PDF in a fixed box with its own scrollbar (not full-page scroll) */
.article-pdf-panel {
  overflow: hidden !important;
  max-height: none !important;
}

.article-pdf-viewer {
  display: block;
  width: 100%;
  max-height: min(72vh, 580px);
  height: min(72vh, 580px);
  overflow-x: hidden;
  overflow-y: auto !important;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior: contain;
  touch-action: pan-y;
  isolation: isolate;
  background: #f5f5f5;
}

.article-pdf-viewer iframe,
.article-pdf-viewer object {
  display: block;
  width: 100%;
  min-height: 100%;
  height: 100%;
  border: none;
  pointer-events: auto;
}
