.box-header {
   display: grid;
   grid-template-columns: repeat(5, 1fr);
   gap: 20px
}

.commission-box {
   margin-bottom: 20px;
   background: #ededed;
   padding: 20px;
   border-radius: 10px;
   grid-column: 4 / span 2
}

@media only screen and (max-width: 768px) {
   .box-header {
      display: block;
   }

   .commission-box {
      margin-top: 20px;
   }
}
