h4 {
  color: var(--text-color);
}

.project-gallery .gallery-ph {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 1rem;
}

.project-gallery .gallery-ph img {
  height: 30rem;
  width: 100%;
  object-fit: cover;
}

@media screen and (max-width: 767px) {
  .project-gallery .gallery-ph {
    grid-template-columns: 1fr;
  }

  .project-gallery .gallery-ph img {
    max-height: 30rem;
    width: 100%;
    object-fit: cover;
  }
}

@media screen and (min-width: 768px) and (max-width: 1023px) {
  .project-gallery .gallery-ph {
    grid-template-columns: 1fr 1fr;
  }
}
