#projects { background: var(--bg-secondary); }
.projects-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin-top: 40px; }
.project-card {
  background: var(--bg-card); border-radius: 14px; padding: 32px;
  border: 1px solid var(--border-subtle);
  transition: all 0.3s; position: relative; overflow: hidden;
}
.project-card::before {
  content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 3px;
  background: linear-gradient(90deg, var(--accent), transparent);
  opacity: 0; transition: opacity 0.3s;
}
.project-card:hover::before { opacity: 1; }
.project-card:hover { border-color: rgba(20, 184, 166, 0.3); transform: translateY(-4px); }
.project-icon {
  width: 44px; height: 44px; border-radius: 10px;
  background: rgba(20, 184, 166, 0.1); display: flex; align-items: center; justify-content: center;
  margin-bottom: 16px; font-size: 1.2rem;
}
.project-card h3 { font-size: 1.05rem; font-weight: 600; margin-bottom: 4px; }
.project-card .project-org { font-size: 0.8rem; color: var(--accent); margin-bottom: 12px; font-weight: 500; }
.project-card p { font-size: 0.88rem; color: var(--text-secondary); line-height: 1.65; }
.project-card ul { margin-top: 12px; }
.project-card ul li { font-size: 0.82rem; color: var(--text-secondary); padding-left: 16px; position: relative; margin-bottom: 6px; }
.project-card ul li::before { content: '\25B8'; position: absolute; left: 0; color: var(--accent); }
.project-img {
  width: 100%; border-radius: 10px; margin-bottom: 16px;
  border: 1px solid var(--border-subtle);
}
.project-click { cursor: pointer; }
.project-modal-body {
  background: var(--bg-card); border-radius: 14px; padding: 36px;
  max-width: 640px; width: 100%; max-height: 85vh; overflow-y: auto;
  border: 1px solid var(--border-subtle);
}
.project-modal-body::-webkit-scrollbar { width: 4px; }
.project-modal-body::-webkit-scrollbar-thumb { background: var(--accent); border-radius: 2px; }
