    /* ── Stagger fade-up on first reveal (toggled by JS IntersectionObserver) */
    .cc-event-card.cc-revealed {
      animation: cc-fade-up .5s cubic-bezier(.4, 0, .2, 1) forwards;
    }

    .cc-event-card:nth-child(2).cc-revealed {
      animation-delay: .1s;
    }

    .cc-event-card:nth-child(3).cc-revealed {
      animation-delay: .2s;
    }
