{# Styles for featured post #}
.blog-index__featured-post{
  margin-bottom: 64px;
  max-width: 820px;
  width: 100%;
  box-shadow: -4px 9px 25px -6px rgba(0, 0, 0, 0.1);
}
.blog-index__featured-post .blog-index__post-content-image{
  width: 100%;
  height: 330px;
  object-fit: cover;
}
.blog-index__featured-post-content{
  padding: 40px;
}
.blog-index__post-tags{
  margin-bottom: 0px;
  display: flex;
  flex-wrap: wrap;
  justify-content: start;
}
a.blog-post__tag-link{
  margin-right: 8px;
  margin-bottom: 8px;
  font-weight: 300;
}
.blog-index__post-title>h3>a{
  font-weight: 500;
}
.blog-index__post-content-summary{
  margin-bottom: 0.5em;
}

{# Styles for featured post #}
.blog-index__wrapper{
  margin: 0 auto;
  margin-bottom: 85px;
  display: grid;     
  justify-content: center;
  grid-auto-rows: minmax(30px, auto);
  grid-template-columns: repeat(2, 1fr);
  gap: 24px 20px;
}
@media (max-width: 992px) {  
  .blog-index__wrapper{
    grid-template-columns: repeat(1, 1fr);
  }
}
.blog-index__post{
  margin-bottom: 0;
  max-width: 820px;
  width: 100%;
  box-shadow: -4px 9px 25px -6px rgba(0, 0, 0, 0.1);
}
.blog-index__wrapper .blog-index__post-content-image{
  width: 100%;
  height: 246px;
  object-fit: cover;
}
.blog-index__post-container{
  padding: 27px 24px 32px;
}




.blog-author-heading,
.blog-tag-heading {
  padding-right: 1rem;
  margin-bottom: 0;
}

.blog-index {
  display: flex;
  flex-wrap: wrap;
}

.blog-index__post {
  flex: 0 0 100%;
  padding: 1.4rem 1rem;
}

@media screen and (min-width: 768px) {
  .blog-index__post--small {
    flex: 0 0 calc(100% / 2);
  }
}

@media screen and (min-width: 1000px) {
  .blog-index__post--small {
    flex: 0 0 calc(100% / 3);
  }
}

@media screen and (min-width: 768px) {
  .blog-index__post--large {
    display: flex;
    flex: 1 0 100%;
  }
}

.blog-index__post-image {
  height: auto;
  max-width: 100%;
}

@media screen and (min-width: 768px) {
  .blog-index__post-image-wrapper--large {
    flex: 1 1 48%;
  }

  .blog-index__post-content--large {
    flex: 1 1 48%;
    padding-left: 2rem;
  }

  .blog-index__post-content--full-width {
    flex: 1 1 100%;
    padding-left: 0;
  }
}

.blog-index__post-title {
  font-size: 1.25rem;
}

.blog-index__post-timestamp {
  display: block;
}

.blog-index__post-author {
  align-items: center;
  display: flex;
}

.blog-index__post-author-image {
  border-radius: 50%;
  height: auto;
  margin-right: 0.35rem;
  width: 30px;
}

.blog-index__post-title,
.blog-index__post-timestamp,
.blog-index__post-author,
.blog-index__post-image--small {
  margin: 0 0 0.7rem;
}

.blog-index__date-time-read{
  display: flex;
  justify-content: space-between;
}
