.project-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 36px 18px;
  margin-top: 70px;
}

.project-card {
  min-width: 0;
}

.project-card video {
  display: block;
  width: 100%;
  aspect-ratio: 9 / 16;
  object-fit: cover;
  background: var(--deep);
}

.project-card > div {
  padding: 18px 2px 0;
}

.project-card span {
  display: block;
  margin-bottom: 7px;
  color: var(--green);
  font-size: .68rem;
  font-weight: 600;
  letter-spacing: .13em;
  text-transform: uppercase;
}

.project-card h3 {
  margin: 0;
  font-family: "Playfair Display", serif;
  font-size: 1.28rem;
  font-weight: 500;
  line-height: 1.2;
}

@media (max-width: 1100px) {
  .project-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 900px) {
  .project-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 520px) {
  .project-grid {
    grid-template-columns: 1fr;
    gap: 34px;
    margin-top: 48px;
  }

  .project-card video {
    max-height: 72vh;
  }
}
