.container {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-gap: 20px;
  }

  .fill-width {
    width: 100%;
  }

  .width-4 {
    grid-column: span 4;
  }