.post__title {
  max-width: 1000px;
  padding: 20px;
  border-radius: 30px;
  background-color: #fff;
  z-index: 2;
}

.post__featured-img {
  display: block !important;
  position: relative;
  width: 100%;
  margin-top: -100px;
  z-index: -1;
}

.post__featured-img img {
  width: 100%;
  height: auto;
  border-radius: 30px;
  max-height: 400px;
  object-fit: cover;
  object-position: top;
}

@media screen and (max-width: 768px) {
  .post__title {
    font-size: 0.6rem;
    width: 95%;
  }
  .post__featured-img {
    margin-top: -20px;
  }

  .post__featured-img img {
    border-radius: 0px;
  }
}
