.centeredContent {
  width: var(--web-container) !important;
  margin: 50px auto 50px auto;
  max-width: unset;
  column-count: 2;
  column-gap: 30px;
}

#titleOfBlog {
  font-family: "RF Dewi Expanded";
  font-style: medium;
  font-size: 48px;
  line-height: 58px;
  color: #000000;
  margin-bottom: 40px;
  margin-top: 60px;
  margin-left: 1.5%;
  display: none;
}

#contentOfBlog {
  text-align: center;
}

.blogPostRegular {
  width: 100%;
  opacity: 0;
  height: auto;
  position: relative;
  box-sizing: border-box;
  float: left;
  border-radius: var(--border-radius);
  overflow: hidden;
  border: 1px solid var(--base);
  display: inline-block;    /* importante para que respete la columna */
  margin: 0 0 30px;         /* separación vertical entre cards */
  break-inside: avoid;      /* que no corte una card entre columnas */
}

.constructionMessageDiv {
  width: 400px;
  margin: auto;
  margin-top: 40px;
  margin-bottom: 20px;
}

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

.blogPostRegular .postPreviewFile {
  width: 100%;
  overflow: hidden;
}

.blogImg {
  background-size: cover;
  background-repeat: no-repeat;
  height: 100%;
}
a.blogPostRegular div {
  padding: 30px;
}
.dataContainer {
  height: 230px;
  width: 80%;
  background-color: white;
  box-shadow: 0 6px 15px 0 rgb(0 0 0 / 7%);
  padding: 25px 20px 25px 20px;
  position: absolute;
  top: 51%;
  left: 4.9%;
}

.imgContainer {
  position: absolute;
  width: 100%;
  height: 60%;
}

.blogPostDate {
  height: 16px;
  width: 100%;
  margin-top: 20px;
  font-size: 12px;
  font-family: "PP Mori";
  line-height: 14px;
  letter-spacing: 0em;
  text-align: left;
  color: black;
}

.blogPostTitle {
  height: auto;
  width: 100%;
  font-family: var(--secondary-font-family);
  font-size: 26px;
  line-height: 30px;
  margin-bottom: 20px;
  text-align: left;
  font-weight: 300;
}

.blogPostSubtitle {
  height: 43%;
  width: 100%;
  margin-top: 24px;
  overflow: hidden;
  font-size: 13px;
  font-family: "RF Dewi Expanded";
  font-style: normal;
  color: #000000;
  text-align: left;
  line-height: 16px;
}

figure.postPreviewFile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 596/278;
  display: block;
}

a.blogPostFirstRow div {
  padding: 33px;
}

.seeMoreGo {
  border: 1px solid var(--base);
  border-radius: var(--border-radius);
  padding: 14px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  box-sizing: border-box;
}

.blogPostDescription {
  color: black;
  font-size: var(--base-font-size);
  line-height: var(--base-line-height);
  margin-bottom: 50px;
}

.readMore {
  font-family: "RF Dewi Expanded";
  font-size: 100%;
  font-style: bold;
  line-height: 17px;
  letter-spacing: -1px;
  text-align: left;
  color: #000000;
  position: absolute;
  bottom: 7%;
}

.viewMore {
  color: black;
  width: fit-content;
  font-weight: 600;
  position: absolute;
  text-decoration: underline;
  text-underline-offset: 2px;
  margin-top: 34px;
}

.featuredBlog {
  display: flex;
  align-items: center;
  background-color: #f5f5f5;
  grid-column-start: 1;
  grid-column-end: 4;
}

.featuredBlog img {
  height: 100%;
  width: 60%;
  object-fit: cover;
}

.textFeaturedBlod {
  width: calc(40% - 100px);
  padding: 50px;
}

.textFeaturedBlod .blogPostTitle {
  font-size: 45px;
  word-break: break-word;
  line-height: 45px;
  margin-bottom: 50px;
}

.textFeaturedBlod .blogPostDescription {
  margin-bottom: 50px;
}

.viewMore:hover {
  color: var(--base);
  text-decoration-color: var(--base);
}

.hover-underline-animation:after {
  content: "";
  position: absolute;
  width: 100%;
  transform: scaleX(0);
  height: 1px;
  bottom: 0;
  left: 0;
  background-color: black;
  transform-origin: bottom right;
  transition: transform 0.25s ease-out;
}

.hover-underline-animation:hover:after {
  transform: scaleX(1);
  transform-origin: bottom left;
}

.titleBlogs {
  text-align: center;
  font-size: var(--group-title-font-size);
  line-height: calc(var(--group-title-font-size) + 4px);
  margin: 0 auto 30px;
  font-family: var(--secondary-font-family);
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  height: calc(var(--group-title-font-size) + 4px);
  position: relative;
  overflow: hidden;
}

.titleBlogs > * {
  display: inline-block;
  opacity: 0;
  will-change: transform, opacity;
  transition: transform 0.9s cubic-bezier(0.2, 0.65, 0.2, 1), opacity 0.7s ease-out;
}

.titleBlogs > *,
.clientName > span,
#wishlistLabel > * {
  transform: translateY(-120%);
}

.titleBlogs.observer.onViewport > * {
  transform: translateY(0);
  opacity: 1;
}
.titleBlogs.observer.onViewport span {
  transition-delay: 0s;
}

@media screen and (max-width: 1200px) {
  .featuredBlog img {
    width: 50%;
  }

  .textFeaturedBlod {
    width: calc(50% - 100px);
    padding: 80px 50px;
  }

  p.titleBlogs {
    font-size: 35px;
    margin: 20px 0px;
  }
 
}
@media screen and (max-width: 822px) {
  #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 {
    margin-bottom: 20px;
  }

  .dataContainer {
    top: 47%;
    left: 6.7%;
    height: 40%;
  }

  .imgContainer {
    height: 55%;
  }

  .blogPostRegular .blogPostDescription {
    margin-bottom: 30px;
  }

  .viewMore {
    font-size: 11px;
    position: relative;
  }

  .centeredContent {
    column-count: unset;
    margin: 30px auto;
  }
  .textFeaturedBlod .blogPostTitle {
    font-size: 29px;
    line-height: 36px;
    margin-bottom: 15px;
  }
  .featuredBlog {
    flex-direction: column;
    padding-bottom: 20px;
    margin-bottom: 20px;
  }
  .featuredBlog img {
    width: 100%;
  }
  .textFeaturedBlod {
    width: calc(100% - 40px);
    padding: 20px 20px;
    min-height: 0p;
  }
}

@media (hover: hover) and (pointer: fine) {
.blogPostRegular:hover .postPreviewFile img{-webkit-transform: scale(1.08);-ms-transform: scale(1.08);transform: scale(1.08);}
}