.wp-block-fseblocks-related-posts {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap:3rem;
}
.wp-block-fseblocks-related-posts .post-item {
  display: flex;
  flex-direction: column;
  height: 100%;
}
.wp-block-fseblocks-related-posts .featured-img {
  aspect-ratio: 3 / 2;
  width: 100%;
  position: relative;
  overflow: hidden;
  border-radius:15px;
}

.wp-block-fseblocks-related-posts .featured-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
} 	
.wp-block-fseblocks-related-posts .post-copy {
  flex-grow: 1;
}
.wp-block-fseblocks-related-posts .post-copy h3 {
	margin:1rem 0;	
}
.wp-block-fseblocks-related-posts .post-copy p {
  font-size: 0.9rem;
  margin:1.5rem 0;
}
.wp-block-fseblocks-related-posts .post-copy a {
  text-decoration: none;
}

@media screen and (max-width:1024px) {
	.wp-block-fseblocks-related-posts{grid-template-columns:repeat(2,1fr);gap:2rem;}
}
@media screen and (max-width:600px) {
	.wp-block-fseblocks-related-posts{grid-template-columns:repeat(1,1fr);}
}