#mission {
  background-color: white;
  width: 100%;
  margin: 50px 0px;
}

.post-with-image {
  width: 100%;
  height: 100%;
  display: block;
  justify-content: space-evenly;
  align-items: center;
  display: flex;
  flex-flow: row;
}

.post-with-image > .post {
  width: 80%;
  height: 95%;
}

.post-with-image > .post-image {
  width: 45%;
  height: 95%;
  border-radius: 7px;
}

.post-image {
  /* Da cambiare in view desktop*/
  display: none;
  overflow: hidden;
}

.post-image > img {
  border-radius: 7px;
  width: 100%;
}

.post {
  display: block;
  width: 100%;
}

.post-subtitle {
  color: grey;
}

@media only screen and (min-width: 1024px) {
  .post-image {
    display: unset;
  }

  #mission {
    display: flex;
    align-items: center;
  }

  .post-with-image {
    min-width: 900px;
    width: 50%;
    margin: 0 auto;
  }

  .post-with-image > .post {
    width: 45%;
  }

  .post-with-image > .post-image {
    width: 55%;
  }
}
