/* Photo-card project list — inspired by industry project listings, built independently for this site. */

.project-cards {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin: 24px 0 32px;
  padding: 0;
  list-style: none;
}

.project-card {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  background: #fff;
  border: 1px solid #e6e9ee;
  border-radius: 10px;
  padding: 16px;
  box-shadow: 0 2px 10px rgba(10, 31, 68, 0.05);
  min-width: 0;
  max-width: 100%;
}

.project-card img {
  width: 140px;
  height: 100px;
  object-fit: cover;
  border-radius: 8px;
  flex-shrink: 0;
}

.project-card-body {
  min-width: 0;
}

.project-card-body h2,
.project-card-body h3 {
  margin: 0 0 8px;
  font-size: 16px;
  font-weight: 600;
  color: var(--navy);
}

.project-card-body ul {
  margin: 0;
  padding-left: 18px;
  color: var(--text);
  font-size: 15px;
  line-height: 1.6;
}

.project-card-body ul li {
  margin-bottom: 4px;
}

.project-card-body p {
  margin: 0;
  color: var(--text);
  font-size: 15px;
  line-height: 1.6;
}

.project-card--lead img {
  width: 220px;
  height: 150px;
}

@media (max-width: 640px) {
  .project-card {
    flex-direction: column;
  }

  .project-card img,
  .project-card--lead img {
    width: 100%;
    height: 170px;
  }
}
