/* Hide the right-hand sidebar (Table of Contents) on desktop and wide layouts */
@media screen and (min-width: 76.25em) {
  .md-sidebar--secondary {
    display: none !important;
  }

  /* Let content use the freed space on Material v9+ grid */
  :root {
    --md-sidebar-secondary-width: 0 !important;
  }

  /* Ensure content can expand fully */
  .md-content {
    max-width: 100% !important;
  }
}

/* Also hide any floating/overlay ToC container if present (defensive) */
.md-sidebar--secondary[hidden] { display: none !important; }
