/* PROJECT GRID */

.project-grid {
  display: grid;

  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));

  gap: 50px;
}

.project img {
  aspect-ratio: 16/10;

  object-fit: cover;

  margin-bottom: 20px;
}

.project h3 {
  font-size: 1.6rem;

  font-weight: 400;

  margin-bottom: 15px;
}

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

.project-image-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  margin: 4rem 0;
}

.project-image-grid figure {
  margin: 0;
}

.project-image-grid img {
  display: block;
  width: 100%;
  height: auto;
}

.project-image-grid figcaption {
  margin-top: 0.75rem;
  font-size: 0.85rem;
  color: var(--text-muted);
}

.project-video-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.project-video {
  width: 100%;
  aspect-ratio: 16 / 9;
}

.project-video iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

@media (max-width: 700px) {
  .project-image-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}
