.project-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  list-style: none;
  padding: 0;
  margin: 0;
}

@media (max-width: 480px) {
  .project-list {
    grid-template-columns: 1fr;
  }
}

.project-item a {
  display: block;
  text-decoration: none;
  color: inherit;
}

.project-item:hover {
  opacity: 0.5;
}

.project-item {
  background-color: #f3f3f3;
  border-radius: 6px;
  padding: 16px;
}

.project-item h3 {
  font-weight: bold;
  margin: 0 0 0.25rem;
}

.project-item p {
  margin: 0;
  font-size: 0.9rem;
}

.project-item__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0.25rem;
}

.project-item__header h3 {
  margin: 0;
}

.project-item__badge {
  font-size: 0.7rem;
  font-weight: bold;
  text-transform: uppercase;
  background-color: #fde68a;
  color: #92400e;
  padding: 2px 6px;
  border-radius: 3px;
  white-space: nowrap;
  flex-shrink: 0;
}
