.blogMenuContainer {
    width: 95%;
    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 {
    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: center;
    font-size: 30px;
    line-height: 34px;
    margin: 40px auto 30px;
    font-weight: bold;
    display: block;
    display: none;
  }
  .blogCenteredContent {
    width: var(--web-container);
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    margin-bottom: 80px;
    gap: 50px 10px;
  }
  .dataContainer {
    margin-top: 15px;
    font-size: 15px;
    line-height: 19px;
  }
  .blogPostRegular {
    width: 100%;
  }
  
  .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;
    height: 50vh;
    object-fit: cover;
  }
  
  .blogPostDate {
    font-size: 13px;
    line-height: 17px;
    margin-bottom: 7px;
    display: none;
  }
  
  .blogPostTitle {
    font-size: 20px;
    line-height: 24px;
    margin: 10px 0px;
    font-weight: 700;
  }
  .blogPostSubtitle {
    font-size: 14px;
    color: var(--secondary);
    margin: 10px auto;
    line-height: 20px;
    font-style: italic;
    font-weight: 500;
    margin-bottom: 5px;
    margin-top: 5px;
    height: auto;
  }
  h4.blogPostDescription {
      font-size: 18px;
      line-height: 19px;
      margin-top: 30px;
  }
  
  @media screen and (max-width: 1100px) {
    .blogCenteredContent {
      grid-template-columns: repeat(2, 1fr);
      width: 90%;
    }
    .blogMenuContainer {
      width: 90%;
    }
    .blogTitle {
      margin-bottom: 15px;
    }
    .blogParentCategories {
      margin-bottom: 15px;
    }
    .blogCategoryTitle {
      padding: 13px 0 2px;
    }
  
    .constructionMessageDiv {
      width: 100%;
    }
  }
  @media screen and (max-width: 600px) {
    .blogCenteredContent {
      grid-template-columns: repeat(1, 1fr);
    }
  }
  