.nav-card {
  transition: transform 160ms ease, box-shadow 160ms ease;
}

.nav-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(56, 70, 93, 0.18);
}

.nav-card:active {
  transform: translateY(-1px);
  box-shadow: 0 6px 18px rgba(56, 70, 93, 0.22);
}

.nav-card .nav-label {
  transition: color 160ms ease;
}

.nav-card:hover .nav-label {
  color: #f36e32;
}


