

.post-wrapper {
  width: auto;
  margin: auto;
}

.post {
  display: flex;
  background: #fff;
  margin: 1em;
}
.post:nth-child(2n) {
  flex-direction: row-reverse;
  text-align: right;
}
.post .image-wrapper {
  position: relative;
}
.post .image-wrapper img {
  display: block;
  max-height: unset;
  height: 100%;
  width: 100%;
  object-fit: cover;
}
.post .content {
  box-sizing: border-box;
  min-width: 50%;
  max-width: 50%;
  padding: 2em 3em;
}
