.projects {
  --color-tag: #9B9B9B;
}

.project-item {
  margin-bottom: 10px;
}

.project-item-header {
  font-weight: normal;
  text-decoration: none;
  color: var(--color-black);
}

.project-item-tags {
  display: flex;
  justify-content: flex-start;
}

.project-item-tag {
  color: var(--color-tag);
  font-weight: 300;
  display: inline-block;
  padding: 0 10px;
  position: relative;
  line-height: 24px;
}

.project-item-tag::before {
  background: var(--color-tag);
  content: '';
  height: 10px;
  position: absolute;
  right: 0;
  top: 7px;
  width: 1px;
}

.project-item-tag:first-child {
  padding-left: 0;
}

.project-item-tag:last-child::before {
  content: none;
}

@media only screen and (max-device-width: 811px) {
  .projects {
    padding-top: 10px;
    padding-bottom: 10px;
  }

  .project-item-header {
    font-size: 14px;
    letter-spacing: 0.5px;
    line-height: 20px;
  }

  .project-item-tags {
    font-size: 10px;
    letter-spacing: 0.83px;
    line-height: 12px;
  }
}

@media only screen and (min-device-width: 812px) {
  .project-item {
    padding-left: var(--dimension-a);
  }

  .project-item-header {
    font-size: 20px;
    letter-spacing: 0.22px;
    line-height: 40px;
  }

  .project-item-tags {
    font-size: 11px;
    letter-spacing: 0.08px;
    line-height: 25px;
  }

  .project-item-tag {
    padding: 0 20px;
  }
}

