.issue-card {
  cursor: pointer;
  transition: all 0.3s ease;
}

.issue-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
  border-color: #3b82f6;
}

.issue-card:hover .issue-icon {
  transform: scale(1.1);
  transition: transform 0.2s ease;
}

.issue-card .hover-indicator {
  opacity: 0;
  transition: opacity 0.2s ease;
}

.issue-card:hover .hover-indicator {
  opacity: 1;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.animate-fade-in-up {
  animation: fadeInUp 0.6s ease-out;
}

.issue-card:nth-child(1) { animation-delay: 0.1s; }
.issue-card:nth-child(2) { animation-delay: 0.2s; }
.issue-card:nth-child(3) { animation-delay: 0.3s; }
.issue-card:nth-child(4) { animation-delay: 0.4s; }
.issue-card:nth-child(5) { animation-delay: 0.5s; }
.issue-card:nth-child(6) { animation-delay: 0.6s; }
