.hs-blog-listing .dnd-section .dnd-column {
  padding: 0;
}

/* Blog header */

.blog-header {
  background-color: #f8fafc;
  text-align: center;
}

.blog-header__inner {
  margin: 0 auto;
  max-width: 600px;
}

/* Blog header - author listing */

.blog-header__author-avatar {
  border-radius: 50%;
  -webkit-box-shadow: 0 0 12px 0 rgba(0, 0, 0, 0.15);
  box-shadow: 0 0 12px 0 rgba(0, 0, 0, 0.15);
  display: block;
  height: auto;
  margin: 0 auto 1.4rem;
  width: 200px;
}

.blog-header__author-social-links a {
  background-color: #000;
  border-radius: 50%;
  display: inline-block;
  height: 40px;
  margin: 0 5px;
  position: relative;
  width: 40px;
}

.blog-header__author-social-links a:hover,
.blog-header__author-social-links a:focus {
  background-color: #494a52;
}

.blog-header__author-social-links svg {
  fill: #fff;
  height: 15px;
  left: 50%;
  position: absolute;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  width: auto;
}

/* Blog header - tag listing */

.blog-index__tag-header {
  -webkit-box-flex: 1;
  -ms-flex: 1 0 100%;
  flex: 1 0 100%;
  padding: 1rem;
}

.blog-index__tag-subtitle {
  font-size: 1.16rem;
  line-height: 1.1;
}

.blog-index__tag-heading {
  border-bottom: 3px solid #d1d6dc;
  padding-bottom: 1rem;
}

/* Blog listing */

