/*
 * @file
 * Provides the layout styles for two-column layout section.
 */
/** Prevent flex items center from messing up admin tool */
 .layout-builder__layout.layout__centred {
   align-items: stretch !important;
 }

.layout__centred {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}

.layout__centred > .layout__region {
  flex: 0 1 100%;
}

@media screen and (min-width: 60em) {
  .layout__centred > .layout__region {
    flex: 0 1 50%;
  }
  
}
