KaiserEMP
9/21/2017 - 10:04 AM

Two and 1 fullwidth

.related-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  .related {
    flex-grow: 1;
    max-width: 48%;
    flex-basis: 48%; /* For IE */
    &:nth-child(odd):last-child {
      max-width: 100%;
    }
  }
}