/* Blog listing */

.hs-blog-listing .topic-tags {
	padding-bottom: var(--Desktop-Padding);
}

/* Blog post */

.blog-post {
  margin: 0 auto;
  /* max-width: 960px; */
}
.blog-post .blog-post__body img {
  max-width: 100%;
  height: auto;
  border-radius: var(--Rounded-Corners);
  margin-bottom: var(--Content-Spacing-Vertical);
}
.blog-post__body,
.blog-post__tags {
  max-width: 100%;
  width: 780px;
  margin: 0 auto;
  padding: 0 20px;
  padding-top: var(--Desktop-Padding);
  padding-bottom: var(--Desktop-Padding);
}

.blog-post__tags {
  padding-top: 0;
}

.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 {
  
}

/* Blog post heading */

.blog-post__heading .content-wrapper {
	display: flex;
  padding: var(--Desktop-Padding) 15px;
  gap: var(--Gutter-Width);
}

.blog-post__heading h1 {
	padding: 0;
  margin: 0;
}

.blog-post__heading .image-column,
.blog-post__heading .text-column {
	width: 50%;
}

.blog-post__heading .text-column {
	display: flex;
	flex-direction: column;
	gap: var(--Content-Spacing-Vertical);
  justify-content: center;
}
.blog-post__heading .blog-post__tags {
  padding: 0;
}

.blog-post__heading .image-column img {
	width: 100%;
	aspect-ratio: 1.6666;
	object-fit: cover;
	border-radius: var(--Rounded-Corners);
}

/* Blog related posts */

.blog-related-posts {
  background-color: #F8FAFC;
  padding-top: var(--Desktop-Padding);
  padding-bottom: var(--Desktop-Padding);
}

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

.blog-related-posts__list {
  display: flex;
  flex-wrap: wrap;
}

.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 (max-width: 767px) {
  .blog-post__heading .content-wrapper {
    flex-direction: column;
    padding: 40px 20px;
  }
  .blog-post__heading .image-column, .blog-post__heading .text-column {
    width: 100%;
  }
}

@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%;
}

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

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


/* Author contat section */
.author-meta, .author-contact {
  padding: 80px 20px;
}
@media (min-width: 768px) {
  .author-contact-section {
    display: flex;
  }
  .author-contact-section > div {
    flex: 1;
    min-width: 50%;
  }
  .author-contact-section > div:last-child {
    order: -1;
  }
  .author-meta, .author-contact {
    max-width: 525px;
    box-sizing: border-box;
  }
  .author-meta {
    width: 100%;;
  }
  .author-meta {
    margin-left: auto;
    padding-right: 40px;
  }
  .author-contact {
    margin-right: auto;
    padding-Left: 40px;
  }
}

.author-meta img {
  max-width: 180px;
  margin-bottom: 2em;
  border-radius: 8px;
}
