.centeredContent.blogCenteredContent {
  width: 100%;
  min-width: 0;
  margin: 0 auto 0;
  padding-inline: 3%;
  background-color: #ededed;
  min-height: 50vh;
}

#titleOfBlog {
  font-weight: 900;
  color: var(--h1);
  letter-spacing: 0;
  font-size: 25px;
  border-bottom: 0;
  margin-top: 75px;
  text-transform: capitalize;
  margin-bottom: 30px;
  text-align: left;
}


.bold {
  font-weight: bold;
}

.hidden {
  position: absolute;
  left: -9999px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.mainContainerBlog {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: row;
  margin: 4rem auto 2rem;
  width: 80%;
}

.leftContainerBlog {
  width: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  align-content: center;
}

.rightContainerBlog {
  width: 50%
}

.fullWidthContainerBlog {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 2rem;
}

.titleBlog {
  font-size: 54px;
  line-height: 75px;
  text-transform: uppercase;
  font-family: "Monument";
}

.lineBlog {
  border-bottom: 4px solid var(--red);
  width: 0;
  animation: aparecer 1s forwards;
}

@keyframes aparecer {
  from {
    width: 0;
  }

  to {
    width: 40%;
  }
}

.paragraphBlog {
  font-size: 14px;
  width: 35%;
  text-align: center;
  margin: 1rem auto;
}

.subLeftBlog {
  display: flex;
  flex-direction: row;
}

.subTitleBlog {
  width: 55%;
  color: grey;
  font-size: 18px;
  display: flex;
  align-items: center;
}

.subContainerBlog {
  margin: 2rem auto
}

.imageContainerBlog {
  width: 31%;
  border-right: 2px solid lightgray;
  margin-right: 1.5rem;
  padding-right: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}


.buttonContainerBlog {
  background: var(--red);
  color: white;
  height: 40px;
  line-height: 40px;
  font-size: 16px;
  padding-inline: 4rem;
  cursor: pointer;
  transition: all 300ms ease-in;
}

.buttonContainerBlog:hover {
  opacity: 0.8
}


.blogPostsContainer {
  width: 68%;
  margin: 90px auto;
}

.container-article-flex {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  margin-bottom: 50px;
}

.blogPostsContainer a {
  display: flex;
  flex-direction: column;
  align-items: baseline;
}

.blogPostRegular,
.blogPostRegular2 {
  height: auto;
  transition: all 500ms ease-in;
  width: 100%;
}

.blogPostRegular:hover {
  filter: scale(1.1);
  box-shadow: 0px 10px 33px -3px rgba(0, 0, 0, 0.1);
}

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

.blogPostSubtitle {
  font-size: 12px;
  font-weight: 200;
  margin-top: 2px;
  color: #333234;
  text-align: left;
}


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

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

.blogPostImgContainer {
  position: relative;
  width: 100%;
}

.dataContainer {
  border: 2px solid;
  margin-left: 250px;
  width: 515px;
  height: 266px;
}

.postPreviewFile {
  background-size: cover;
  background-position: center;
  margin: auto;
  height: 12vw;
  width: 100%;
}

.blogPostDataContainer {
  margin: 0 auto;
  width: 100%;
  padding: 45px 10px;
  box-sizing: border-box;
  background: transparent;
  border: 1px solid #a8a8a8;
  display: flex;
  text-align: center;
  flex-direction: column;
  gap: 12px;
}

.blogPostDate {
  font-size: 12px;
  margin-top: 6px;
  color: #9c9c9c;
  text-align: left;
  margin-left: 140px;
  font-weight: 300;
}

.blogPostTitle {
  font-size: 16px;
  font-weight: 600;
  width: 100%;
  line-height: 18px;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.blogPostDate {
  font-size: 12px;
  color: #9c9c9c;
  text-align: left;
  font-weight: 300;
  margin: 20px 0 10px;
  width: 100%;
  float: left
}

.blogPostSubtitle {
  font-size: 12px;
  margin-top: 6px;
  color: #7e7d7d;
  margin-left: 14px;
  font-weight: 400;
  float: left;
  width: fit-content;
  display: none;
}

.blogPostDescription {
  font-size: 12px;
  margin: 10px 0 15px;
  color: #7e7d7d;
  line-height: 18px;
  font-weight: 400;
  float: left;
  width: 100%;
  height: 40px;
  overflow: hidden;
  display: none;
}

.blogPostSeeMore {
  background: var(--red);
  color: white;
  text-align: center;
  width: 60%;
  font-size: 12px;
  padding: 6px;
  text-transform: uppercase;
  align-self: center;
  border: none;
}


.blogPostSeeMore span {
  cursor: pointer;
  display: inline-block;
  position: relative;
  transition: 0.5s;
}

.blogPostSeeMore span:after {
  content: '\00bb';
  position: absolute;
  opacity: 0;
  top: 0;
  right: -10px;
  transition: 0.5s;
}

.blogPostSeeMore:hover span {
  padding-right: 18px;
}

.blogPostSeeMore:hover span:after {
  opacity: 1;
  right: 0;
}

.blogPostsContainer2 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 50px;
}

.blogPostRegular2:hover {
  box-shadow: 0 1px 5px 1px rgb(0 0 0 / 10%);
}

.blogPostImgContainer2 {
  position: relative;
  width: 100%;
}

.blogPostDataContainer2 {
  margin: 0 auto;
  width: 100%;
  padding: 15px 10px;
  box-sizing: border-box;
  background: #fff;
  border: 1px solid #f0f0f0;
}

.blogPostTitle2 {
  font-size: 14px;
  font-weight: 400;
  text-transform: unset;
  color: var(--base);
  width: 100%;
  line-height: 16px;
}

.blogPostDescription2 {
  font-size: 12px;
  margin: 10px 0 15px;
  color: #7e7d7d;
  line-height: 18px;
  font-weight: lighter;
  float: left;
  width: 100%;
  height: 40px;
  overflow: hidden;
}

.blogPostSeeMore2 {
  color: var(--red);
  text-align: right;
  font-size: 12px;
}

@media screen and (max-width: 1100px) {

  .centeredContent.blogCenteredContent {
    margin: 0;
    width: 100% !important;
    padding-inline: 0;
    padding-block: 40px;
  }

  .mainContainerBlog {
    flex-direction: column;
    width: 100%;
  }

  .leftContainerBlog {
    width: 100%;
  }

  #titleOfBlog {
    font-size: 18px;
    line-height: 55px;
    margin: 0 2.5%;
  }

  .lineBlog {
    width: 60%;
  }


  .paragraphBlog {
    width: 60%;
    font-size: 13px
  }

  .subTitleBlog {
    width: 55%;
    color: grey;
    font-size: 15px;
    display: flex;
    align-items: center;
  }

  .imageContainerBlog {
    width: 30%;
  }

  .rightContainerBlog,
  .rightContainerBlog iframe {
    width: 100%;
    height: 250px
  }


  .buttonContainerBlog {
    height: 40px;
    line-height: 40px;
    font-size: 13px;
    padding-inline: 1rem;
  }



  .blogPostsContainer {
    width: 85%;
    margin: 2.5rem auto;
  }

  .blogPostsContainer2 {
    grid-template-columns: 1fr;
    margin: auto;
    width: 95%;
    margin-bottom: 60px;
    gap: 60px
  }

  .container-article-flex {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }

  .blogPostRegular {
    box-shadow: 0px 10px 33px -3px rgba(0, 0, 0, 0.1);
  }

  .blogPostRegular:hover {
    filter: scale(1.1);
    box-shadow: 0px 10px 33px -3px rgba(0, 0, 0, 0.1);
  }

  .blogPostRegular2 {
    height: 235px
  }

  .postPreviewFile {
    height: 37vh
  }

  .blogPostTitle2 {
    margin-top: 5px;
    font-size: 12px
  }

  .blogPostDescription2 {
    font-size: 12px
  }

  .blogPostDataContainer {
    padding: 35px 5px;
  }

  .blogPostTitle {
    font-size: 14px;
    font-weight: 600;
    width: 100%;
    line-height: 14px;
  }

  .blogPostSeeMore {
    width: 70%;
    font-size: 12px;
    padding: 4px 6px;
  }
}