.projects {
  margin-top: 28px;
  display: grid;
  grid-template-columns: repeat(auto-fill, 240px);
  justify-content: center;
  gap: 16px;

  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.proj {
  width: 240px;
  height: 210px;

  display: flex;
  flex-direction: column;

  text-decoration: none;
  color: var(--fg);
  border-radius: 14px;
  overflow: hidden;
  background: var(--soft);
  border: 1px solid rgba(255,255,255,0.08);
  transition: 0.18s ease;
}

.thumb {
  height: 120px;
  background-size: cover;
  background-position: center;
  background-color: #111;
  flex-shrink: 0;
}

.info {
  padding: 10px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  flex: 1;
}

.name {
  font-size: 1rem;

  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.desc {
  font-size: 0.8rem;
  opacity: 0.6;
  margin-top: 4px;

  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.proj:hover {
  transform: translateY(-4px) scale(1.02);
  border-color: var(--accent);
  box-shadow: 0 0 16px #FBABFF33;
}