/* Space between post header band and post body */
.single-post .wp-block-post-featured-image,
.single-post .wp-block-post-content {
  margin-top: 48px;
}
/* Consistent thumbnail grid for all Essential Blocks galleries */
.eb-gallery-img-wrapper.grid {
  display: grid !important;
  grid-template-columns: repeat(3, 1fr) !important;
  gap: 10px !important;
}
.eb-gallery-img-wrapper.grid .eb-gallery-img-content {
  width: 100% !important;
  margin: 0 !important;
}
.eb-gallery-img-wrapper.grid .eb-gallery-link-wrapper,
.eb-gallery-img-wrapper.grid .eb-gallery-img-content img {
  display: block;
  width: 100% !important;
}
.eb-gallery-img-wrapper.grid .eb-gallery-img-content img {
  height: 260px !important;
  object-fit: cover;
}
@media (max-width: 767px) {
  .eb-gallery-img-wrapper.grid {
    grid-template-columns: repeat(2, 1fr) !important;
  }
  .eb-gallery-img-wrapper.grid .eb-gallery-img-content img {
    height: 180px !important;
  }
}