@keyframes cc-fade-in {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes cc-slide-up {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.cc-animate-in {
  animation: cc-slide-up 0.45s ease-out both;
}

.cc-panel-animate {
  animation: cc-fade-in 0.35s ease-out both;
}

.stat-count {
  font-variant-numeric: tabular-nums;
}

.site-nav__link--active {
  color: #ea580c;
  font-weight: 600;
}

.site-nav__link--active:hover {
  color: #c2410c;
}

