Испытание 32/32 - Грид раскладка страницы на 100%, но есть осадочек

.grid {
  display: grid;
  gap: 10px;
  grid-template-columns: 130px 130px 130px 130px;
  grid-template-rows: 50px auto 140px;
}

.site-heading {
  grid-column: 1 / 5;
  grid-row: 1 / 2;
}

.video { 
  grid-column: 1 / 3;
  grid-row: 3 / 4;
}

.sidebar {
  grid-column: 4 / 5; 
  grid-row: 2 / 4;
}