/* Extra project gallery, kept responsive alongside the original layout. */
.recent-grid-more {
  margin-top: 18px;
  grid-template-columns: repeat(3, 1fr);
}

.recent-grid-more img {
  height: 245px;
}

@media (max-width: 760px) {
  .recent-grid-more {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .recent-grid-more img {
    height: 275px;
  }
}
