/* Blog post */

.blog-post {
  margin: 0 auto;
  max-width: 960px;
}

.blog-post__meta {
  margin-bottom: 1.4rem;
}

.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__tag-link {
  font-size: 0.875rem;
}

/* Blog related posts */

.blog-related-posts {
  background-color: #F8FAFC;
  padding: 2.5rem 0;
}

.blog-related-posts .content-wrapper{
  max-width: 82rem;
}

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

.blog-related-posts__list {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
@media(min-width: 48rem){
  .blog-related-posts__list {
    flex-wrap: nowrap;
  }
}

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

@media screen and (min-width: 48rem) {
  .blog-related-posts__post {
    flex: 0 0 calc(33% - .5rem);
  }
}

.blog-related-posts__image {
  height: auto;
  width: 100%;
  max-width: 100%;
  max-height: 13.25rem;
  display: block;
  border-radius: .75rem;
}

.blog-related-posts__title {
  margin: 1rem 0;
  font-size: clamp(1rem, 2.5vw, 1.125rem);
  line-height: 1.5;
}

.blog-related-posts__description{
  margin: 1rem 0;
}

.blog-related-posts__action .button{
  padding: 0;
  position: relative;
  overflow: hidden;
  display: inline-flex;
  gap: .25rem;
  border-radius: 0;
}

.blog-related-posts__action .button .icon{
  width: 1.5rem;
  height: 1.5rem;
  margin-top: -.25rem;
  opacity: 0;
  transition: all 0.4s;
}

.blog-related-posts__action .button:hover .icon,
.blog-related-posts__action .button:focus .icon{
  opacity: 1;
}

.blog-related-posts__action .button::after{
  content: '';
  background-color: #000;
  bottom: 0;
  content: "";
  height: 2px;
  left: calc(0px - 28px);
  position: absolute;
  transition: all .4s;
  width: 100%;
}

.blog-related-posts__action .button:hover::after,
.blog-related-posts__action .button:focus::after{
  left: 0;
  background-color: #1a64de;
}

/* 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;
}