#titleOfBlog {
  font-weight: 900;
  color: #58595b;
  letter-spacing: 0;
  font-size: 21px;
  border-bottom: none;
  margin-top: 60px;
  text-transform: capitalize;
  margin-bottom: 50px;
  text-align: center;
}

.centeredContent {
  width: 100%;
}

.blogsContainer {
  width: 85%;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
  margin-top: 90px;
  margin-bottom: 40px;
}

.blogPostRegular {
  width: 100%;
  float: left;
  height: auto;
  background-color: #fff;
  margin-bottom: 15px;
  transition: all 0.4s ease-out;
  -moz-transition: all 0.4s ease-out;
  -webkit-transition: all 0.4s ease-out;
  -o-transition: all 0.4s ease-out;
}

.blogPostRegular:hover {
  box-shadow: 4px 16px 11px rgb(0 0 0 / 2%);
  transform: translateY(-10px);
}

.constructionMessageDiv {
  width: 400px;
  margin: auto;
  margin-top: 40px;
  margin-bottom: 20px;
}

.constructionBanner {
  width: 100%;
  height: auto;
  margin-bottom: 0;
  margin-top: 35px;
}

.imgContainer {
  position: relative;
  width: 100%;
}

.dataContainer {
  width: 85%;
  height: auto;
  margin: auto;
}

.blogPostRegular .postPreviewFile {
  width: 100%;
  height: 260px;
}

.postPreviewFile {
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}

.blogPostDate {
  font-size: 10px;
  color: #b4b4b4;
  text-transform: uppercase;
  text-align: left;
  margin-top: 30px;
  margin-bottom: 20px;
  font-weight: 500;
}

.blogPostTitle {
  font-size: 18px;
  line-height: 22px;
  font-weight: 600;
  margin-top: 25px;
  margin-bottom: 15px;
  color: #222;
  text-align: left;
  overflow: hidden;
  width: 100%;
  height: 44px;
}

.blogPostDescription {
  font-size: 14px;
  color: #252525;
  text-align: left;
  width: 100%;
  overflow: hidden;
  height: 92px;
  font-weight: 500;
  line-height: 18px;
}

@media screen and (max-width: 768px) {
  #titleOfBlog {
    margin-top: 40px;
    margin-bottom: 25px;
    font-size: 18px;
  }

  .constructionMessageDiv {
    width: 100%;
  }

  .constructionBanner {
    width: 80%;
    height: auto;
    margin-bottom: 30px;
    margin-top: 35px;
    margin-left: 10%;
  }

  .blogPostRegular .blogPostTitle {
    margin-top: 15px;
    margin-bottom: 0;
    font-size: 13px;
    line-height: 17px;
    height: auto;
    margin-bottom: 5px;
  }

  .blogPostRegular .blogPostDescription {
    font-size: 11px;
    line-height: 16px;
    height: auto;
  }

  .blogPostDate {
    font-size: 11px;
    line-height: 15px;
    margin-top: 10px;
  }

  .blogPostFirstRow .postPreviewFile {
    height: 210px;
  }

  .blogPostRegular .postPreviewFile {
    height: 130px;
    height: 145px;
  }

  .blogsContainer {
    width: 100%;
    display: block;
    margin-top: 30px;
  }

  .dataContainer {
    width: 100%;
  }

  .blogPostRegular:hover {
    box-shadow: unset;
    transform: unset;
  }
}

@media screen and (min-width: 415px) and (max-width: 768px) {
  .blogPostRegular .postPreviewFile {
    height: 281px;
  }
}
