/* Post Head */
.post-title{
  font-size: 8.8vw;
  margin-bottom: 20px;
}
.post-excerpt{
  flex: 1 0 100%;
}

.post-excerpt p{
  font-size: 5.6vw;
  color: #394157;
  letter-spacing: 0.2px;
  line-height: 150%;
  margin-bottom: 20px;
  font-weight: 500;
}

.post-excerpt p a{
  color: #2146EC;
  text-decoration: underline;
  font-weight: 600;
}

.post-info-container{
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 20px;
}

/* Author */
.post-author-container{
  flex: 1 0 100%;

  display: flex;
  flex-direction: row;
  align-items: center;
}

.post-author-container .author-avatar{
  margin-right: 15px;
  display: flex;
  align-items: center;
}

.post-author-container .author-avatar img{
  width: 47px;
  height: 47px;
}

.post-author-container .author-wrapper{
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.author-info{
  font-size: 4.4vw;
  color: #051236;
  font-weight: 500;
  margin-bottom: 2px;
  letter-spacing: 0.01em;
}
.author-info span{
  font-weight: 700;
  text-decoration: underline;
}

.author-info span a{
  color: #051236;
}

.post-author-container .read-time{
  margin-bottom: 0;
  color: #4E5770;
  font-size: 4.4vw;
  font-weight: 500;
  letter-spacing: 0.01em;
  display: flex;
  flex-direction: row;
  align-items: center;
}

.post-author-container .read-time::before{
  content: "";
  width: 4px;
  height: 4px;
  background: #4E5770;
  border-radius: 50px;
  display: block;
  margin-right: 6px;
}

/* Dates */
.post-info-container .post-dates{
  color: #051236;
  font-size: 4.2vw;
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin-bottom: 20px;
  flex: 1 0 100%;
  order: -1;

}

.post-info-container .post-dates span{
  font-weight: 700;
}

.post-info-container .post-dates p{
  margin-bottom: 5px;
}

.post-info-container .post-dates p:last-child{
  margin-bottom: 0;
}

/* Banner */
.post-banner-container{
  padding-bottom: 20px;
  /*border-bottom: 1px solid rgba(0, 0, 0, 0.3);*/
}

.post-banner-container .post-banner-image{
  max-width: 100%;
  width: 100%;
}

@media only screen and (min-width:768px){
  .post-title{
    font-size: 34px;
  }
  .post-excerpt{

  }
  .post-excerpt p{
    font-size: 20px;
  }
  .post-author-container{
    flex: 1 0 70%;
  }
  .author-info{
    font-size: 16px;
    margin-bottom: 5px;
  }
  .post-info-container .post-dates{
    font-size: 16px;
  }
  .post-author-container .read-time{
    font-size: 16px;
  }
  .post-banner-container{
    border-bottom: 1px solid rgba(0, 0, 0, 0.3);
  }
}

@media only screen and (min-width:1024px){
  .post-excerpt p{
    margin-bottom: 40px;
  }
  .post-info-container .post-dates{
    flex: 1 0 30%;
    text-align: right;
    order: 1;
    margin-bottom: 0;
  }
  .post-info-container{
    margin-bottom: 40px;
  }
  .post-banner-container{
    padding-bottom: 40px;
    border-bottom: 0;
  }
}