/* Blend clipped choices into the page without covering their hit targets. */
body.chat-first #convo .ax-choices,
body.chat-first #convo .followups {
  --choice-fade-start: 0px;
  --choice-fade-end: 0px;
  scroll-padding-inline: 36px;
  -webkit-mask-image: linear-gradient(to right,
    transparent, #000 var(--choice-fade-start),
    #000 calc(100% - var(--choice-fade-end)), transparent);
  mask-image: linear-gradient(to right,
    transparent, #000 var(--choice-fade-start),
    #000 calc(100% - var(--choice-fade-end)), transparent);
}
body.chat-first #convo .has-choices-before { --choice-fade-start: 36px; }
body.chat-first #convo .has-choices-after { --choice-fade-end: 36px; }
