.project-highlight {
  margin-bottom: 2rem;
}

.project-highlight-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  row-gap: 0.5rem;
  column-gap: 108px;
  border: 1px solid var(--border);
  border-radius: 4px;
  background: #f8faf7;
  background-image: radial-gradient(
    circle,
    rgb(222, 222, 222) 1.1px,
    transparent 1.1px
  );
  background-size: 24px 24px;
  background-position: 0 0;
  padding: 1.2rem 40px 1.25rem;
}

.project-highlight-row {
  padding-top: 0.7rem;
}

.content .project-highlight-label {
  margin: 0;
  margin-bottom: 0.35rem;
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #7b7b7b;
  line-height: 1.4;
}

.content .project-highlight-value {
  margin: 0;
  line-height: 1.35;
  font-family: var(--font-serif);
  font-size: 14px;
}

.content .project-highlight-row:nth-child(4) .project-highlight-value {
  font-size: 16px;
}

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