.editorial-content {
  justify-content: center;
  gap: var(--editorial-content--gutter, 0%);
  flex-wrap: wrap;
  display: flex;
}

.editorial-content--column {
  flex: 100%;
}

@media screen and (min-width: 769px) {
  .editorial-content--column {
    flex-basis: calc(50% - var(--editorial-content--gutter, 0%));
  }
}



