/* Initial state: articles are transparent before they fade in 
.vpa-article {
  opacity: 0;
  transition: opacity 1s ease-out;
}*/

/* Animates each article to fade in based on its index */
.vpa-article[data-fade="true"] .brx-animated {
  animation-duration: calc(var(--item-index) * 1.1s) !important;
  transition-delay: calc(var(--item-index) * 1.1s) !important; /* Adjust the multiplier (0.2s) for more or less stagger */
}