/* V4OLD pour studio WIP */
.panel__content{
  margin-top: 0;          
  white-space: pre-wrap;     /* garde tes retours à la ligne */
  line-height: 1.55;
  font-size: 16px;
  color: rgba(17,24,39,.78);
}

/* Scrollbar verticale discrète (3 zones) */
.panel__scroll{
  scrollbar-width: thin;                          /* Firefox */
  scrollbar-color: rgba(0,0,0,.25) transparent;   /* Firefox */
}

/* WebKit (Chrome/Edge/Safari) */
.panel__scroll::-webkit-scrollbar{
  width: 10px;
}
.panel__scroll::-webkit-scrollbar-track{
  background: transparent;
}
.panel__scroll::-webkit-scrollbar-thumb{
  background: rgba(0,0,0,.20);
  border-radius: 10px;
  border: 3px solid transparent; /* effet discret */
  background-clip: content-box;
}
.panel__scroll::-webkit-scrollbar-thumb:hover{
  background: rgba(0,0,0,.30);
  background-clip: content-box;
}
