/* Overwrite Gutenberg Variables */
:root {
  --wp--style--global--content-size: 1400px;
}

/* Breakpoints */
/* Typography */
/* Color Palette */
/* Layout */
/* Block - Image */
.epic-image {
  display: flex;
}
.epic-image img {
  max-height: 250px;
}
@media only screen and (min-width: 768px) {
  .epic-image img {
    max-height: 350px;
  }
}
@media only screen and (min-width: 992px) {
  .epic-image img {
    max-height: 100%;
  }
}