.blog-index {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.blog-index::after {
  content: "";
  -webkit-box-flex: 1;
  -ms-flex: auto;
  flex: auto;
}

.blog-index__post {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 100%;
  flex: 0 0 100%;
  padding: 1rem;
}

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

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

@media screen and (min-width: 768px) {
  .blog-index__post--large {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-flex: 1;
    -ms-flex: 1 0 100%;
    flex: 1 0 100%;
    justify-items: space-between;
  }
}

.blog-index__post.blog-index__post--small {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.blog-index__post-inner-card {
  background: #fff;
  border-radius: 5px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-flow: column nowrap;
  flex-flow: column nowrap;
  width: 100%;
}

.blog-index__post-image {
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  border-radius: 5px 5px 0 0;
  display: block;
  padding-bottom: 63%;
}

@media (min-width: 1000px) {
  .full-width .blog-index__post-image {
    min-height: 300px;
    padding-bottom: unset;
  }
}

.blog-index__post-inner-card .blog-index__post-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  height: 100%;
  padding: 24px 30px 30px 30px;
}


.blog-post__tags {
  font-size: 12px;
  font-weight: 200;
  letter-spacing: 0.01rem;
  text-transform: uppercase;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.blog-post__tag-link:hover {
  text-decoration: none;
}

.blog-index__post-content h2 {
  margin: 0.5rem 0;
}

.blog-index__post-content--small h2 {
  font-size: 18px;
  line-height: 26px;
}

.blog-index__post-content--small h2 a:hover {
  text-decoration: none;
  -webkit-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
}

.blog-post__meta-section {
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-size: 14px;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  margin-top: auto;
  padding-top: 30px;
}
.blog-post__meta-section.no-min {
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
}

.blog-post__read-more a {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.blog-post__read-more a:hover {
  text-decoration: none;
}

.read-more__arrow {
  padding-left: 10px;
  position: relative;
  top: 3px;
}

.blog-post__read-more svg {
  height: auto;
  width: 15px;
}

.blog-post__read-more a svg {
  -webkit-transition: all 0.15s linear;
  -o-transition: all 0.15s linear;
  transition: all 0.15s linear;
}

/* Blog listing - sidebar */

@media screen and (min-width: 1000px) {
  .sidebar.full-width .blog-index .blog-index__post,
  .sidebar .full-width .blog-index .blog-index__post {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
  }
  .sidebar.two-col .blog-index .blog-index__post,
  .sidebar .two-col .blog-index .blog-index__post {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 calc(100% / 2);
    flex: 0 0 calc(100% / 2);
  }
  .sidebar.three-col .blog-index .blog-index__post,
  .sidebar .three-col .blog-index .blog-index__post {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 calc(100% / 3);
    flex: 0 0 calc(100% / 3);
  }
  .sidebar.four-col .blog-index .blog-index__post,
  .sidebar .four-col .blog-index .blog-index__post {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 calc(100% / 4);
    flex: 0 0 calc(100% / 4);
  }
}

@media screen and (max-width: 999px) {
  .sidebar.two-col .blog-index .blog-index__post,
  .sidebar .two-col .blog-index .blog-index__post {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
  }
}

@media screen and (max-width: 767px) {
  .sidebar .blog-index {
    padding: 1rem 0 3.3rem;
  }
}

@media screen and (max-width: 767px) {
  .blog-sidebar {
    padding: 2rem 1rem 0;
  }
}

.blog-sidebar h3 {
  font-size: 21px;
  font-weight: 600;
  line-height: 37px;
  margin-bottom: 20px;
  margin-top: 8px;
}

.blog-sidebar ul {
  background: #fff;
  border-radius: 5px;
  list-style: none;
  padding: 30px;
}

.blog-sidebar ul li {
  border-top: 1px solid #dfddd9;
  font-weight: 600;
  padding: 10px 0;
}

.blog-sidebar ul li:first-child {
  border-top-color: transparent;
  padding-top: 0;
}

.blog-sidebar ul li:last-child {
  padding-bottom: 0;
}

.blog-sidebar a {
  text-decoration: none;
}

.blog-sidebar a:hover {
  text-decoration: none;
}

.blog-sidebar .filter-link-count {
  display: none;
}

.blog-sidebar .filter-expand-link {
  position: relative;
  top: -15px;
  display: block;
  margin-bottom: 25px;
  text-transform: capitalize;
  text-align: center;
}

.blog-sidebar-post-listing ul li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  counter-increment: list-number;
}

.blog-sidebar-post-listing li:before {
  -ms-flex-item-align: center;
  -ms-grid-row-align: center;
  align-self: center;
  content: counter(list-number);
  font-size: 36px;
  font-weight: 600;
  padding-right: 22px;
}

.blog-sidebar-post-listing li a {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

/* Blog mobile sidebar */

@media (max-width: 767px) {
  .hs-blog-listing .content-wrapper > .row-fluid {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }

  .hs-blog-listing .span3 {
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1;
  }

  .hs-blog-listing .span9 {
    -webkit-box-ordinal-group: 3;
    -ms-flex-order: 2;
    order: 2;
  }

  .hs-blog-listing .blog-pagination {
    -webkit-box-ordinal-group: 4;
    -ms-flex-order: 3;
    order: 3;
  }

  .blog-sidebar.mobile .blog-sidebar-topic-filter ul,
  .blog-sidebar.mobile .blog-sidebar-post-listing ul {
    display: none;
    opacity: 0;
    -webkit-transition: all 5s;
    -o-transition: all 5s;
    transition: all 5s;
    visibility: hidden;
  }

  .blog-sidebar.mobile .blog-sidebar-topic-filter h3,
  .blog-sidebar.mobile .blog-sidebar-post-listing h3 {
    cursor: pointer;
  }
  .blog-sidebar.mobile .blog-sidebar-topic-filter h3:after,
  .blog-sidebar.mobile .blog-sidebar-post-listing h3:after {
    content: "+";
    padding-left: 6px;
  }

  .blog-sidebar.mobile .blog-sidebar-topic-filter.clicked h3:after,
  .blog-sidebar.mobile .blog-sidebar-post-listing.clicked h3:after {
    content: "-";
    padding-left: 7px;
  }

  .blog-sidebar.mobile .clicked ul {
    display: block;
    opacity: 1;
    -webkit-transition: all 1s;
    -o-transition: all 1s;
    transition: all 1s;
    visibility: visible;
  }
}

/* Blog pagination */

.blog-pagination {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px;
    list-style: none;
    padding: 0;
    margin: calc(80px* var(--scale)) auto 10px;
    white-space: nowrap;
    color: #000;
    font-size: 18px;
}


.blog-pagination.linked {
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
.blog-pagination__link {
    text-decoration: none;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 56px;
    height: 56px;
    border-radius: 100%;
    border: 1px solid transparent;
  text-decoration: none;
}
.blog-pagination__link:hover {
  border-color: #121212;
}
.blog-pagination__link--active {
  border: 1px solid #121212;
}

.blog-pagination__link:hover,
.blog-pagination__link:focus {
  text-decoration: none;
}

.blog-pagination__prev-link,
.blog-pagination__next-link {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  border: 1px solid #bcbac7;
}
.blog-pagination__prev-link:hover,
.blog-pagination__next-link:hover {
  border-color: #121212;
}
.blog-pagination__prev-link {
  margin-right: 0.25rem;
  text-align: right;
}

.blog-pagination__next-link {
  margin-left: 0.25rem;
  text-align: left;
}

.blog-pagination__link.blog-pagination__prev-link--disabled,
.blog-pagination__link.blog-pagination__next-link--disabled {
  color: #b0c1d4;
  cursor: default;
  pointer-events: none;
  display:none;
}



/* Blog post */

.post-featured-image {
  background-position: center center;
  background-size: cover;
  border-radius: 5px;
  margin-bottom: -110px;
  margin-top: 40px;
  min-height: 300px;
}

.blog-post {
  background: #fff;
  border-radius: 5px;
  margin: 0 auto;
  max-width: 960px;
  padding: 84px 100px 80px 100px;
  position: relative;
  width: 90%;
}

.blog-post.no-image {
  margin-top: 50px;
}

.blog-post__title {
  font-size: 32px;
  font-weight: 600;
  line-height: 1.25;
}

.blog-post__meta {
  margin: 1rem 0;
}

.blog-post__meta a {
  text-decoration: none;
}

.blog-post__timestamp {
  display: inline-block;
}

.blog-post__tags svg {
  height: auto;
  margin-right: 10px;
  width: 15px;
}

.blog-post__links-container {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding: 26px 0;
}

@media (max-width: 767px) {
  .blog-post__links-container {
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: start;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  .hs-blog-social-share {
    height: 0 !important;
  }
  .hs-blog-social-share-list {
    padding-top: 20px;
  }
}

.hs-blog-social-share .hs-blog-social-share-item-linkedin span {
  vertical-align: top !important;
}

.blog-post__back-to-blog,
.blog-post__back-to-blog:hover {
  text-decoration: none;
}

.blog-post__back-to-blog svg {
  margin-right: 10px;
  position: relative;
  top: 6px;
  -webkit-transition: all 0.15s linear;
  -o-transition: all 0.15s linear;
  transition: all 0.15s linear;
  width: 20px;
}

@media (max-width: 767px) {
  .blog-post img {
    float: none !important;
    width: 100% !important;
  }

  .blog-post {
    width: 90%;
    padding: 30px;
  }

  .blog-post h1 {
    font-size: 1.6rem;
  }
}

/* Blog related posts */

.blog-related-posts {
  margin-top: 3rem;
  padding: 2rem 0;
}

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

.blog-related-posts__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.blog-related-posts .blog-index__post-content h2 {
  text-align: left;
}

.blog-related-posts .blog-post__meta-section {
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
}

.blog-related-posts__image {
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  height: auto;
  max-width: 100%;
  padding-bottom: 63%;
}

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

.blog-related-posts__title a {
  color: #494a52;
}

/* Blog comments */

.blog-comments {
  margin: 0 auto;
  max-width: 100%;
}

.blog-comments form {
  max-width: 100%;
  padding-top: 2em;
}

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

.comment.depth-0:first-child {
  margin-top: 2em;
}

.comment.depth-1 {
  padding-left: 2em;
  padding-top: 1em;
  margin-top: 1em;
}

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

/* Subscription section */

.subscription-form {
  display: block;
  margin: 0 auto;
  padding: 60px 0;
  text-align: center;
}
.subscription-form label {
  text-align: center;
}


.body-container--blog-index {
    background: linear-gradient(180deg, #F2F1F8 58.63%, rgba(242, 241, 248, 0) 100%), #FFF;
    position: relative;
    padding-top: 120px;
}
.hs-blog-listing {
    overflow: hidden;
}
.categories-nav {
    position: relative;
    z-index: 111;
    padding-right: 40px;
}
.blog_top_section {
    padding-top: calc(60px* var(--scale));
    padding-bottom: calc(80px* var(--scale));
}
.sidebar .custom_blog_title {
    font-size: calc(52px* var(--scale2));
    line-height: 1.1;
    letter-spacing: 0em;
    font-weight: 500;
    margin-bottom: calc(30px* var(--scale));
    margin-top: 0;
    font-family: "Reckless", sans-serif;
}
.custom_blog_search_group {
    position: relative;
    margin-bottom: calc(30px* var(--scale));
/*     z-index: 9999; */

}
.custom_blog_search_group ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 0 calc(20px* var(--scale));
    padding-top: 12px;
    padding-bottom: 12px;
}
.custom_blog_search_group ul li a {
    display: inline-block;
    padding: calc(10px* var(--scale)) 0;
    border: 2px solid transparent;
    border-radius: calc(38px* var(--scale));
    color: #8f88b1;
    font-weight: 500;
    font-size: 17px;
    white-space: nowrap;
    text-decoration: none;
}

.custom_blog_search_group ul li a:hover {
    color: #2b2065;
}
.custom_blog_search_group ul li a.active {
    background-color: #fff;
    padding: calc(10px* var(--scale)) calc(20px* var(--scale));
    border-color: #5d548b;
    color: #2b2065;
    box-shadow: 0px 3px 5px rgba(43, 32, 101, .1);
}
.custom_blog_search_group .search-button {
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    padding: 0;
    background: none;
    width: 32px;
    height: 32px;
    margin: auto;
    position: absolute;
    top: 16px;
    right: 0;
    z-index: 120;
    overflow: hidden;
    font-size: 24px;
    color: #2b2065;
}
.custom_blog_search_group .search-button span {
    font-size: 0;
    text-indent: -9999999px;
}
.custom_blog_search_group .more-btn .icon.icon-chevron-down {
    font-size: 8px;
}
.custom_blog_search_group ul li.more-btn {
    position: relative;
}
.custom_blog_search_group .hidden-container {
    padding: 20px;
    border-radius: 12px;
    background-color: #fff;
    box-shadow: 0px 10px 15px 2px rgba(43, 32, 101, .1);
    width: 220px;
    font-size: 15px;
    position: absolute;
    top: 40px;
    left: -20px;
    z-index: 9999;
    color: #2b2065;
}
.custom_blog_search_group .hidden-container a {
    display: block;
    padding: 8px;
    color: #8f88b1;
    line-height: 1;
    border: 0;
    border-radius: 0;
    font-size: inherit;
    white-space: normal;
    font-weight: 400;
}
.custom_blog_search_group .hidden-container a:hover {
    text-decoration: underline;
}
.hs_blog_recentPost_grp {
    display: grid;
    grid-auto-flow: row dense;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    gap: 40px 40px;
    grid-template-areas:
        "big small-top"
        "big small-bottom";
}
.featured-post {
    position: relative;
    display: flex;
    gap: calc(40px* var(--scale));
}
.featured-post:nth-child(1) {
    grid-area: big;
    padding: 0;
    color: #fff;
}
.featured-post:nth-child(1) .featured_bottom {    
    padding: calc(40px* var(--scale));
    border-radius: 0 0 20px 20px;
         position: relative;
    z-index: 11;  
}
.featured-post:nth-child(1) .featured-post__image {
    position: absolute;
    margin: auto;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    min-width: 100%;
    height: 100%;
}
.featured-post:nth-child(1) .featured-post__image:before {
    content: "";
    display: block;
    position: absolute;
    margin: auto;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 2;
}
.featured-post__image > img {
    width: 100%;
    height: 100%;
    max-width: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    -o-object-position: center;
    object-position: center;
    transition: all .6s ease-in-out;
}
.featured-post__image:hover img {
    transform: scale(1.03);
}
.featured-post__texts {
    position: relative;
}
.featured-post__image {
    display: block;
    width: calc(235px* var(--scale));
    min-width: calc(235px* var(--scale));
    height: 100%;
    min-height: calc(220px* var(--scale));
    overflow: hidden;
    border-radius: 16px;
}
.featured-post__image .hs_feature_imageLink {
    width: 100%;
    height: 100%;
    display: block;
    position: absolute;
    left: 0;
    top: 0;
    z-index: 100;
}
.featured-post:nth-child(1) .featured-post__texts {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.featured-post__categories {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}
.post-meta__categories a {
    font-size: 14px;
    padding: 6px 14px;
    background-color: #e3e2ed;
    border: 1px solid #bcbac7;
    font-weight: 600;
    display: inline-flex;
    gap: 6px;
    justify-content: center;
    align-items: center;
    border-radius: 90px;
    text-decoration: none;
    color: #121212;
}
.post-meta__categories a.blog-post__tag-link {
    background-color: #faedcc;
    border-color: #f3d486;
}
.featured-post__title {
    display: block;
    font-family: "Reckless", sans-serif;
    font-weight: 500;
    margin-bottom: 16px;
    color: #2b2065;
      position: relative;
    z-index: 11;
}
.featured-post:nth-child(1) .featured-post__title {
    margin-bottom: 0;
    color: #fff;
    pointer-events: none;
    font-size: calc(30px* var(--scale3));
    line-height: 1.1;
    letter-spacing: 0em;
}
.featured-post:nth-child(2) {
    grid-area: small-top;
}

.featured-post:nth-child(3) {
    grid-area: small-bottom;
}

.featured-post__button {
    display: none;
}
.other_post .post-meta__categories a.blog-post__tag-link {
    background-color: #e3e2ed;
    border: 1px solid #bcbac7;
}
.other_post .post-meta__categories a.blog-post__tag-link:hover {
    background-color: #bcbac7;
    color: #121212;
}
.featured-post:nth-child(1) .featured-post__excerpt {
    display: none;
}
.recent-post-item.first_post .featured-post__button {
    display: inline-flex !important;
    text-decoration: none;
    min-height: 53px;
    align-items: center;
    justify-content: center;
    gap: 16px 12px;
    background: #2b2065;
    color: #fff;
    border: 1px solid transparent;
    font-size: 15px;
    font-weight: 600;
    line-height: 1;
    padding: 0 28px;
    border-radius: 12px;
    transition-property: color, background, border;
    transition-timing-function: ease;
    transition-duration: 250ms;
    outline: 0;
    white-space: nowrap;
    background: transparent;
    border-color: #fff;
    color: #fff;
      position: relative;
    z-index: 11;
}
.recent-post-item.first_post .featured-post__button:hover {
    background-color: #f2f2f2;
    color: #2b2065;
    border-color: #f2f2f2;
}
.recent-post-item p.featured-post__excerpt {
    font-weight: 500;
/*     word-break: break-all !important; */
    color: #121212;
}
.recent-post-item.other_post .featured-post__title {
    font-size: calc(24px* var(--scale3));
    line-height: 1.1;
    letter-spacing: 0em;
}


.single-post__hero--top {
    padding-top: calc(230px* var(--scale));
    padding-bottom: calc(50px* var(--scale));
    background: linear-gradient(180deg, #f2f1f8 29.88%, rgba(242, 241, 248, 0) 100%);
}
.single-post__hero .content-wrapper {
    max-width: calc(1096px* var(--scale));
}
.single-post__breadcrumbs {
    margin-bottom: 40px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 17px;
    color: #8f88b1;
    font-weight: 500;
}
.single-post__breadcrumbs p {
   margin:0;
}
.single-post__breadcrumbs .icon {
    font-size: 10px;
}
.single-post__breadcrumbs a {
    color: #2b2065;
}
.single-post__wrapper .single-post__title {
    color: #2b2065;
    font-weight: 500;
    max-width: calc(728px* var(--scale));
    margin-bottom: 32px;
    font-size: calc(52px* var(--scale2)) !important;
    line-height: 1.1;
    letter-spacing: 0em;
}
.post-share__links {
    display: flex;
    gap: calc(16px* var(--scale));
    align-items: center;
}
.post-share__links a {
    text-decoration: none;
    cursor: pointer;
}
.post-share__links a:hover, 
.post-share__links a:focus {
    text-decoration-color: currentColor;
}
.post-share__links a path, 
.post-share__links a circle {
    transition: all .4s ease;
}
.post-share__links a:hover path, 
.post-share__links a:focus path {
    fill: #2b2065;
    z-index: 1;
}
.single-post__hero--bottom .single-post__image {
    border-radius: 16px;
    overflow: hidden;
    position: relative;
    margin-bottom: calc(50px* var(--scale));
}
.single-post__hero--bottom .single-post__image:before {
    display: block;
    content: "";
    width: 100%;
    padding-top: 56.25%;
}
.single-post__hero--bottom .single-post__image > img {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    min-width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    -o-object-position: center;
    object-position: center;
}
.single-post__hero--bottom .single-post__infos {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
    font-size: 17px;
    color: #95949e;
    font-weight: 500;
    max-width: 728px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 40px;
}
.single-post__hero--bottom .author {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 17px;
    color: #95949e;
    font-weight: 500;
}
.single-post__hero--bottom .author img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    -o-object-fit: cover;
    object-fit: cover;
    -o-object-position: center;
    object-position: center;
}
.single-post__hero--bottom .author p {
  margin:0;
}
.single-post__infos > :not(:last-child)::after {
    content: "•";
    display: inline-block;
}
.single-post__hero .content-wrapper {
    max-width: calc(1096px* var(--scale));
}
.single-post__hero--bottom .reading-time {
    margin: 0;
}
.single-post__hero--bottom .author p span {
    color: #2b2065;
}
.single-post__body {
    max-width: calc(1098px* var(--scale));
    margin-left: auto;
    margin-right: auto;
    padding-bottom: 40px;
    border-bottom: 1px solid #c1bcd7;
}
.single-post__body .content-wrapper {
    max-width: calc(1058px* var(--scale));
}
.blog-post__body {
    display: block;
    font-size: 18px;
    line-height: 1.5;
    font-weight: 500;
}
.posts-loop {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: calc(72px* var(--scale)) calc(40px* var(--scale));
}
.blog-index__post {
    height: 513px;
    margin-bottom: 40px;
    position: relative;
    overflow: hidden;
    border-radius: 16px;
    padding: calc(32px* var(--scale));
    color: #fff;
}
.blog-index__post .featured-post__image {
    border-radius: 16px;
    display: block;
    height: 100%;
    min-height: calc(220px* var(--scale));
    min-width: calc(235px* var(--scale));
    overflow: hidden;
    width: calc(235px* var(--scale));
}
.blog-index__post .carousel-item__image {
    position: absolute;
    margin: auto;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    min-width: 100%;
    height: 100%;
}
.blog-index__post .carousel-item__image .hs_feature_imageLink {
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    z-index: 11;
}
.blog-index__post .carousel-item__image img {
    height: 100%;
    max-width: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    -o-object-position: center;
    object-position: center;
    transition: all .6s ease-in-out;
    width: 100%;
}
.blog-index__post .carousel-item__image:hover img {
    transform: scale(1.03);
}
.blog-index__post .carousel-item__image:before {
    content: "";
    display: block;
    position: absolute;
  z-index: 11;
    margin: auto;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 1.39%, rgba(27, 27, 27, 0.6) 100%);
}
.blog-index__post .carousel-item__texts {
    position: relative;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.single-post__related {
    padding-top: calc(120px* var(--scale));
}
.single-post__related .content-wrapper {
    max-width: calc(1096px* var(--scale));
}
.single-post__related .single-post__related--title {
    margin-bottom: 48px;
    font-family: "Inter", sans-serif;
    font-weight: 500;
    font-size: calc(40px* var(--scale2)) !important;
    line-height: 1.1;
    letter-spacing: -0.03em;
}
.single-post__related .carousel-item__title {
    color: #fff;
    margin-bottom: 0;
    font-size: calc(20px* var(--scale3)) !important;
    line-height: 1.3;
    letter-spacing: 0em;
      position: relative;
    z-index: 12;
}
.blog-related-posts .blog-index__post {
    padding: 0;
}
.single-post__related .featured_bottom {
  background-image: linear-gradient(180deg, rgba(0, 0, 0, 0.25), rgba(0, 0, 0, 0.8));
    border-radius: 0 0 16px 16px;
    padding: calc(32px* var(--scale)); 
}
.single-post__related .carousel-item__title a {
    color: inherit;
    text-decoration: none ! IMPORTANT;
}
.single-post__related .related-post__button {
    text-decoration: none !important;
    min-height: 53px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 16px 12px;
    background: transparent;
    color: #fff;
    border: 1px solid #fff;
    font-size: 15px;
    font-weight: 600;
    line-height: 1;
    padding: 0 28px;
    border-radius: 12px;
    transition-property: color, background, border;
    transition-timing-function: ease;
    transition-duration: 250ms;
    outline: 0;
    white-space: nowrap;
    position: relative;
    z-index: 12;
}
.single-post__related .related-post__button:after {
    content: "";
    display: block;
    width: 14px;
    height: 14px;
    position: relative;
    cursor: pointer;
    overflow: hidden;
    -webkit-mask-image: url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTUiIGhlaWdodD0iMTUiIHZpZXdCb3g9IjAgMCAxNSAxNSIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik0zLjQxNDIxIDBIMi40MTQyMVYySDMuNDE0MjFIMTFMMC43MDcxMDcgMTIuMjkyOUwwIDEzTDEuNDE0MjEgMTQuNDE0MkwyLjEyMTMyIDEzLjcwNzFMMTIuNDE0MiAzLjQxNDIxVjExVjEySDE0LjQxNDJWMTFWMUMxNC40MTQyIDAuNDQ3NzE1IDEzLjk2NjUgMCAxMy40MTQyIDBIMy40MTQyMVoiIGZpbGw9ImJsYWNrIi8+Cjwvc3ZnPgo=);
    mask-image: url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTUiIGhlaWdodD0iMTUiIHZpZXdCb3g9IjAgMCAxNSAxNSIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik0zLjQxNDIxIDBIMi40MTQyMVYySDMuNDE0MjFIMTFMMC43MDcxMDcgMTIuMjkyOUwwIDEzTDEuNDE0MjEgMTQuNDE0MkwyLjEyMTMyIDEzLjcwNzFMMTIuNDE0MiAzLjQxNDIxVjExVjEySDE0LjQxNDJWMTFWMUMxNC40MTQyIDAuNDQ3NzE1IDEzLjk2NjUgMCAxMy40MTQyIDBIMy40MTQyMVoiIGZpbGw9ImJsYWNrIi8+Cjwvc3ZnPgo=);
    -webkit-mask-size: contain;
    mask-size: contain;
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    -webkit-mask-position: center;
    mask-position: center;
    background-color: currentColor;
    transition: transform .25sease;
    will-change: transform;
}
.single-post__related .related-post__button:hover {
    background-color: #f2f2f2;
    color: #2b2065;
    border-color: #f2f2f2;
}
.single-post__related .related-post__button:hover:after {
    transform: rotate(45deg);
}
.tag_page_main_group .blog-index {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: calc(72px* var(--scale)) calc(40px* var(--scale));
}
.tag_page_main_group .blog-index.two {
    grid-template-columns: repeat(2, 1fr);
}
.tag_page_main_group .blog-index.three {
    grid-template-columns: repeat(3, 1fr);
}
.tag_page_main_group .blog-index.four {
    grid-template-columns: repeat(4, 1fr);
}
.blog_post_list_item {
    display: flex;
    flex-direction: column;
    gap: calc(32px* var(--scale));
} 
.blog_post_list_item .archived-post__image {
    width: 100%;
    max-width: 100%;
    overflow: hidden;
    border-radius: 16px;
    position: relative;
}

.blog_post_list_item .archived-post__image:before {
    display: block;
    content: "";
    width: 100%;
    padding-top: calc((3 / 4)* 100%);
}
.blog_post_list_item .archived-post__image img {
    display: block;
    width: 100%;
    height: 100%;
    max-width: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    position: absolute;
    margin: auto;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    transition: all .6s ease-in-out;
}
.blog_post_list_item .archived-post__image:after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    background-color: #121212;
    opacity: 0;
    z-index: 1;
    transition: opacity .6s ease;
}
.blog_post_list_item .archived-post__image:hover:after {
    opacity: .2;
}
.blog_post_list_item .archived-post__image:hover img {
    transform: scale(1.03);
}
.blog_post_list_item .archived-post__tags {
    margin-bottom: calc(24px* var(--scale));
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}
.blog_post_list_item .archived-post__tags a {
    font-size: 14px;
    padding: 6px 14px;
    background-color: #e3e2ed;
    border: 1px solid #bcbac7;
    font-weight: 600;
    display: inline-flex;
    gap: 6px;
    justify-content: center;
    align-items: center;
    border-radius: 90px;
    text-decoration: none;
    color: #121212;
}
.blog_post_list_item .archived-post__tags a:hover {
    background-color: #bcbac7;
}
.blog_post_list_item .archived-post__title {
    font-family: "Reckless", sans-serif;
    font-weight: 500;
    color: var(--post-heading-color, #2b2065);
    font-size: calc(24px* var(--scale3)); 
    line-height: 1.1;
}
.blog_post_list_item .archived-post__btn {
    display: none !important;
}
.blog_post_list_item.hs_blog_list:first-child .archived-post__btn.has-arrow {
    align-items: center;
    background: transparent;
    border: 1px solid #fff;
    border-radius: 12px;
    color: #fff;
    display: inline-flex;
    font-size: 15px;
    font-weight: 600;
    gap: 16px 12px;
    justify-content: center;
    line-height: 1;
    min-height: 53px;
    outline: 0;
    padding: 0 28px;
    position: relative;
    text-decoration: none !important;
    transition-duration: .25s;
    transition-property: color, background, border;
    transition-timing-function: ease;
    white-space: nowrap;
}
.blog_post_list_item.hs_blog_list:first-child .archived-post__btn.has-arrow:after {
    background-color: currentColor;
    content: "";
    cursor: pointer;
    display: block;
    height: 14px;
    -webkit-mask-image: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxNSIgaGVpZ2h0PSIxNSIgZmlsbD0ibm9uZSIgdmlld0JveD0iMCAwIDE1IDE1Ij48cGF0aCBmaWxsPSIjMDAwIiBmaWxsLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik0zLjQxNCAwaC0xdjJIMTFMLjcwNyAxMi4yOTMgMCAxM2wxLjQxNCAxLjQxNC43MDctLjcwN0wxMi40MTQgMy40MTRWMTJoMlYxYTEgMSAwIDAgMC0xLTF6IiBjbGlwLXJ1bGU9ImV2ZW5vZGQiLz48L3N2Zz4=);
    mask-image: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxNSIgaGVpZ2h0PSIxNSIgZmlsbD0ibm9uZSIgdmlld0JveD0iMCAwIDE1IDE1Ij48cGF0aCBmaWxsPSIjMDAwIiBmaWxsLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik0zLjQxNCAwaC0xdjJIMTFMLjcwNyAxMi4yOTMgMCAxM2wxLjQxNCAxLjQxNC43MDctLjcwN0wxMi40MTQgMy40MTRWMTJoMlYxYTEgMSAwIDAgMC0xLTF6IiBjbGlwLXJ1bGU9ImV2ZW5vZGQiLz48L3N2Zz4=);
    -webkit-mask-position: center;
    mask-position: center;
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    -webkit-mask-size: contain;
    mask-size: contain;
    overflow: hidden;
    position: relative;
    transition: transform .25s ease;
    width: 14px;
    will-change: transform;
}
.blog_post_list_item.hs_blog_list:first-child .archived-post__btn.has-arrow:hover {
  text-decoration: none;
  color: #f8f1e4;
  background: #231a52;
}
.blog_post_list_item.hs_blog_list:first-child .archived-post__btn.has-arrow:hover:after {
    transform: rotate(45deg);
}

.body-container--brochures-post {
    padding-top: calc(230px* var(--scale));
    padding-bottom: calc(80px* var(--scale));
    max-width: calc(1060px* var(--scale3));
    margin: 0 auto;
}
.single-brochure__hero {
    margin-bottom: 40px;
}
.single-brochure__hero .single-brochure__title {
    margin-bottom: 24px;
    max-width: calc(590px* var(--scale3));
    font-size: calc(52px* var(--scale2));
    line-height: 1.1;
    letter-spacing: 0em;
}
.single-brochure__main .content-wrapper {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: calc(60px* var(--scale));
    align-items: start;
    padding-bottom: 80px;
    position: relative;
}
.single-brochure__main .content-wrapper:after {
    content: "";
    display: block;
    position: absolute;
    margin: auto;
    left: 20px;
    right: 20px;
    bottom: 0;
    height: 1px;
    background-color: #c1bcd7;
}
@supports selector(:has(img)) {
  .single-brochure__main .content-wrapper:has(.alignright,.aligncenter):after {
    content: "";
    display: table;
    clear: both
  }
}
.single-brochure__image {
    border-radius: 16px;
    overflow: hidden;
    position: relative;
    margin-bottom: calc(80px* var(--scale));
}
.single-brochure__image:before {
    display: block;
    content: "";
    width: 100%;
    padding-top: 75%;
}
.single-brochure__image img {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    min-width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    -o-object-position: center;
    object-position: center;
}
.brochure-post__body {
    font-size: calc(17px* var(--scale3));
    line-height: 1.5;
    font-weight: 500;
    position: relative;
    color: #121212;
}
.brochure-post__body h2 {
    font-size: calc(40px* var(--scale2));
    line-height: 1.1;
    letter-spacing: -0.03em;
}
.body-container--brochuresIndex {
    background: #fff;
}
.blog-index.hs_brochuresListing {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: calc(72px* var(--scale)) calc(40px* var(--scale));
}
.sidebar_brochures .custom_blog_title {
    margin-bottom: calc(40px* var(--scale));
}
.blog_post_list_item.hs_brochures_list .archived-post__title:hover {
    text-decoration: underline;
}
.blog_post_list_item.hs_brochures_list .archived-post__tags a {
    background-color: #ddf3ff;
    border-color: #81c4e9;
}
.body-container--brochuresIndex .blog-pagination {
    margin-bottom: 0;
}
.brochure-related-posts .single-brochure__related--header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
    margin-bottom: 48px;
}
.brochure-related-posts .single-brochure__related--header .single-post__related--title {
    margin: 0;
}
.brochure-related-posts .single-brochure__related--header .brochure-btn {
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 16px 12px;
    font-size: 15px;
    font-weight: 600;
    line-height: 1;
    transition-property: color, background, border;
    transition-timing-function: ease;
    transition-duration: 250ms;
    outline: 0;
    white-space: nowrap;
    position: relative;
    padding: 4px 0;
    border: none;
    border-bottom: 1px solid currentColor;
}
.brochure-related-posts .single-brochure__related--header .brochure-btn:after {
    content: "";
    display: block;
    width: 14px;
    height: 14px;
    position: relative;
    cursor: pointer;
    overflow: hidden;
    -webkit-mask-image: url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTUiIGhlaWdodD0iMTUiIHZpZXdCb3g9IjAgMCAxNSAxNSIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik0zLjQxNDIxIDBIMi40MTQyMVYySDMuNDE0MjFIMTFMMC43MDcxMDcgMTIuMjkyOUwwIDEzTDEuNDE0MjEgMTQuNDE0MkwyLjEyMTMyIDEzLjcwNzFMMTIuNDE0MiAzLjQxNDIxVjExVjEySDE0LjQxNDJWMTFWMUMxNC40MTQyIDAuNDQ3NzE1IDEzLjk2NjUgMCAxMy40MTQyIDBIMy40MTQyMVoiIGZpbGw9ImJsYWNrIi8+Cjwvc3ZnPgo=);
    mask-image: url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTUiIGhlaWdodD0iMTUiIHZpZXdCb3g9IjAgMCAxNSAxNSIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik0zLjQxNDIxIDBIMi40MTQyMVYySDMuNDE0MjFIMTFMMC43MDcxMDcgMTIuMjkyOUwwIDEzTDEuNDE0MjEgMTQuNDE0MkwyLjEyMTMyIDEzLjcwNzFMMTIuNDE0MiAzLjQxNDIxVjExVjEySDE0LjQxNDJWMTFWMUMxNC40MTQyIDAuNDQ3NzE1IDEzLjk2NjUgMCAxMy40MTQyIDBIMy40MTQyMVoiIGZpbGw9ImJsYWNrIi8+Cjwvc3ZnPgo=);
    -webkit-mask-size: contain;
    mask-size: contain;
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    -webkit-mask-position: center;
    mask-position: center;
    background-color: currentColor;
    transition: transform .25s ease;
    will-change: transform;
}
.brochure-related-posts .single-brochure__related--header .brochure-btn:hover:after {
    transform: rotate(45deg);
}
.blog_post_list_item .tags_page_content_summary {
    display: none !important;
    padding-top: 20px;
    font-size: 18px;
    line-height: 1.6;
}



