.blog-hero {
    position: relative;
    width: 100%;
    height: 230px;
    min-height: 200px;
    max-height: 300px;
    overflow: auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }

.blog-hero__bg {
    position: absolute;
    top: 0;
    width: 100%;
    height: 100%;
    left: 0px;
    object-fit: cover;
    z-index: -1;
  }

.blog-title {
  margin: 0 auto;
  width: 400px;
  height: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.blog-title > h2 {
  color: var(--clr-white);
  font-weight: 500;
  font-size: 35px;
  text-transform: none;
  text-align: center;
}

.blog-post__container {
  padding: 1.5rem 1.5rem 2rem 1.5rem;
}

.blog__img {
  display: flex;
  height: auto;
  justify-content: space-around;
  padding: 1rem;
}

.blog__img > img {
  width: 11rem;
  height: auto;
}


.blog__text {
  margin: 25px auto;
}

.blog-post__content h2 {
  padding-bottom: 15px;
}

.blog-post__content p {
  padding-bottom: 15px;
}

.author, .date {
  text-align: right;
  padding-bottom: 0px !important;
}

.date {
  display: none;
}


/*-------------------------------------------------->
<-----              TABLET > 768px             ----->
<--------------------------------------------------*/


@media only screen and (min-width: 48rem) {  

.blog-hero {
    height: 260px;
  }

.blog-title {
  width: 600px;
}

.blog-post__container {
  margin: 0 auto;
  width: 600px;
}

}