/*
 * OIT Breadcrumbs + Eyebrow + Title -- residual / animation styles.
 *
 * Visual styling lives inline as Tailwind utilities. This file owns the
 * data-proto-animate (auto) reveal: the crumbs + card are hidden up-front
 * and flipped to "done" by the Proto-Blocks reveal runtime on scroll-in.
 */

.oit-bet[data-proto-animate="pending"] .oit-bet__crumbs,
.oit-bet[data-proto-animate="pending"] .oit-bet__card {
  opacity: 0;
  transform: translateY(16px);
}

.oit-bet[data-proto-animate="done"] .oit-bet__crumbs,
.oit-bet[data-proto-animate="done"] .oit-bet__card {
  opacity: 1;
  transform: none;
  transition: opacity .6s ease, transform .6s ease;
}
