.post-hero {
  padding: 12rem 0 5rem;
  background: url(../../../images/post-hero-bg.svg) no-repeat 50% 50%/cover;
}
.post-hero__meta {
  gap: 0.7rem;
}
.post-hero__meta svg {
  color: #e0ffa8;
  padding: 0.5rem;
}
.post-hero__socials {
  padding: 0;
  margin: 0;
  list-style-type: none;
  gap: 1rem;
}
.post-hero__socials li {
  margin-bottom: 0;
}
.post-hero__socials a {
  color: #ffffff;
  display: block;
  transition: color 0.35s;
}
.post-hero__socials a:hover {
  color: #e0ffa8;
}
.post-hero__socials a svg {
  width: 3.2rem;
  height: 3.2rem;
  display: block;
}
.post-hero__socials #copyToast {
  visibility: hidden;
  background-color: #333;
  color: #fff;
  text-align: center;
  border-radius: 6px;
  padding: 10px 14px;
  position: fixed;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 9999;
  opacity: 0;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}
.post-hero__socials #copyToast.show {
  visibility: visible;
  opacity: 1;
}
.post-aside {
  width: 23.2%;
  margin-right: 3rem;
  background: #f7f5ff;
  padding: 5rem 2.5rem;
  box-sizing: border-box;
}
.post-aside .toc-container {
  max-height: calc(100vh - 410px);
  overflow-y: auto;
}
.post-aside a:hover {
  text-decoration: underline;
}
.post-aside ol {
  list-style: none;
  counter-reset: item;
  margin-left: 0;
  padding-left: 0;
}
.post-aside ol.toc-list {
  margin-bottom: 0;
}
.post-aside ol > li {
  counter-increment: item;
  position: relative;
  font-size: 1.4rem;
}
.post-aside ol > li a {
  display: inline-flex;
}
.post-aside ol > li:last-child {
  margin-bottom: 0;
}
.post-aside ol > li ul {
  font-size: 1.2rem;
  margin-bottom: 1.5rem;
}
.post-aside ol > li ul li {
  margin: 1.5rem 0 0;
}
.post-body {
  flex: 1;
  padding-right: 8.6%;
}
.post-body__section {
  margin-bottom: 4rem;
  clear: both;
}
.post-body__section:last-child {
  margin-bottom: 0;
}
.post-body__cta {
  padding: 5rem;
  border-radius: 0.4rem;
  position: relative;
  transition: box-shadow 0.35s;
}
.post-body__cta.bg--gray {
  background: #f7f5ff;
  padding: 5rem;
  overflow: hidden;
  transition: background 0.35s;
}
.post-body__cta.bg--gray:hover {
  background: #eeebf2;
  box-shadow: none;
}
.post-body__cta.bg--gray > a:before {
  position: absolute;
  inset: -100vw;
  content: "";
  z-index: 2;
}
.post-body__cta--download {
  padding-right: 14.2rem;
  position: relative;
  overflow: hidden;
  transition: background 0.35s;
}
.post-body__cta--download:hover {
  box-shadow: none;
}
.post-body__cta--download > a:before {
  position: absolute;
  inset: -100vw;
  content: "";
  z-index: 2;
}
.post-body__cta--download.bg--gray {
  padding-right: 12.2rem;
}
.post-body__cta--download.bg--gray .icon-img {
  right: 2.5rem;
}
.post-body__cta a {
  font-weight: 500;
  display: inline-block;
  position: relative;
  padding-bottom: 3px;
}
.post-body__cta a:after {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 100%;
  height: 1px;
  background: currentColor;
  transition: all 0.35s ease;
  content: "";
}
.post-body__cta a:hover:after {
  width: 0%;
}
.post-body__cta .icon-img {
  position: absolute;
  bottom: 5rem;
  right: 5rem;
  color: #003c4c;
}
.post-body__styled-ordered-list ol {
  list-style: none;
  counter-reset: item;
  margin-left: 0;
  padding-left: 0;
}
.post-body__styled-ordered-list ol li {
  counter-increment: item;
  position: relative;
  padding: 0.4rem 0 0 4.9rem;
  margin-bottom: 2rem;
}
.post-body__styled-ordered-list ol li:last-child {
  margin-bottom: 0;
}
.post-body__styled-ordered-list ol li:before {
  content: counter(item);
  position: absolute;
  width: 2.9rem;
  height: 2.6rem;
  background: #e0ffa8;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  font-weight: 500;
  left: 0;
  line-height: 1;
  top: 0;
  font-weight: 500;
  border-radius: 0.8rem 0.8rem 0 0.8rem;
}
.post-body__styled-unordered-list ul {
  padding: 0;
  margin: 0;
  list-style-type: none;
}
.post-body__styled-unordered-list ul li {
  padding: 0.3rem 0 0 4.9rem;
  margin-bottom: 2rem;
  position: relative;
}
.post-body__styled-unordered-list ul li:last-child {
  margin-bottom: 0;
}
.post-body__styled-unordered-list ul li:before {
  position: absolute;
  left: 0;
  top: 0;
  width: 2.9rem;
  height: 2.6rem;
  content: "";
  background: url("../../../images/unordered-list-icon.png") no-repeat 0 0/2.9rem 2.6rem;
}
.post-body__styled-unordered-list.style--arrow li:before {
  background: url("../../../images/unordered-list-arrow.png") no-repeat 0 0/2.9rem 2.6rem;
}
.post-body__stats {
  margin: 0 -1.5rem;
}
.post-body__stats-value {
  margin-bottom: 1.5rem;
}
.post-body__stats-value i {
  font-style: normal;
  font-size: 0.58em;
}
.post-body__stats-item {
  width: calc(50% - 3rem);
  margin: 0 1.5rem;
  padding: 3rem 5rem;
  box-sizing: border-box;
  background: #f7f5ff;
  border-radius: 0.4rem;
}
.post-cta {
  background: rgb(2, 81, 102) url(../../../images/bg-post-cta.svg) no-repeat 50% 50%/cover;
}

