.postWrapper {
  display: flex;
  justify-content: space-around;
  align-items: center;
  flex-direction: column;
  width: 100%;
}
.postWrapper .post {
  margin-bottom: 50px;
  max-width: 800px;
  border-radius: 20px;
  box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.7);
  background-color: white;
  transition: 300ms;
}
.postWrapper .post .headingWrapper {
  background-color: #B8285F;
  border-radius: 20px 20px 0 0;
  color: white;
  padding: 10px 20px;
}
.postWrapper .post .headingWrapper h2 {
  font-size: 25px;
  text-align: center;
}
.postWrapper .post .postContent {
  display: flex;
}
@media (max-width: 600px) {
  .postWrapper .post .postContent {
    flex-direction: column;
  }
}
.postWrapper .post .postContent .imageWrapper {
  width: 60%;
  display: flex;
  padding: 20px 0;
}
@media (max-width: 600px) {
  .postWrapper .post .postContent .imageWrapper {
    width: 100%;
  }
}
.postWrapper .post .postContent .imageWrapper img {
  align-self: center;
  width: calc(100% - 20px);
  margin-left: 10px;
}
.postWrapper .post .postContent .textWrapper {
  width: 40%;
}
@media (max-width: 600px) {
  .postWrapper .post .postContent .textWrapper {
    width: 100%;
  }
}
.postWrapper .post .postContent .textWrapper .date {
  text-align: center;
  color: rgba(0, 0, 0, 0.5);
  margin-top: 20px;
  font-size: 14px;
  font-weight: normal;
}
.postWrapper .post .postContent .textWrapper p {
  margin: 20px;
  width: calc(100% - 40px);
  white-space: pre-line;
}
.postWrapper .post .postContent .textWrapper .button {
  margin: 20px;
  margin-bottom: 40px;
  width: calc(100% - 60px);
}

/*# sourceMappingURL=posts.css.map */
