.info-area {
  overflow: auto;
}
  .video-wrapper {
  position: relative;
  width: 100%;
  padding-top: 56.25%; /* 16:9 = 9 / 16 = 0.5625 */
  height: 0;
  overflow: hidden;
}

.video-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}
figure {
  grid-column-start: 1;
  grid-column-end: 2;
  grid-row-start: 1;
  grid-row-end: 3;
  position: relative;
  background-color: #000;
  overflow: hidden;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 768px) {
  figure {
    min-height: auto;
  }
}