/* Horizontal Stagger - Fixed syntax */
.horizontal-stagger {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.horizontal-stagger-item {
  flex: 1 1 200px;
  opacity: 0;
  transform: translateX(-20px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.horizontal-stagger-item.visible {
  opacity: 1;
  transform: translateX(0);
}