.project-list-container {
  display: flex;
  max-width: 1000px;
  flex-direction: column;
  align-items: flex-start;
  position: fixed;
  left: 32px;
  right: 32px;
  bottom: 40px;
  box-sizing: border-box;
  z-index: 1;
}

.project-list-legende {
  color: #717171;
  font-family: "Google Sans Code";
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  display: grid;
  grid-template-columns: 0.7fr 1.3fr 1fr;
  width: 100%;
  gap: 8px;
  margin-bottom: 60px;
}

.project-list-item {
  display: flex;
  flex-direction: column;
  width: 100%;
  gap: 12px;
}

.project-item-grid {
  display: grid;
  grid-template-columns: 0.7fr 1.3fr 1fr;
  width: 100%;
  gap: 8px;
}

.project-item-date,
.project-item-tags {
  font-size: 20px;
}

.project-item-name {
  font-size: 33px;
}

.project-item-separator {
  height: 1px;
  width: 100%;
  opacity: 0.7;
  margin-top: 8px;
  margin-bottom: 20px;
  background: linear-gradient(
    to right,
    #000 0%,
    #000 50%,
    #a7a5a5 50%,
    #a7a5a5 100%
  );
  background-size: 200% 100%;
  background-position: 100% 0;
  transition: background-position 0.35s ease-in;
}

.project-list-item:hover .project-item-separator {
  background-position: 0 0;
}

@media (max-width: 768px) {
  .project-list-legende {
    display: none;
  }
  .project-item-grid {
    grid-template-columns: 1fr;
    gap: 2px;
  }
  .project-item-tags {
    display: none;
  }

  .project-list-item {
    gap: 2px;
  }
}