@media (min-width: 992px) {
  .blog_post_list_item.hs_blog_list:first-child .tags_page_content_summary {
      display: block !important;
  }
  .tag_page_main_group .blog-index {
      grid-template-areas: "featured featured featured" ". . .";
  }
  .tag_page_main_group .blog-index.two {
    grid-template-areas: "featured featured" ". .";
  }
  .tag_page_main_group .blog-index.three {
    grid-template-areas: "featured featured featured" ". . .";
  }
  .tag_page_main_group .blog-index.four {
    grid-template-areas: "featured featured featured featured" ". . . .";
  }
  
  .blog_post_list_item.hs_blog_list:first-child {
      grid-area: featured;
      display: flex;
      flex-direction: row !important;
      align-items: flex-start;
      padding-bottom: calc(40px* var(--scale));
      gap: 0 calc(40px* var(--scale));
  }
  .blog_post_list_item.hs_blog_list:first-child > * {
      min-width: calc(50% - 20px);
  }
  .blog_post_list_item.hs_blog_list:first-child .archived-post__content {
      padding-left: calc(40px* var(--scale));
  }
  .blog_post_list_item.hs_blog_list:first-child .archived-post__title {
      font-size: calc(45px* var(--scale)) !important;
      line-height: 1.1;
      letter-spacing: 0em;
  }
  .blog_post_list_item.hs_blog_list:first-child .archived-post__btn.has-arrow {
      margin-top: calc(32px* var(--scale));
      display: inline-flex !important;
      background: #2b2065;
      color: #f8f1e4;
      border: 1px solid transparent;
      position: relative;
  }
} 


