.blogMenuContainer {
  width: 100%;
  margin: 0 auto;
  background-color: var(--lighter-base);
}

.blogParentCategories,
.blogChildCategories {
  width: auto;
  display: flex;
  flex-flow: wrap;
  justify-content: center;
}

.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);
}

.blogChildCategories {
  font-size: 16px;
  line-height: 20px;
  margin-bottom: 0px;
}

.blogCategoryTitle.selected {
  border-bottom: 1px solid;
  border-color: var(--red);
}

/* .blogCategoryTitle:hover {
  border-bottom: 1px solid;
  border-color: var(--red);
  -moz-transition: all 0.2s ease-out;
  -webkit-transition: all 0.2s ease-out;
  -o-transition: all 0.2s ease-out;
  transition: all 0.2s ease-out;
} */

.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%;
}

.blogTitle {
  text-align: center;
  font-size: 30px;
  line-height: 34px;
  margin: 0px auto 30px;
  font-weight: bold;
  display: none;
}
.blogSubtitle{
  display:none;
}

.blogCenteredContent {
  width: 100%;
  display: grid;
  gap: 3px;
  grid-template-columns: repeat(4, 1fr);
  margin-bottom: 80px;
}

.dataContainer {
  margin-top: 15px;
  font-size: 15px;
  line-height: 19px;
  position: relative;
  display: block;
  top: -7rem;
  width: auto;
  margin: 0 20px;
  color: white;
}

.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: 100%;
  object-fit: cover;
}

.imgContainer:hover {
  filter: brightness(0.8);
  -moz-transition: all 0.2s ease-out;
  -webkit-transition: all 0.2s ease-out;
  -o-transition: all 0.2s ease-out;
  transition: all 0.2s ease-out;
}

.imgContainer {
  height: 100%;
  -moz-transition: all 0.2s ease-out;
  -webkit-transition: all 0.2s ease-out;
  -o-transition: all 0.2s ease-out;
  transition: all 0.2s ease-out;
}

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

.blogPostTitle {
  font-size: 30px;
  line-height: 38px;
  margin-bottom: 5px;
  font-weight: var(--semibold);
  text-transform: uppercase;
}

.blogPostSubtitle {
  text-transform: uppercase;
  font-size: 15px;
}

.blogPostDescription {
  display: none;
}

.blogPostVerMas {
  display: none;
}

.blogPostRegular:hover .blogPostVerMas {
  display: block;
  font-size: 14px;
  top: 43px;
  right: 40px;
  line-height: 15px;
  font-size: 16px;
  letter-spacing: 0.1em;
  font-family: var(--secondary-font);
  position: absolute;
  -webkit-animation: fade-in-bottom 0.8s cubic-bezier(.23, 1, .32, 1) 0.3s both;
  animation: fade-in-bottom 0.8s cubic-bezier(.23, 1, .32, 1) 0.3s both;
  opacity: 1
}

