.is-flat-box .is-row {
  --rh--size--column-gap: .5rem;
  margin-bottom: 0.5rem;
}
.is-flat-box .is-row .wp-block-column:not(.empty) {
  background: var(--rh--color--highlight);
  padding: 2rem;
  line-height: 1.5;
}
@media (min-width: 840px) {
  .is-flat-box .is-row .wp-block-column:not(.empty) {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
    transition: 0.2s ease-in-out;
  }
  .is-flat-box .is-row .wp-block-column:not(.empty) .wp-block-image {
    overflow: hidden;
    z-index: 10;
  }
  .is-flat-box .is-row .wp-block-column:not(.empty) .wp-block-image img {
    transition: 0.2s ease-in-out;
  }
  .is-flat-box .is-row .wp-block-column:not(.empty):hover {
    background: var(--rh--color--footer);
    color: var(--rh--color--footer--text);
    transition: 0.2s ease-in-out;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1450980392);
  }
  .is-flat-box .is-row .wp-block-column:not(.empty):hover .wp-block-heading,
  .is-flat-box .is-row .wp-block-column:not(.empty):hover a:not(.wp-block-button__link) {
    color: var(--rh--color--footer--text);
    transition: 0.2s ease-in-out;
  }
  .is-flat-box .is-row .wp-block-column:not(.empty):hover img {
    transform: scale(1.2);
  }
}