.page-display::-webkit-scrollbar {
  display: none;
}

.page-display {
  display: flex;
  height: 100vh;
  height: 100svh;
  flex-direction: row;
  justify-content: flex-start;
  overflow-x: auto;
  overflow-y: hidden;
  align-items: stretch;
}

.page-display > img,
video {
  height: 100%;
  width: auto;
  flex-shrink: 0; /* CRUCIAL : empêche l’écrasement */
  object-fit: contain;
  display: block;
}

.page-title {
  top: 0;
  left: 0;
  visibility: hidden;
  position: absolute;
}
