/* Create two equal columns that floats next to each other */
.single-speaker-column-text {
    float: left;
    width: 70%;
    padding: 10px;
}

.single-speaker-column-img {
    float: left;
    width: 30%;
    padding: 10px;
}
  
/* Clear floats after the columns */
  .single-speaker-row:after {
    content: "";
    display: table;
    clear: both;
}

.single-speaker-row {
    padding: 20px 20px;
}
  
/* Responsive layout - makes the two columns stack on top of each other instead of next to each other */
@media screen and (max-width: 600px) {
    .single-speaker-column-text {
      width: 100%;
    }
}

/* Responsive layout - makes the two columns stack on top of each other instead of next to each other */
@media screen and (max-width: 600px) {
    .single-speaker-column-img {
      width: 100%;
    }
}