.image-row {
  max-width: 1000px;
  margin: 15px auto;
  display: grid;
  gap: 0 10px;
  grid-template-rows: auto max-content;
  justify-content: center;
}

.image-row img {
    grid-row: 1;
    max-height: 475px;
    max-width: 100%;
    min-height: 0;
    min-width: 0;
}

.image-row p {
    grid-row: 2;
    margin: 0;
    display: inline-block;
    text-align: center;
    vertical-align: middle;
}


.media-row {
    display: flex;
    gap: 10px;
    margin: 10px;
    justify-content: center;
}

.media-row p {
    max-width: 450px;
    width: 100%;
    flex: 1 1 auto;
}

.media-row .video {
    max-width: 400px;
    width: 100%;
    height: auto;
    flex: 1 1 auto;
}

.media-row video {
    width: 100%;
    height: auto;
}
