/* Blog post */

.blog-post, .blog-related--posts {
  margin: 0 auto;
		width: 85%;
  max-width: 960px;
}
.blog-post a {
		color: #28292b;
		text-decoration: underline;
		text-decoration-color: #ffc000;
		transition: ease 300ms all;
}
.blog-post a:hover {
		color: #ffc000;
		text-decoration: underline;
		text-decoration-color: #ffc000;
		transition: ease 300ms all;
}
.blog-post em {
		font-style: italic;
}

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

.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 (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;
}
/* CUSTOM BLOG STYLING */
/* BLOG HEADER */
.blog-header {
				background-color: #3f3e4c;
		}
		.blog-header-container {
				width: 100%;
				isolation: isolate;
		}
		.blog-header  .banner_container {
				width: 100%;
				display: flex;
				justify-content: space-between;
		}
		.blog-header  .banner_container .hero__right, .blog-header  .banner_container .hero__right .hero__right-content {
				height: auto;
		}
     .blog-header  .banner_container .hero__right {
				background-color: #ffc000; 
				 position: relative;
		}
		.blog-header  .banner_container .hero__right::before {
				content: "";
				background-color: #ffc000;  
				mix-blend-mode: multiply;
				position: absolute;
				height: 150%;
				width: 150%;
				right: 0;
				top: -25%;
				z-index: -1;
		}
		.blog-header  .banner_container h1 {
				font-size: 50px;
				line-height: 115%;
		}
		.blog-header  .banner_container h4 {
				font-size: 20px;
		}
		@media screen and (max-width: 810px) {
				.blog-header  .banner_container .hero__right::before {
						height: 150%;
						width: 100%;
						right: 0;
						top: -50%;
				}
		}
.blog-header a {
		color: #28292b;
		transition: ease 300ms all;
}
.blog-header a:hover {
		transition: ease 300ms all;
}
.blog-header .banner_container .hero__left {
  	z-index: -5;
		width: 50%;
		max-height: 80vh;
		overflow: hidden;
}
.blog-header .banner_container .hero__left img {
		min-width: 100%;
		min-height: 100%;
		object-fit: cover;
		filter: grayscale(100%);
}
.blog-header .banner_container .hero__right {
		width: 50%;
		align-self: center;
		padding: 0 10%;
}
@media screen and (max-width: 1100px) {
		.blog-header .banner_container .hero__left {
				width: 40%;
		}
		.blog-header .banner_container .hero__right {
				width: 60%;
		}
}
@media screen and (max-width: 810px) {
		.blog-header .banner-container .banner_container {
				flex-wrap: wrap;
		}
		.blog-header .banner_container .hero__left {
				width: 100%;
				height: 50%;
				position: relative;
		}
		.blog-header .banner_container .hero__right {
				width: 100%;
				height: auto;
				top: 0;
				position: relative;
				margin-top: -50px;
		}
}
@media screen and (max-width: 1100px) {
		.banner_container .hero__left {
				width: 40%;
		}
		.banner_container .hero__right {
				width: 60%;
		}
}
@media screen and (max-width: 810px) {
		.blog-header .banner_container {
				flex-wrap: wrap;
		}
		.banner_container .hero__left {
				width: 100%;
				height: 50%;
				position: relative;
		}
		.banner_container .hero__left img {
				height: 50vh;
				overflow: hidden; 
		}
		.banner_container .hero__right {
				width: 100%;
				height: auto;
				top: 0;
				position: relative;
				margin-top: -50px;
		}
		.blog-header .banner_container .hero__right .hero__right-content {
				padding: 10%;
		}
}
/* BLOG BODY */
.body-container--blog-post .content-wrapper, .body-container--blog-related .content-wrapper {
		background-color: #EBEBEB;
}
.blog-related--posts {
		padding-bottom: 80px;
}
/* Blog post: two-column layout */
.blog-post__layout {
  display: flex;
  gap: 40px;
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  align-items: flex-start;
}
.blog-post__main {
  flex: 1 1 0;
  min-width: 0;
}
.blog-post__sidebar {
  flex: 0 0 300px;
  position: sticky;
  top: 100px;
}
/* let content fill its column (overrides the old 85%/960px centering) */
.blog-post__main .blog-post,
.blog-post__main .blog-related--posts {
  width: 100%;
  max-width: none;
  margin: 0;
}

/* Recent posts box */
/* Recent posts box — elevated, with thumbnails */
.blog-recent-posts {
  background-color: #3f3e4c;
  padding: 24px;
  border-radius: 6px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.12);
}
.blog-recent-posts h3 {
  margin: 0 0 16px;
  font-size: 1.15rem;
  color: #fff;
  border-left: 4px solid #ffc000;
  padding-left: 10px;
}
.blog-recent-posts__list { list-style: none; margin: 0; padding: 0; }
.blog-recent-posts__item { border-bottom: 1px solid rgba(255,255,255,0.12); }
.blog-recent-posts__item:last-child { border-bottom: none; }
.blog-recent-posts__link {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 0;
  text-decoration: none;
}
.blog-recent-posts__thumb {
  flex: 0 0 64px;
  width: 64px;
  height: 64px;
  object-fit: cover;
  border-radius: 4px;
}
.blog-recent-posts__title {
  color: #fff;
  font-size: 0.9rem;
  line-height: 1.3;
  transition: color 300ms ease;
}
.blog-recent-posts__link:hover .blog-recent-posts__title { color: #ffc000; }

/* Comment form in the sidebar */
.blog-post__sidebar .blog-comments {
  margin: 24px 0 0;
  max-width: none;
}

/* Breadcrumb */
.post-breadcrumb {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px 0 10px;
  font-size: 0.85rem;
  color: #6b6b6b;
}
.post-breadcrumb a {
  color: #28292b;
  text-decoration: none;
  transition: color 300ms ease;
}
.post-breadcrumb a:hover { color: #ffc000; }

/* Mobile: stack the sidebar under the content */
@media screen and (max-width: 810px) {
  .blog-post__layout { flex-direction: column; }
  .blog-post__sidebar {
  flex: 0 0 360px;   /* was 300px */
  position: sticky;
  top: 100px;
}