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

.blogsContainer {
  display: flex
}

.centeredContent {
  width: 90%;
  display: flex;
  gap: 15px;
  margin-bottom: 5rem;
}

.blogCenteredContent {
  display: flex;
  flex-wrap: wrap;
  gap: 20px 10px;
  margin-bottom: 80px;
  margin-top: 2rem;
  overflow: visible;
}

.blogPostFirstRow {
  width: 33%;
  margin: 10px;
  height: auto;
  overflow: hidden;
  margin-bottom: 26px;
}

.blogPostSubtitle {
  font-size: 12px;
  font-weight: 200;
  margin-top: 0;
  text-align: left;
}

.proyectos .blogPostSubtitle {
  font-size: 12px;
  font-weight: 200;
  margin-top: 0;
  text-align: left;
  display: block;
}

.blogPostRegular {
  width: calc((100% / 3) - 8px);
  float: left;
  height: auto;
  /* margin-bottom: 50px; */
  position: relative;
  overflow: visible;
  margin-bottom: 20px;
}

.proyectos .blogPostRegular {
  float: left;
  height: auto;
  margin-bottom: 0px;
}

.blogPostRegular::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -17px;
  width: 0;
  height: 6px;
  border-radius: 10px;
  background-color: var(--red);
  transition: width 0.5s ease-out;
}

.blogPostRegular:hover::after {
  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;
}

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

.blogPostFirstRow .postPreviewFile {
  width: 100%;
  height: 239px;
}

.blogLine {
  border: 1px solid;
  width: 295px;
  margin-left: 0;
  margin-top: 69px;
}

.imgContainer {
  position: relative;
  width: 100%;
  margin-left: 0;
}

.proyectos .imgContainer {
  margin-top: 0px;
}

.dataContainer {
  border: none;
  margin-left: 0;
  width: 100%;
  height: auto;
  margin-top: 15px;
}

.blogPostRegular .postPreviewFile {
  width: 100%;
  height: max-content;
  aspect-ratio: 1/1;
  object-fit: cover;
}

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

.blogPostDate {
  font-size: 12px;
  margin-top: 6px;
  color: aliceblue;
  text-align: left;
  margin-left: 0;
  font-weight: var(--regular);
  display: none;
}

.blogPostTitle {
  font-size: 18px;
  font-weight: var(--secondary-font-weight);
  display: block;
  text-align: left;
  margin-left: 0;
}

.blogPostDescription {
  font-size: 15px;
  margin: 25px 0;
  text-align: left;
  line-height: 18px;
  font-weight: lighter;
  margin-left: 0;
}

.blogPostVerMas {
  text-align: left;
  margin-left: 0;
  letter-spacing: 0;
  border-bottom: 1px solid transparent;
  font-size: 16px;
  font-family: var(--secondary-font);
  line-height: 20px;
  transition: 0.3s all ease-in;
}

.blogPostVerMas:hover {
  text-decoration: underline;
}

.blogTitle {
  display: none;
  width: 90%;
  margin: 0 auto;
  font-size: 42px;
  line-height: 50px;
  font-weight: 600;
  text-transform: uppercase;
}

.blogSubtitle {
  display: none;
  width: 90%;
  margin: 0 auto;
  font-size: 16px;
  text-transform: uppercase;
  line-height: 20px;
  margin-top: 12px;
  margin-bottom: 25px;
}

.blogParentCategories {
  font-weight: bold;
  font-size: 19px;
  line-height: 23px;
  padding: 24px 0 30px;
  display: flex;
  gap: 50px;
  justify-content: center;
  text-transform: uppercase;
  font-size: 17px;
  background-color: var(--lighter-base);
  margin-top: 68px;
}

.blogCategoryTitle {
  padding: 10px 0px 0px;
  /* margin: 0 10px; */
  line-height: 25px;
  position: relative;
}

.blogCategoryTitle::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background-color: var(--red);
  transition: width 0.2s ease-out;
}

.blogCategoryTitle:hover::after {
  width: 100%;
}

@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-top: 9vh;
    margin-bottom: 55px;
    height: auto;
    position: relative;
    overflow: visible;
  }

  .imgContainer {
    margin-left: 0px;
    margin-top: 0px;
    width: 100%;
    /* top: -3vh; */
    height: auto;
    z-index: 1;
    aspect-ratio: 349 / 335;
  }

  .blogPostRegular {
    width: 100%;
    margin-bottom: 0;
  }

  .blogPostRegular .blogPostTitle {
    margin-top: 10px;
    font-size: 16px;
  }

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

  .blogPostFirstRow .postPreviewFile {
    height: 23vh;
    max-height: 153px;
  }

  .blogPostRegular .postPreviewFile {
    height: fit-content;
    aspect-ratio: 349 / 335;
  }

  .dataContainer {
    margin-left: 0%;
    width: 100%;
    height: auto;
    position: relative;
  }

  .blogPostTitle {
    margin-top: 15px;
    width: 100%;
    font-size: 13px;
    margin-bottom: 5px;
  }

  .blogPostDescription {
    margin-left: 0%;
    width: 100%;
  }

  .blogLine {
    margin-top: 20px;
    margin-left: 0;
    width: 100%;
  }

  .blogPostDate {
    margin-bottom: 10px;
    margin-left: 40%;
    width: 55%;
  }

  #footer {
    margin-top: 30px;
  }

  .centeredContent {
    width: 90%;
    display: flex;
    gap: 50px;
    flex-direction: column;
  }

  .blogTitle {
    font-weight: var(--semibold);
    text-transform: uppercase;
    font-size: 30px;
    margin-top: calc(var(--menu-height-mobile) - var(--header-dummy-mobile));
    width: 90%;
    margin-inline: auto;
    padding-top: 26px;
  }

  .blogPostVerMas {
    font-size: 15px;
    margin-top: 15px;
  }
}