{#BLOG GENERAL#}
.blog_hero{
  background-size: cover;
  background-repeat: no repeat;
  background-position: center center;   
  min-height: 630px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-start;
  padding: 64px;
  position: relative;
  gap: 16px;
}

@media only screen and (max-width: 767px){
  .blog_hero{
    padding: 20px;
  }
}

.blog_hero__container{
  max-width: 1239px;
  margin: 0 auto;
  z-index: 1;
}

{#BLOG LISTING#}
.blog_hero *{
  z-index: 1;
}

{#BLOG POST#}

.blog_hero__title h1{
  color: #ffffff;
  margin-top: 16px;
}

.blog_hero__post-information{
  display: flex;
  color: #ffffff;
  font-size: 14px;
  line-height: 21px;
  align-items: center;
}

.blog_hero__post-information span{
  margin: 0 10px;
}

.author-info{
  display: flex;
  align-items: center;
  gap: 10px;
}

.time-read{
  display: flex;
  align-items: center;
  gap: 10px; 
}

.post-date{
  display: flex;
  align-items: center;
  gap: 10px;
}

.time-dates{
  display: flex;
}

@media(max-width: 992px){
  .blog_hero__post-information {
    align-items: flex-start;
    flex-direction: column;
    row-gap: 16px;
  }

  .line-none{
    display: none;
  }

  .blog_hero {
    padding: 30px;
  }
}




