.projects-clean {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  width: 100%;
}

.projects-clean .project-card {
  width: 100%;
  max-width: none;
  min-height: 520px;
  margin: 0;
  padding: 26px;
  border-radius: 26px;
  background: rgba(255,255,255,0.85);
  box-shadow: 0 12px 35px rgba(0,0,0,0.08);
  display: flex;
  flex-direction: column;
  text-align: center;
}

.projects-clean .project-image {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 20px;
  margin-bottom: 20px;
}

.projects-clean .logo-image {
  object-fit: contain;
  background: white;
  padding: 20px;
}

.projects-clean .project-card p {
  flex-grow: 1;
}

.projects-clean .project-link {
  margin-top: 20px;
  font-weight: 700;
  color: #8d5b6d;
}

@media (max-width: 900px) {
  .projects-clean {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 700px) {
  .projects-clean {
    grid-template-columns: 1fr;
  }
}
