/* Blog post */

.blog-post {
  margin: 0 auto;
}

.blog-post__meta {
  margin-bottom: 1.4rem;
}
.blog-post__meta img {
  border-radius: 50%;
  width: 20px;
  height: 20px;
}
.blog-post__meta a {
  text-decoration: underline;
}

.blog-post__timestamp {
  display: block;
}

.blog-post__tags svg {
  height: auto;
  margin-right: 0.35rem;
  width: 15px;
}
.blog-post__tags ul li {
  background: #ffffff;
  margin: 0px 2px;
  border-radius: 0px;
  box-shadow: 0px 4px 8px rgb(145 151 161 / 4%), 0px 4px 24px rgb(145 151 161 / 8%);
}
.blog-post__tag-link {
  display: block;
  font-size: 14px;
  line-height: 20px;
  padding: 10px 15px;
  text-transform: capitalize;
}
.blog-post__tags ul {
  display: inline-flex;
  list-style-type: none;
  padding: 0;
}
.blog-post__meta a, .blog-post__tag-link{
  text-decoration:none;
}
.blog-post__meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
/* Blog related posts */
article.blog-related-posts__post {
  background-color: rgba(255,255,255,1.0);
  border: 0px solid #d7d9e3;
  border-radius: 4px;
  padding: 20px;
  box-shadow: 0px 0px 12px 0px rgb(54 48 48 / 12%);
}

.blog-related-posts h2 {
  text-align: center;
}

.blog-related-posts__list {
  display: flex;
  gap:20px;
}

.blog-related-posts__post {
  flex: 0 0 100%;
  padding: 1rem;
}

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

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

.blog-related-posts__image {
  height: auto;
  max-width: 100%;
  display: block;
  max-height: 200px;
  object-fit: cover;
  width: 100%;
  border-radius: 4px;
}

.blog-related-posts__title {
  margin: 0.7rem 0;
  text-transform:uppercase;
}

/* Blog comments */

.blog-comments {
  margin: 0 auto;
  max-width: 680px;
}

.blog-comments .hs-submit {
  text-align: center;
}

.blog-comments .comment-reply-to {
  border: 0 none;
}

.blog-comments .comment-reply-to:hover,
.blog-comments .comment-reply-to:focus {
  background-color: transparent;
  text-decoration: underline;
}
.blog-post-hero {
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;