/* v0906-deluxe: mobile carousel stability + white badges */
@media (max-width: 820px){
  /* Prevent edge glow/bounce and accidental horizontal page scroll */
  .toc .carousel-track,
  .cycle-carousel .carousel-track,
  .cycle-carousel .cycle-track {
    overscroll-behavior-x: contain !important;
    touch-action: pan-x !important;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
  }
  .cycle-carousel { touch-action: pan-y !important; }

  /* Hard enforce white number text on badges (Android sometimes overrides via anchor color) */
  .cycle-carousel .card .card-badge,
  .toc .carousel-track > li .toc-link::before,
  h1 .article-badge {
    color: #fff !important;
    -webkit-text-fill-color: #fff !important; /* WebKit on Android */
  }
}