/* docs.css — optional polish for the docs section */

/* Sidebar scroll */
.docs-year-scroll {
  scrollbar-width: thin;
  scrollbar-color: #cbd5e1 transparent;
}
.docs-year-scroll::-webkit-scrollbar       { width: 4px; }
.docs-year-scroll::-webkit-scrollbar-track { background: transparent; }
.docs-year-scroll::-webkit-scrollbar-thumb { background: #cbd5e1; border-radius: 99px; }

/* Sticky sidebar on tall screens */
@media (min-height: 600px) {
  .docs-sidebar { position: sticky; top: 5.5rem; }
}

/* Card hover lift already done via Tailwind, but ensure no conflict */
.docs-section-root .group { will-change: transform; }