@media screen and (max-width: 1100px) {
  .blogCenteredContent {
    grid-template-columns: repeat(2, 1fr);
    width: 100% !important;
    gap: 0;
    margin-bottom: 0;
  }

  .blogMenuContainer {
    width: 100%;
    overflow: scroll;
  }

  .blogTitle {
    margin-bottom: 15px;
  }

  .blogParentCategories {
    margin-bottom: 0px;
    /* flex-direction: row; */
    overflow-x: scroll;
    margin-top: calc(var(--menu-height-mobile) - var(--header-dummy-mobile));
    flex-flow: row;
    padding: 0px 0 9px;
    width: max-content;
    display: flex;
    gap: 0px;
    font-weight: var(--semibold);
  }

  .blogCategoryTitle {
    padding: 26px 20px 13px;
    /* display: inline-block; */
    /* scroll-snap-align: center; */
  }

  .constructionMessageDiv {
    width: 100%;
  }

  .centeredContent {
    width: 90%;
    display: flex;
    gap: 10px;
  }

  .dataContainer {
    width: 90%;
    margin: 0 auto;
  }

  .blogMenuContainer {
    width: 100%;
    margin: 0 auto;
    background-color: var(--lighter-base);
  }

  .blogParentCategories,
  .blogChildCategories {
    width: auto;
    display: flex;
    flex-flow: wrap;
    justify-content: center;
  }

  .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);
  }

  .blogChildCategories {
    font-size: 16px;
    line-height: 20px;
    margin-bottom: 0px;
  }

  .blogCategoryTitle.selected {
    border-bottom: 1px solid;
    border-color: var(--red);
  }

  /* .blogCategoryTitle:hover {
    border-bottom: 1px solid;
    border-color: var(--red);
    -moz-transition: all 0.2s ease-out;
    -webkit-transition: all 0.2s ease-out;
    -o-transition: all 0.2s ease-out;
    transition: all 0.2s ease-out;
  } */

  .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%;
  }

  .blogTitle {
    text-align: center;
    font-size: 30px;
    line-height: 34px;
    margin: 0px auto 30px;
    font-weight: bold;
    display: block;
  }

  .blogCenteredContent {
    width: 100%;
    display: grid;
    gap: 3px;
    grid-template-columns: repeat(4, 1fr);
    margin-bottom: 80px;
  }

  .dataContainer {
    margin-top: 15px;
    font-size: 15px;
    line-height: 19px;
    position: relative;
    display: block;
    top: -8rem;
    width: 100%;
    margin: 0 20px;
    color: white;
    height: 0;
  }

  .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: 37rem;
    object-fit: cover;
  }

  .imgContainer:hover {
    filter: brightness(0.8);
    -moz-transition: all 0.2s ease-out;
    -webkit-transition: all 0.2s ease-out;
    -o-transition: all 0.2s ease-out;
    transition: all 0.2s ease-out;
  }

  .imgContainer {
    -moz-transition: all 0.2s ease-out;
    -webkit-transition: all 0.2s ease-out;
    -o-transition: all 0.2s ease-out;
    transition: all 0.2s ease-out;
  }

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

  .blogPostTitle {
    font-size: 30px;
    line-height: 38px;
    margin-bottom: 5px;
    font-weight: var(--semibold);
    text-transform: uppercase;
  }

  .blogPostSubtitle {
    /* margin-bottom: 5px; */
    text-transform: uppercase;
  }

  .blogPostDescription {
    display: none;
  }

  [data-blog-id="2"] .blogPostRegular .blogPostVerMas {
    display: block;
    font-size: 14px;
    top: 43px;
    right: 0px;
    line-height: 15px;
    font-size: 16px;
    letter-spacing: 0.1em;
    font-family: var(--secondary-font);
    position: absolute;
    -webkit-animation: fade-in-bottom 0.8s cubic-bezier(.23, 1, .32, 1) 0.3s both;
    animation: fade-in-bottom 0.8s cubic-bezier(.23, 1, .32, 1) 0.3s both;
    opacity: 1
  }

  [data-blog-id="2"] .lineEffectCenter::before {
    content: "";
    width: 100%;
    left: 0%;
    background: var(--white);
    height: 1px;
    position: absolute;
    -webkit-transition: left 0.4s cubic-bezier(0.4, 0, 1, 1),
      width 045s cubic-bezier(0.4, 0, 1, 1);
    -o-transition: left 0.4s cubic-bezier(0.4, 0, 1, 1),
      width 0.4s cubic-bezier(0.4, 0, 1, 1);
    transition: left 0.4s cubic-bezier(0.4, 0, 1, 1),
      width 0.4s cubic-bezier(0.4, 0, 1, 1);
  }

  @media screen and (max-width: 1100px) {
    .blogCenteredContent {
      grid-template-columns: repeat(2, 1fr);
      width: 100% !important;
      gap: 0;
      margin-bottom: 0;
    }

    .blogMenuContainer {
      width: 100%;
      overflow: scroll;
    }

    .blogTitle {
      margin-bottom: 15px;
      display: none;
    }

    .blogParentCategories {
      margin-bottom: 0px;
      /* flex-direction: row; */
      overflow-x: scroll;
      margin-top: calc(var(--menu-height-mobile) - var(--header-dummy-mobile));
      flex-flow: row;
      padding: 0px 0 9px;
      width: max-content;
      display: flex;
      gap: 0px;
      font-weight: var(--semibold);
    }

    .blogCategoryTitle {
      padding: 26px 20px 13px;
      /* display: inline-block; */
      /* scroll-snap-align: center; */
    }

    .constructionMessageDiv {
      width: 100%;
    }

    .centeredContent {
      width: 90%;
      display: flex;
      gap: 10px;
    }

    .dataContainer {
      width: 90%;
      margin: 0 auto;
    }

    .proyectos .blogPostRegular .blogPostVerMas {
      display: block;
      font-size: 14px;
      top: 43px;
      right: 40px;
      line-height: 15px;
      font-size: 16px;
      letter-spacing: 0.1em;
      font-family: var(--secondary-font);
      position: absolute;
      -webkit-animation: fade-in-bottom 0.8s cubic-bezier(.23, 1, .32, 1) 0.3s both;
      animation: fade-in-bottom 0.8s cubic-bezier(.23, 1, .32, 1) 0.3s both;
      opacity: 1;
    }

    .lineEffectCenter::before {
      content: "";
      width: 100%;
      left: 0%;
      background: var(--white);
      height: 1px;
      position: absolute;
      -webkit-transition: left 0.4s cubic-bezier(0.4, 0, 1, 1),
        width 045s cubic-bezier(0.4, 0, 1, 1);
      -o-transition: left 0.4s cubic-bezier(0.4, 0, 1, 1),
        width 0.4s cubic-bezier(0.4, 0, 1, 1);
      transition: left 0.4s cubic-bezier(0.4, 0, 1, 1),
        width 0.4s cubic-bezier(0.4, 0, 1, 1);
    }
  }

  @media screen and (max-width: 1200px) {
    .blogCenteredContent {
      grid-template-columns: repeat(1, 1fr);
      flex-direction: column;
      gap: 0;
    }
  }
}

@media screen and (max-width: 1200px) {
  .blogCenteredContent {
    grid-template-columns: repeat(1, 1fr);
    flex-direction: column;
    gap: 0;
  }
}