Этого можно достичь, используя свойства flex.
https://jsfiddle.net/w5h49j1f/18/
.row { display: flex; }
.row > .column:first-child > div + div{
height: calc(100% - 20px); /* for full height - subtracting the line-height of the title at the top in the 1st column */
}
.row > .column iframe{
height: 100%;
}