/* Prevent mobile browsers from resizing text on scroll (address-bar collapse) */
html {
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

/* Accent colors matching the walkthrough pages */
:root {
  --pst-color-primary: #58a6ff;
  --pst-color-secondary: #7ee787;
}

/* Scrollable math blocks on narrow screens (display math only) */
@media screen and (max-width: 992px) {
  mjx-container[display="true"] {
    overflow-x: auto;
    display: block;
  }
}

/* Mobile portrait */
@media screen and (max-width: 768px) and (orientation: portrait) {
  .bd-main .bd-content .bd-article-container {
    padding-left: 0.75rem;
    padding-right: 0.75rem;
  }
}

/* Mobile / tablet landscape */
@media screen and (max-width: 992px) and (orientation: landscape) {
  .bd-main .bd-content .bd-article-container {
    padding-left: 1rem;
    padding-right: 1rem;
  }
  .bd-main .bd-content .bd-article-container .bd-article {
    max-width: min(65ch, 100%);
    margin: 0 auto;
  }
  .bd-sidebar-primary {
    display: none !important;
  }
  .bd-header .navbar-header-items {
    display: flex !important;
  }
  #glossary-toggle {
    bottom: 8px;
    right: 8px;
    padding: 4px 8px;
    font-size: 0.7rem;
  }
}
