.collection-list-2 {
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto auto;
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
}

.projects-wrapper {
  margin-bottom: 0;
  position: relative;
  overflow: hidden;
  border-radius: 0.5rem;
}

.work-linkblock {
  aspect-ratio: 4 / 3;
}

.work-item-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.projects-wrapper:hover .work-item-image {
  transform: scale(1.06);
}

.work-info {
  display: none;
}

@media screen and (max-width: 991px) {
  .collection-list-2 {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: auto auto auto;
  }
}

@media screen and (max-width: 767px) {
  .collection-list-2 {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto auto auto auto auto;
  }
}
