
/* Projects Page Styles */
.projects-page {
  padding: 24px;
}

.projects-title {
  text-align: center;
  margin-bottom: 18px;
}

.projects-intro {
  text-align: center;
  margin-bottom: 24px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.projects-list {
  display: flex;
  flex-direction: column;
  gap: 28px;
  align-items: center;
}

.project-item {
  text-decoration: none;
  color: inherit;
  width: 300px;
}

.project-logo {
  width: 300px;
  height: auto;
  display: block;
  margin: 0 auto;
  transition: transform 0.3s ease;
}

.project-item:hover .project-logo {
  transform: scale(1.05);
}

.project-name {
  text-align: center;
  margin-top: 8px;
  font-weight: 600;
  transition: text-decoration 0.3s ease;
}

.project-item:hover .project-name {
  text-decoration: underline;
}

.project-desc {
  text-align: center;
  margin-top: 8px;
  font-size: 14px;
  line-height: 1.4;
  color: #666;
}