.chapter {
  display: flex;
  align-items: stretch;
}

.testtete:first-child {
  flex: 1;
  background-color: lightblue; /* для наглядности */
}

.testtete:nth-child(2),
.testtete:nth-child(3) {
  display: block;
  margin-top: 20px;
  background-color: lightgreen; /* для наглядности */
}