.auto-grid-example {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 80px;
  grid-auto-flow: row dense;
  gap: 10px;
  max-width: 500px;
  margin: 0 auto;
}

.auto-grid-example > div {
  background: linear-gradient(45deg, #ff6b6b, #ffa500);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  color: white;
}

.auto-grid-example .wide {
  grid-column: span 2;
  background: linear-gradient(45deg, #4ecdc4, #44a08d);
}