/* https://philipwalton.github.io/solved-by-flexbox/demos/grids/ */

.Grid {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  margin: 0px 0px 0px -2.5rem;
  padding: 0;
}

.Grid-cell {
  flex: 1;
}

.Grid > .Grid-cell {
  padding: 0px 0px 0px 2.5rem;
  flex: 0 0 100%; /* this one makes the cell stretch! */
}


/* /////////////////////////////////////////////////////////////// */
@media (min-width: 700px) {

  .Grid > .Grid-cell {
    flex: 1;
  }

}