section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  padding: 4vw;
  grid-gap: 4vw;
}

figure {
  margin: 0;
  width: 100%;
}

figure img {
  width: 100%;
  height: inherit;
  object-fit: inherit;
}

figure.img-1 {
  grid-column: 1 / 2;
  grid-row: 1 / 2;
  justify-self: center;
  align-self: center;
}

figure.img-2 {
  grid-column: 1 / 3;
  grid-row: 2 / 3;
  justify-self: center;
  align-self: center;
}



section div.text {
  grid-column: 2 / 3;
  grid-row: 1 / 2;
  justify-self: center;
  align-self: center;
}

section div.text p {
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.5;

  font-family: 'Syntax-Regular', sans-serif;
}

section p b {
  font-family: 'Syntax-Bold', sans-serif;
  font-weight: bold;
  font-size: 1.1em;
}

@media (orientation: portrait) {
  figure.img-1 {
    grid-column: 1 / 3;
    grid-row: 1 / 2;

  }

  figure.img-2 {
    grid-column: 1 / 3;
    grid-row: 3 / 4;

  }

  section div.text {
    grid-column: 1 / 3;
    grid-row: 2 / 3;
    margin-top: 32px;
    margin-bottom: 32px;
  }

}
