.gallery {
  display: grid;
  grid-template-columns: repeat(4, 80px);
  grid-auto-columns: 80px;
  gap: 8px;
  background-color: #f0f0f0;
  padding: 15px;
  border-radius: 5px;
  justify-content: start;
}

.gallery-item {
  width: 80px;
  height: 80px;
  background: linear-gradient(45deg, #FF6B6B, #4ECDC4);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: bold;
  font-size: 14px;
}

.gallery-item:nth-child(5) { grid-column: 5; }
.gallery-item:nth-child(6) { grid-column: 6; }