.centeredContent {
  position: relative;
  width: 100%;
  padding-bottom: 60px;
}
.blogsContainer {
  width: 80%;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px 5%;
}
.blogPostContainer {
  width: 100%;
  padding-bottom: 30px;
}
.imgContainer {
  margin-block-start: 0em;
  margin-block-end: 0em;
  width: 100%;
  overflow: hidden;
}
.blogPostContainer:hover .postPreviewFile {
  transform: scale(1.1);
  filter: brightness(0.5);
}
.postPreviewFile {
  width: 100%;
  height: 25vw;
  object-fit: cover;
  transition: all 0.4s ease-in-out;
}
.blogPostTitle {
  color: #000000;
  font-size: 17px;
  line-height: 21px;
  font-weight: 600;
  margin: 16px 0 5px;
  width: 100%;
  overflow: hidden;
  height: 42px;
}
.blogPostDescription {
  font-size: 16px;
  line-height: 20px;
  color: #000000;
}

.secondHeader {
  width: 100%;
  height: auto;
  background: rgba(234, 234, 234, 0.5);
  color: #000000;
  margin-bottom: 60px;
}
.blogCatLinksWrapper {
  width: 80%;
  margin: auto;
  max-width: 990px;
  display: flex;
  line-height: 60px;
  font-size: 16px;
  justify-content: space-evenly;
}
ul {
  list-style-type: none;
  margin-block-start: 0em;
  margin-block-end: 0em;
  margin-inline-start: 0px;
  margin-inline-end: 0px;
  padding-inline-start: 0px;
}
.redLineBtn {
  width: 150px;
  border-bottom: 2px solid #ed1b2e;
  padding-top: 30px;
  padding-bottom: 8px;
  align-items: center;
}
.redLineBtn img {
  height: 11px;
}
.redLineBtnText {
  font-size: 14px;
  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%;
  }

  .blogPostFirstRow {
    width: 100%;
    margin-bottom: 30px;
  }

  .blogPostRegular {
    width: 48%;
    height: 235px;
    margin-bottom: 0px;
  }

  .blogPostRegular .blogPostTitle {
    margin-top: 5px;
    font-size: 12px;
  }

  .blogPostRegular .blogPostDescription {
    font-size: 12px;
  }

  .blogPostFirstRow .postPreviewFile {
    height: 210px;
  }

  .blogPostRegular .postPreviewFile {
    height: 120px;
  }
  .blogsContainer {
    width: 90%;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 40px;
  }
  .centeredContent {
    width: 100% !important;
    padding-bottom: 20px;
    margin: 60px 0 40px;
  }
  .postPreviewFile {
    height: 80vw;
  }
  .blogPostTitle {
    height: auto;
  }
}
