.closest-community__grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 1rem;
}


@media screen and (max-width: 1023px) {
  .closest-community__grid {
	grid-template-columns: 1fr 1fr;
  }
  .closest-community__grid article:nth-of-type(3) {
	display: none;
  }
}

@media screen and (max-width: 781px) {
  .closest-community__grid {
	grid-template-columns: 1fr;
	grid-template-rows: auto;
  }
  .closest-community__grid article:nth-of-type(3) {
	display: block;
  }
}