/* Shared, deliberately quiet scrollbar treatment for CGB-owned scrolling.
   Keep the browser scrolling model; only reduce the visual weight of desktop rails. */
@media (hover: hover) and (pointer: fine) {
  :root {
    scrollbar-width: thin;
    scrollbar-color: rgba(95, 108, 123, .34) transparent;
  }

  *::-webkit-scrollbar {
    width: 6px;
    height: 6px;
  }

  *::-webkit-scrollbar-track {
    background: transparent;
  }

  *::-webkit-scrollbar-thumb {
    border-radius: 999px;
    background-color: rgba(95, 108, 123, .28);
  }

  *::-webkit-scrollbar-thumb:hover {
    background-color: rgba(95, 108, 123, .52);
  }
}

