.custom-post-wrapper { position: relative; margin-left: -10px; margin-right: -10px; }
.custom-post-wrapper .grid-sizer { width: 25%; }
.custom-post-item {
  width: 25%;
  padding-left: 10px;
  padding-right: 10px;   /* 10px + 10px = 20px “gutter” tra le colonne */
  box-sizing: border-box;
}
.custom-post-thumbnail img { display:block; width:100%; height:auto; }
@media (max-width: 1200px) {
  .custom-post-wrapper .grid-sizer,
  .custom-post-item { width: 33.333%; } /* 3 colonne */
}
@media (max-width: 900px) {
  .custom-post-wrapper .grid-sizer,
  .custom-post-item { width: 50%; } /* 2 colonne */
}
@media (max-width: 600px) {
  .custom-post-wrapper .grid-sizer,
  .custom-post-item { width: 100%; } /* 1 colonna */
}