/* 项目展示卡片：无图版，标题 + 描述 + 标签与链接 */
.project-card {
  padding: 18px 20px 18px 24px;
  margin-bottom: 16px;
  border-radius: 8px;
  border: 1px solid #e8e8e8;
  background: #fafafa;
  border-left: 4px solid #2E94BC;
}
.project-card:hover {
  border-color: #ddd;
  background: #fff;
}
.project-card-body {
  min-width: 0;
}
.project-card-title {
  font-size: 1.15rem;
  font-weight: 600;
  color: #111;
  margin: 0 0 10px 0;
  line-height: 1.35;
}
.project-card-desc {
  font-size: 0.9rem;
  color: #555;
  line-height: 1.6;
  margin: 0 0 14px 0;
}
.project-card-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px 16px;
  font-size: 0.85rem;
}
.project-card-tags {
  color: #888;
}
.project-card-tags span {
  display: inline-block;
  margin-right: 6px;
  padding: 2px 8px;
  background: #eee;
  border-radius: 4px;
  font-size: 0.8rem;
}
.project-card-links a {
  color: #2E94BC;
  text-decoration: none;
  font-weight: 500;
}
.project-card-links a:hover {
  text-decoration: underline;
}
.project-card-links span.sep {
  color: #ccc;
  margin: 0 6px;
  user-select: none;
}