.long-content-wrapper--full .pin-spacer,
.long-content-wrapper--full .toc-container-mobile {
  display: none !important;
}

.guide-hero {
  padding: 24.6rem 0 14.7rem;
  margin-bottom: 8rem;
  background: url(../../../images/guide-hero-bg.svg) no-repeat 50% 50%/cover;
}
.guide-hero__body {
  width: 40%;
}
.guide-hero__form {
  width: 32%;
  margin-right: 8.9%;
}
.guide-hero__pdf {
  width: 31.8%;
  margin-right: 8.5%;
  padding: 5rem 2.5rem;
  gap: 3rem;
  box-sizing: border-box;
}
.guide-hero__pdf:hover .guide-hero__pdf-description {
  text-decoration: none;
}
.guide-hero__pdf-body {
  flex: 1;
}
.guide-hero__pdf-description {
  text-decoration: underline;
}
.guide-hero__pdf .icon-img {
  color: #ffffff;
  transition: color 0.35s;
}
.guide-hero__pdf:hover .icon-img {
  color: #e0ffa8;
}
.guide-body {
  width: 46.9%;
}
.guide-image {
  margin-right: 8.4%;
  width: 31.8%;
}
.guide-image img {
  border-radius: 0.4rem;
}
.guide-cta {
  background: rgb(2, 81, 102) url(../../../images/guide-cta-bg.svg) no-repeat 50% 50%/cover;
}
.guide-cta__body {
  width: 40%;
}
.guide-cta__form {
  width: 32%;
  margin-right: 8.9%;
}

.hero-industry--insights {
  margin-bottom: 8rem;
  background: url(../../../images/insight-hero-bg.svg) no-repeat 50% 50%/cover !important;
}

.insight-body {
  width: 48.7%;
}
.insight-body .insight-widget {
  margin-right: 0;
  width: 100%;
  max-width: 42rem;
}
.insight-widget {
  width: 31.8%;
  margin-right: 8.4%;
  box-sizing: border-box;
  padding: 5rem 11.7rem 5rem 2.5rem;
  background: #f7f5ff;
  border-radius: 0.4rem;
  position: relative;
}
.insight-widget--no-link {
  padding-right: 2.5rem;
}
.insight-widget .icon-img {
  position: absolute;
  bottom: 5rem;
  right: 2.5rem;
}
.insight-widget-heading {
  margin-bottom: 1.5rem;
}
.insight-widget-link {
  text-decoration: underline;
}
.insight-widget-link:before {
  position: absolute;
  content: "";
  inset: 0;
  z-index: 2;
}
.insight-widget-link:hover {
  text-decoration: none;
}

.single-text-image .ia-container {
  display: flex;
  justify-content: space-between;
}
.single-text-image__left {
  width: 48.8%;
}
.single-text-image__left--full {
  width: 100%;
}
.single-text-image__right {
  width: 48.8%;
  margin-left: 8.4%;
}
.single-text-image__img {
  max-width: 100%;
  width: 417px;
  margin: 0 auto;
}
.single-text-image__img-in {
  width: 100%;
  padding-bottom: 91%;
  position: relative;
  border-radius: 4px;
  overflow: hidden;
}
.single-text-image__img-in img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.toc-container-mobile {
  display: none;
}

.has-toc .post-aside,
.has-toc .insight-body .insight-widget {
  display: block !important;
}
.has-toc .insight-widget--side {
  display: none;
}

