.projects-section {
  padding: 60px 20px;
  text-align: center;
}

.projects-list {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

/* Horizontal Card */
.project-row {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;

  padding: 18px 22px;
  border-radius: 16px;

  background: rgba(255, 255, 255, 0.75);
  backdrop-filter: blur(10px);

  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);

  transition: all 0.35s ease;
}

/* Hover same feel as dimension-card */
.project-row:hover {
  transform: translateY(-5px) scale(1.01);
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.1);
}

.project-row::before {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  background:
    radial-gradient(circle at left, rgba(76, 184, 160, 0.25), transparent 60%),
    radial-gradient(circle at right, rgba(255, 184, 107, 0.25), transparent 60%);
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: -1;
}

.project-row:hover::before {
  opacity: 1;
}

/* Left Title */
.project-title {
  font-weight: 600;
  font-size: 16px;
  text-align: left;
  color: #222;
}

/* Right Author */
.project-author {
  font-size: 14px;
  color: #555;
  white-space: nowrap;
}

/* Button */
.view-all-btn {
  margin-top: 30px;
}

/* Responsive */
@media (max-width: 600px) {
  .project-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
  }

  .project-author {
    white-space: normal;
  }
}
