/*
 * Grid Functions
 * Version: 2.1.0
 */
.featured-image-block {
  display: flex;
  flex-direction: column;
  width: 100%;
}
.featured-image-block.has-content {
  position: relative;
}
.featured-image-block.has-content > * {
  z-index: 1;
}
.featured-image-block.has-content > img:first-of-type {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
}
.featured-image-block > img {
  object-fit: cover;
  height: 100%;
  max-height: var(--featured_image_block_height, auto);
}

