.c-items {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px; 
}

.c-items > a {
  width: auto;
}


@media screen and (max-width: 1024px) {
  .c-items {
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;   }
}


@media screen and (max-width: 767px) {
  .c-items {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }
}

body.loading:not(.loaded) .c-items > a{
	visibility:hidden;
	pointer-events:none;
}