.project-list {
  border-top: 1px solid #d8d8d8;
  margin-top: 1.5rem;
}

.project-row {
  align-items: center;
  border-bottom: 1px solid #d8d8d8;
  color: inherit;
  display: grid;
  gap: 1.5rem;
  grid-template-columns: 150px 120px minmax(0, 1fr);
  min-height: 110px;
  padding: 1rem 0;
  text-decoration: none;
}

.project-row:hover .project-title,
.project-row:focus .project-title {
  text-decoration: underline;
}

.project-image {
  align-items: center;
  display: flex;
  justify-content: center;
}

.project-image img {
  display: block;
  max-height: 74px;
  max-width: 120px;
  object-fit: contain;
}

.project-date {
  color: #111;
  font-size: 1.1rem;
  line-height: 1.35;
}

.project-title {
  color: #06f;
  font-size: 1.15rem;
  line-height: 1.3;
}

@media (max-width: 640px) {
  .project-row {
    gap: 0.75rem;
    grid-template-columns: 96px minmax(0, 1fr);
    min-height: 92px;
  }

  .project-date {
    display: none;
  }

  .project-image img {
    max-height: 58px;
    max-width: 88px;
  }
}
