.network-graph-card {
  margin-top: 20px;
}

.network-graph-card .card-link {
  display: block;
  text-decoration: none;
  color: inherit;
}

.network-graph-card .card-content {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 25px 30px;
  background: #ffffff;
  border: 2px solid #e5e7eb;
  border-radius: 12px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.network-graph-card .card-content::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(37, 99, 235, 0.05), transparent);
  transition: left 0.5s ease;
}

.network-graph-card .card-content:hover::before {
  left: 100%;
}

.network-graph-card .card-content:hover {
  border-color: #2563eb;
  transform: translateY(-4px);
  box-shadow: 0 12px 24px rgba(37, 99, 235, 0.15);
}

.network-graph-card .card-icon {
  flex-shrink: 0;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #2563eb, #1d4ed8);
  border-radius: 12px;
  color: white;
  font-size: 28px;
  transition: transform 0.3s ease;
}

.network-graph-card .card-content:hover .card-icon {
  transform: scale(1.1) rotate(5deg);
}

.network-graph-card .card-text {
  flex: 1;
}

.network-graph-card .card-text h4 {
  margin: 0 0 8px 0;
  font-size: 1.3em;
  font-weight: 600;
  color: #1a1a1a;
  transition: color 0.3s ease;
}

.network-graph-card .card-content:hover .card-text h4 {
  color: #2563eb;
}

.network-graph-card .card-text p {
  margin: 0;
  font-size: 0.95em;
  color: #6b7280;
  line-height: 1.5;
}

.network-graph-card .card-arrow{
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f3f4f6;
  border-radius: 50%;
  color: #2563eb;
  font-size: 18px;
  transition: all 0.3s ease;
}

.network-graph-card .card-content:hover .card-arrow{
  background: #2563eb;
  color: white;
  transform: translateX(5px);
}

/* Mobile responsiveness */
@media (max-width: 768px) {
  .network-graph-card .card-content {
    flex-direction: column;
    text-align: center;
    padding: 20px;
  }
  
  .network-graph-card .card-icon {
    width: 50px;
    height: 50px;
    font-size: 24px;
  }
  
  .network-graph-card .card-text h4 {
    font-size: 1.1em;
  }
  
  .network-graph-card .card-text p {
    font-size: 0.9em;
  }
  
  .network-graph-card .card-arrow{
    margin-top: 10px;
  }
}
