/* Keep long pre-booking agreements within the booking panel on desktop. */
@media (min-width: 1024px) {
  #prebookAgreementPanel,
  .pib-terms {
    max-height: min(420px, 45dvh);
    min-height: 0;
    overflow-y: auto;
    overscroll-behavior-y: contain;
    scrollbar-gutter: stable;
  }
}