@media (max-width: 1310px) {
  .insight-widget {
    margin-right: 0;
  }
  .form-subscribe .ia-form .form-row.flex {
    flex-direction: column;
  }
  .post-body {
    padding-right: 0;
  }
  .guide-hero__pdf {
    width: 35%;
    margin-right: 0;
  }
}
@media (max-width: 1023px) {
  .guide-hero__body--full {
    width: 100%;
  }
  .guide-hero__pdf {
    flex-direction: column;
    align-items: flex-start;
    padding: 2.5rem;
  }
  .has-toc .post-aside,
  .post-aside {
    display: none !important;
  }
  .toc-container-mobile {
    display: block;
    margin-bottom: 3rem;
    position: relative;
  }
  .toc-container-mobile .toc-container__heading {
    border-top: 1px solid #eeebf2;
    border-bottom: 1px solid #eeebf2;
    padding: 1.5rem 0;
    margin-top: 1.5rem;
    position: relative;
  }
  .toc-container-mobile .toc-container__heading.expanded:after {
    transform: rotate(-135deg);
    top: 2.3rem;
  }
  .toc-container-mobile .toc-container__heading:after {
    position: absolute;
    right: 1rem;
    top: 1.5rem;
    width: 1rem;
    height: 1rem;
    border-bottom: 1px solid #003c4c;
    border-right: 1px solid #003c4c;
    content: "";
    transform: rotate(45deg);
  }
  .toc-container-mobile__list {
    display: none;
    overflow: hidden;
  }
  .toc-container-mobile__list .toc-list {
    margin-bottom: 0;
    margin-left: 0;
    list-style-type: none;
  }
  .toc-container-mobile__list .toc-list li:last-child {
    margin-bottom: 0;
  }
  .form-subscribe .ia-form .form-row.flex {
    flex-direction: column;
  }
  .post-body {
    padding-right: 0;
  }
  .post-aside {
    width: 35%;
  }
  .insight-body {
    width: 100%;
  }
  .insight-widget {
    width: 100%;
  }
  .insight-main__in {
    flex-direction: column;
    gap: 3rem;
  }
}
@media (max-width: 767px) {
  .guide-hero__pdf {
    width: 100%;
    gap: 1rem;
    padding: 1.5rem;
  }
  .post-body__stats-item {
    padding: 3rem 2rem;
    margin: 0;
    width: calc(50% - 1rem);
  }
  .hero-industry--insights {
    margin-bottom: 2rem;
  }
  .post-hero__meta-wrap {
    flex-direction: column;
    align-items: flex-start;
    gap: 2rem;
  }
  .post-hero {
    padding-bottom: 4rem;
    background: url(../../../images/post-hero-bg-mobile.svg) no-repeat 50% 50%/cover;
  }
  .post-cta {
    background: rgb(2, 81, 102) url(../../../images/bg-post-cta-mobile.svg) no-repeat 50% 0%/cover;
  }
  .post-body__stats {
    margin: 0;
    gap: 2rem;
  }
  .post-body__cta a {
    text-decoration: underline;
  }
  .post-body__cta a:after {
    display: none;
  }
  .post-body__styled-unordered-list.style--circle ul li {
    padding-left: 2.9rem;
  }
  .post-body__stats-value {
    margin-bottom: 1rem;
  }
  .post-aside {
    width: auto;
    margin-right: 0;
    margin-bottom: 4rem;
  }
  .post-body__cta {
    padding: 4rem 2rem !important;
  }
  .toc-container.mb-5 {
    margin-bottom: 0 !important;
  }
  .post-main__in {
    display: block;
  }
  .post-body__cta--download .post-body__cta-heading {
    padding-right: 7rem;
    min-height: 6.2rem;
    padding-top: 0;
  }
  .post-body__cta .icon-img {
    right: 2rem;
    bottom: auto;
    top: 4rem;
  }
  .post-body__cta--download.bg--gray {
    padding-right: 2.5rem;
    padding-left: 2.5rem;
  }
  .single-text-image .ia-container {
    display: block;
  }
  .single-text-image__left {
    width: auto;
    margin-bottom: 4rem;
  }
  .single-text-image__right {
    width: auto;
    margin-left: 0;
  }
  .guide-hero {
    padding: 11rem 0 5rem;
    margin-bottom: 4rem;
  }
  .guide-hero__in {
    flex-direction: column;
  }
  .guide-hero__body {
    width: 100%;
    margin-bottom: 4rem;
  }
  .guide-hero__form {
    width: 100%;
    margin-right: 0;
  }
  .guide-cta__in {
    display: block;
  }
  .guide-cta__body {
    width: 100%;
    margin-bottom: 4rem;
  }
  .guide-cta__form {
    width: 100%;
    margin-right: 0;
  }
  .guide-main__in {
    flex-direction: column;
  }
  .guide-body {
    width: 100%;
  }
  .guide-image {
    margin-right: 0;
    width: 100%;
  }
  .table-wrapper {
    overflow: hidden;
    overflow-x: auto;
    border-radius: 4px;
  }
  .table-wrapper table {
    min-width: 560px;
  }
  .insight-widget {
    padding: 4rem 2rem;
  }
  .insight-widget .icon-img {
    bottom: auto;
    top: 4rem;
  }
  .insight-widget-heading {
    padding-right: 7.5rem;
  }
}

/*# sourceMappingURL=single.css.map */