@media (max-width: 991.98px) {
  .body-container--blog-index {
      padding-top: 60px;
  }
  .custom_blog_search_group .search-button {
    margin: 0;
  }
  .custom_blog_search_group .hidden-container {
      right: 0;
      left: auto;
  }
  .hs_blog_recentPost_grp {
      grid-template-columns: 1fr;
      grid-template-rows: auto;
      grid-template-areas:
          "big"
          "small-top"
          "small-bottom";
      align-items: start;
  }
  .featured-post:nth-child(1) {
    height: calc(510px* var(--scale));
  }
  .featured-post__image {
    height: calc(220px* var(--scale));
  }
  .featured-post:first-child .featured-post__texts {
      height: 100%;
      width: 100%;
  }
  .posts-loop {
    grid-template-columns: 1fr 1fr;
  }
  .tag_page_main_group .blog-index {
      grid-template-columns: 1fr 1fr !important;
      padding: 0;
  }
  .blog-index.hs_brochuresListing {
      grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 767px) {
  .subscription-form {
    width: 85%;
  }
  .single-brochure__main .content-wrapper {
      grid-template-columns: 1fr;
  }
  .custom_blog_search_group .search-button {
      top: 0;
  }
  .custom_blog_search_group {
    margin-bottom: calc(40px* var(--scale));
  }
  
  .categories_trigger{
    display:none !important; 
  }
  .categories-nav * {
      width: 100% !important;
      margin-bottom: 6px !important;
  }

  .custom_blog_search_group .inline-search-form {
      width: 100% !important;
  }

  .categories-nav {
      padding-right: 0em !important;
  }
}

@media (max-width: 575.98px) {
  .posts-loop,
  .blog-index.hs_brochuresListing {
    grid-template-columns: 1fr;
  }
  .tag_page_main_group .blog-index {
      grid-template-columns: 1fr !important;
  }
}



.single-post__hero .content-wrapper, .single-post__body, .single-post__body .content-wrapper {
    max-width: calc(1280px * var(--scale)) !important;
}
.post-container {
    display: flex;
    width: 100%;
  gap:25px;
}

.post-container > .post-content-container {max-width: calc(100% - 300px);}
.post-container > .post-sidebar-container {min-width: 300px;width: 300px;}


/* .single-post__meta {
  display: flex;

  gap: 10px; /* space between author & date */
} 
.single-post__date {
    color: #8f88b1;
} */