.project-page {
  width: 100dvw;
  height: calc(100dvh - 50px);
  overflow-y: hidden;
}

.ProjectList {
  display: flex;
  flex-direction: column;
  gap: 14px;
  height: 100%;
  overflow-y: auto;
}

.page-header {
  margin-bottom: 14px;
}
.page-header .page-title {
  font-size: 18px;
  font-weight: 600;
  color: #111827;
  line-height: 1.2;
}
.page-header .page-desc {
  margin-top: 4px;
  font-size: 12px;
  color: #6b7280;
}

.ProjectCard {
  background: #ffffff;
  padding: 10px;
  border-radius: 0.5rem;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.06);
  text-decoration: none;
}

.ProjectCard .Cover {
  width: 100%;
  aspect-ratio: 4/3;
  max-height: 180px;
  background: #e5e7eb;
  overflow: hidden;
  position: relative;
}

.ProjectCard .Cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.ProjectCard .Content {
  padding: 12px;
}
.ProjectCard .Content .Title {
  font-size: 15px;
  font-weight: 600;
  color: #111827;
  margin-bottom: 6px;
  line-height: 1.3;
}
.ProjectCard .Content .Desc {
  font-size: 13px;
  color: #6b7280;
  line-height: 1.5;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.ProjectCard .Meta {
  padding: 10px 12px 12px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.ProjectCard .Meta .Tag {
  font-size: 11px;
  padding: 3px 8px;
  border-radius: 999px;
  background: #eef2ff;
  color: #4f46e5;
}
.ProjectCard .Meta .Date {
  font-size: 11px;
  color: #9ca3af;
}

.LoadMore {
  padding: 16px 0 20px;
  text-align: center;
  font-size: 13px;
  color: #6b7280;
  user-select: none;
}
.LoadMore .load-more-text,
.LoadMore .load-more-loading,
.LoadMore .load-more-end {
  display: none;
}
.LoadMore[data-status=idle] .load-more-text {
  display: inline-block;
  color: #2563eb;
}
.LoadMore[data-status=loading] .load-more-loading {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #6b7280;
}
.LoadMore[data-status=end] .load-more-end {
  display: inline-block;
  color: #9ca3af;
}

.spinner {
  width: 14px;
  height: 14px;
  border: 2px solid #d1d5db;
  border-top-color: #2563eb;
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

/*# sourceMappingURL=ProjectDetails.css.map */
