/* Homepage hero banner: welcome text overflows the fixed-height container in RS 11.0,
   forcing a bulky native scrollbar (#HomeSiteTextInner { overflow: scroll } in core css/global.css).
   Keep scrolling available but make it slim and unobtrusive instead of a full OS scrollbar. */
#HomeSiteTextInner {
    overflow-y: auto;
    scrollbar-width: thin;
}
#HomeSiteTextInner::-webkit-scrollbar {
    width: 6px;
}
#HomeSiteTextInner::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.4);
    border-radius: 3px;
}
