.blogMenuContainer {
  width: 92%;
  margin: 0 auto;
}
.blogParentCategories,
.blogChildCategories {
  width: auto;
  display: flex;
  flex-flow: wrap;
  justify-content: center;
}
.blogParentCategories {
  font-weight: bold;
  font-size: 19px;
  line-height: 23px;
  margin-bottom: 25px;
}
.blogChildCategories {
  display: none;
  font-size: 16px;
  line-height: 20px;
  margin-bottom: 25px;
}
.blogCategoryTitle.selected {
  border-bottom: 1px solid;
}
.blogCategoryTitle {
  padding: 10px 0 3px;
  margin: 0 10px;
}
.blogTitle {
  text-align: left;
  font-size: 20px;
  line-height: 34px;
  margin: 0rem auto 30px;
  padding-top: 3rem;
  font-weight: 400;
  display: block;
  color: var(--third);
}
.blogCenteredContent {
  width: 92%;
  display: grid;
  gap: 40px;
  grid-template-columns: repeat(3, 1fr);
  margin-bottom: 80px;
}
#content {
  background-color: #A8AAAF1A;
}
.dataContainer {
  margin-top: 15px;
  font-size: 15px;
  line-height: 19px;
}
.data{height: 100%;display: grid;grid-template-rows: 45px 100px 40px;gap: 10px;flex-direction: column;}
.blogPostRegular {
  width: 100%;
  border: 1px solid #CFCFCF;
  padding: 20px;
  box-sizing: border-box;
  background: var(--white);
}

.constructionMessageDiv {
  width: 90%;
  max-width: 760px;
  margin: 39px auto;
  grid-column-start: 1;
  grid-column-end: 5;
  grid-row-start: 1;
  grid-row-end: 3;
  text-align: center;
  font-size: 18px;
  line-height: 24px;
}

.blogPostRegular .postPreviewFile {
  width: 100%;
  display: block;
  height: auto;
}

.blogPostDate {
  font-size: 13px;
  line-height: 17px;
  margin-bottom: 7px;
}

.blogPostTitle {
  font-size: 15px;
  line-height: 22px;
  font-weight: 600;
  color: var(--fifth);
  display: flex;
  align-items: center;
}
.blogPostDescription {
  font-size: 13px;
  font-weight: 400;
  color: var(--fifth);
}
.viewMore{
  c(100% - 40px);
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 4px;
  background: var(--fourth);
  border: 1px solid var(--fourth);
  color: var(--white);
  font-size: 13px;
  font-weight: 600;
  height: 39px;
  transition: 0.3s all ease-in;
}
.viewMore:hover{
  background: var(--white);
  color: var(--fourth);
}
@media screen and (max-width: 1100px) {
  .blogCenteredContent {
    grid-template-columns: repeat(2, 1fr);
    width: 90%;
  }
  .blogMenuContainer {
    width: 90%;
  }
  .blogTitle {
    /* margin: 2rem 0; */
    padding-top: 1.5rem;
  }
  .blogParentCategories {
    margin-bottom: 15px;
    display: none;
  }
  .blogCategoryTitle {
    padding: 13px 0 2px;
  }

  .constructionMessageDiv {
    width: 100%;
  }
}
@media screen and (max-width: 600px) {
  .blogCenteredContent {
    grid-template-columns: repeat(1, 1fr);
  }
}
