.project-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  padding: 2rem 1rem;
  max-width: 900px;
  margin: 0 auto;
}

.project-card {
  background-color: rgba(0, 0, 0, 0.6);
  border-left: 4px solid var(--neon-green);
  padding: 1rem;
  border-radius: 6px;
  box-shadow: 0 0 8px var(--neon-green);
}

.project-card:hover {
  transform: scale(1.10);
  background-color: black;
  box-shadow: 0 0 25px var(--soft-green);
  z-index: 250;
}

.project-title {
  font-size: 1.2rem;
  color: var(--neon-green);
  margin-bottom: 0.5rem;
  font-family: monospace;
}

.project-description {
  font-size: 0.95rem;
  color: #ccc;
  line-height: 1.5;
  font-family: monospace;
}

.project-link {
  display: inline-block;
  margin-top: 0.5rem;
  color: var(--neon-green);
  text-decoration: none;
  font-weight: bold;
  font-family: monospace;
}

.project-link:hover {
  text-decoration: underline;
  color: black;
  box-shadow: 0 0 8px var(--neon-green);
}

@media (max-width: 480px) {
  .project-grid {
    grid-template-columns: 1fr;
    padding: 1rem;
  }
}
