/* START Show & Tell */
.show-and-tell {
  align-items: center;
  display: flex;
}

.show-and-tell img {
  max-width: 100%;
}

.show-and-tell div {
  flex: 1;
}

.show-and-tell.flip {
  flex-direction: row-reverse;
}
/* END Show & Tell */


.show-and-tell div.show.thirds {
  flex: 1 1 0;
}

.show-and-tell div.tell.thirds {
  flex: 2 1 0;
}

.show-and-tell .tell {
  padding: 5px 20px 0 20px;
}



/* START Show & Tell Responsive */
@media (max-width: 860px) {

.show-and-tell {
  align-items: center;
  flex-direction: column;
}
.show-and-tell div {
  width: 100%;
}

.show-and-tell.flip {
  align-items: center;
  flex-direction: column;
}

}
/* END Show & Tell Responsive */