.projects-list {
  display: flex;
  flex-direction: column;
  gap: 3rem;
  margin-top: 2rem;
}

.project-row {
  display: flex;
  gap: 2.5rem;
  align-items: flex-start;
}

.project-row--reverse {
  flex-direction: row-reverse;
}

.project-image img {
  display: block;
  width: 100%;
  max-width: 420px;
  border-radius: 16px;
  object-fit: cover;
}

/* Text block */
.project-content {
  flex: 1;
}

.project-label {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 0.3rem;
  opacity: 0.8;
}

.project-title {
  font-size: 1.5rem;
  margin: 0 0 0.8rem;
}

.project-description {
  margin: 0 0 0.8rem 1rem;
  padding: 0;
}

.project-description li {
  margin-bottom: 0.3rem;
}

.project-tech {
  font-size: 0.85rem;
  opacity: 0.8;
}

/* Mobile: stack vertically */
@media (max-width: 768px) {
  .project-row,
  .project-row--reverse {
    flex-direction: column;
  }

  .project-image img {
    max-width: 100%;
  }
}
