.wp-block-fseblocks-related-posts {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.wp-block-fseblocks-related-posts .post-item {

  overflow: hidden;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.wp-block-fseblocks-related-posts .post-item img {
  width: 100%;
  height: auto;
  display: block;
    border-radius:12px;
}

.wp-block-fseblocks-related-posts .post-copy {
  flex-grow: 1;
}

@media only screen and (max-width:800px) {
	.wp-block-fseblocks-related-posts {
	  display: grid;
	  grid-template-columns: repeat(2, 1fr);
	}	
}
@media only screen and (max-width:500px) {
	.wp-block-fseblocks-related-posts {
	  display: grid;
	  grid-template-columns: repeat(1, 1fr);
	}	
	.wp-block-fseblocks-related-posts .post-copy h3 {margin:0.75em 0;}
	.wp-block-fseblocks-related-posts .post-copy p {display:none;}
}