.box {
  display: grid;
  width: calc(100% - 10px);
  border-top: 4px solid #96ceb4;
  border-left: 4px solid #96ceb4;
  grid-auto-rows: auto;
  grid-template-columns: 20% 80%;
}

@media screen and (max-width: 736px) {
  .box {
    grid-auto-columns: auto;
  }
}

.box__itmes {
  font-size: 16px;
  padding: .25rem .25rem .25rem .5rem;
  color: #444;
  border-right: 4px solid #96ceb4;
  border-bottom: 4px solid #96ceb4;
  background-color: #fff;
}

@media screen and (max-width: 736px) {
  .box__itmes {
    grid-column: 1 / 3;
  }
}

.box__title {
  font-size: 18px;
  font-weight: bold;
  background-color: #ffeead;
}
