.centeredContent {
  width: var(--web-container);
  margin: 50px auto 50px auto;
  max-width: 1600px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: repeat(1, 1fr);
  column-gap: 50px;
  row-gap: 40px;
}

#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%;
  height: auto;
  position: relative;
  box-sizing: border-box;
  float: left;
  border-radius: 26px;
  overflow: hidden;
  border: 1px solid var(--base);
  grid-row: span 4;
}

.blogPostRegular {
  /* width: 100%; */
  /* position: relative; */
  /* float: left; */
  /* margin-bottom: 50px; */
}

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

.blogPostRegular .postPreviewFile {
  /* width: 100%; */
  /* aspect-ratio: 9/12; */
  /* object-fit: cover; */
  /* background-position: center; */
}

.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;
  color: #000000;
  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%;
    aspect-ratio: 596/278;
}

p.titleBlogs {
    height: fit-content;
    text-align: center;
    color: var(--base);
    font-size: 60px;
    font-family: var(--secondary-font-family);
    margin: 30px 0px 0px;
}

a.blogPostFirstRow div {
    padding: 33px;
}

h4.seeMoreGo {
    transition: all 0.2s;
    border: 1px solid var(--base);
    color: var(--base);
    font-size: 18px;
    border-radius: 60px;
    padding: 14px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

h4.seeMoreGo img {
    width: 48px;
}

h4.seeMoreGo:hover {
    background: var(--base);
    color: var(--white);
    padding: 14px 10px 14px 20px;
}

h4.seeMoreGo:hover img {
    filter: brightness(10);
}

.blogPostDescription {
  color: black;
  font-size: 14px;
  line-height: 20px;
  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;
  /* border-bottom: 1px solid black; */
  width: fit-content;
  /* margin-top: 20px; */
  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%;
  /* aspect-ratio: 1.5/1; */
  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;
}

.hover-underline-animation {
  /* display: inline-block; */
  /* position: relative; */
  /* color: 
black; */
  /* text-underline-offset: 2px; */
}

.viewMore:hover{
  /* border-bottom: 0px; */
  /* text-decoration: none; */
  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;
}

.featuredBlog .blogPostDate,
.featuredBlog .blogPostTitle,
.featuredBlog .blogPostDescription,
.featuredBlog .viewMore {
  /* padding: 0; */
}
@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;
}
.centeredContent {
    gap: 20px;
    width: calc(100% - 40px) !important;
    margin: 20px;
}
}
@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;
  }

  .blogPostRegular, .blogPostFirstRow {
    margin-bottom: 20px;
    width: calc(100% - 40px);
    margin-left: 20px;
    margin-bottom: 50px;
  }

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

  .imgContainer {
    height: 55%;
  }

  .blogPostRegular .blogPostTitle {
    /* margin-top: 5px; */
    /* font-size: 12px; */
  }

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

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

  .blogPostTitle {
    font-size: 25px;
    margin-bottom: 8px;
  }

  .centeredContent {
    display: flex;
    flex-direction: column;
    margin-bottom: 50px;
    width: 100% !important;
    margin-top: 25px;
    margin: 0px;
    gap: 0px;
  }
  .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 screen and (max-width: 768px) {
  .dataContainer {
    top: 38%;
    left: 3.7%;
  }
  .blogPostDescription {
    font-size: 12px;
}
  /* 
    .blogPostFirstRow {
        margin-bottom: 0px;
        height: 600px;
    }

    .blogPostRegular{
        margin-bottom: 0px;
        height: 600px;
    } */

  .imgContainer {
    height: 46%;
  }
}
