/* Native Blog Single layer. The large export stylesheet still provides base
   sizing; this file owns dynamic CMS behavior, rich text polish and runtime UI. */

.blog-single-page .main-content {
  background: var(--new--neutral--color-100);
}

.sec.blog-post.blog-single-hero {
  padding-top: 112px;
}

.blog-single-top {
  align-items: end;
}

.blog-single-page .blog-post-heading {
  margin-top: 10px;
}

.blog-single-page .blog-featured-image {
  aspect-ratio: 16 / 9;
  object-fit: cover;
  display: block;
  margin-top: 24px;
  box-shadow: 0 12px 34px rgba(20, 20, 43, 0.08);
}

.blog-single-page .blog-author-top {
  justify-self: end;
  background: #fff;
  border: 1px solid #e3e2ef;
  box-shadow: 0 2px 10px rgba(13, 10, 44, 0.05);
}

.blog-single-page .blog-author-top .text-200 {
  font-size: inherit;
}

.blog-single-page .blog-author-top .blog-author-image {
  box-sizing: border-box;
  background: #fff;
  border: 1px solid rgba(227, 226, 239, 0.5);
}

.blog-single-page .blog-card-details.post {
  grid-column-gap: 25px;
  grid-row-gap: 10px;
  flex-wrap: wrap;
  align-items: center;
}

.blog-single-page .blog-single-meta-back {
  font-size: 14px;
  line-height: 16.8px;
  text-decoration: none;
  transition: color 180ms ease, transform 180ms ease;
}

.blog-single-page .blog-single-meta-back:hover {
  color: var(--new--accent--primary-1);
  transform: translateX(-3px);
}

.blog-single-page .blog-date-flex.blog-details-font > .brix_icon-font {
  position: relative;
  top: 1px;
}

.blog-single-page {
  --bt-toc-neutral-100: #ffffff;
  --bt-toc-neutral-600: #6e7191;
  --bt-toc-neutral-800: #211f54;
  --bt-toc-accent: #4a3aff;
  --bt-toc-divider: #ebeaf6;
  --bt-toc-scrollbar-thumb: rgba(135, 139, 164, 0.34);
  --bt-toc-scrollbar-thumb-hover: rgba(120, 124, 150, 0.50);
  --bt-toc-card-pad-x: 26px;
  --bt-toc-col-width: 720px;
}

.blog-single-page .article-column {
  max-width: var(--bt-toc-col-width);
  margin: 28px auto 32px;
  background: var(--bt-toc-neutral-100);
  border: 1px solid #ececf4;
  border-radius: 22px;
  box-shadow: 0 2px 10px rgba(13, 10, 44, 0.05);
  overflow: hidden;
}

.blog-single-page .table-of-content-wrappers {
  display: grid;
  grid-column-gap: 0;
  grid-row-gap: 0;
  margin: 0;
  padding: 0;
  align-items: stretch;
  justify-content: stretch;
}

.blog-single-page .bt-collapse.article-changelog-container,
.blog-single-page .bt-collapse.table-of-content-container {
  border: 0;
  background: transparent;
  border-radius: 0;
  width: 100%;
  max-width: none;
  margin: 0;
  padding: 0;
  overflow: hidden;
  box-shadow: none;
  transition: height 340ms cubic-bezier(0.22, 1, 0.36, 1);
  will-change: height;
}

.blog-single-page .bt-collapse + .bt-collapse {
  border-top: 1px solid var(--bt-toc-divider);
}

.blog-single-page .bt-collapse-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  width: 100%;
  padding: 24px var(--bt-toc-card-pad-x);
  border: 0;
  background: transparent;
  color: var(--bt-toc-neutral-800);
  font: inherit;
  font-size: 17px;
  font-weight: 600;
  text-align: left;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
}

.blog-single-page .bt-collapse-title {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.blog-single-page .bt-collapse-title .bt-ico {
  display: inline-flex;
  color: var(--bt-toc-accent);
}

.blog-single-page .bt-collapse-title .bt-ico svg {
  display: block;
}

.blog-single-page .bt-toggle {
  position: relative;
  flex: 0 0 auto;
  width: 18px;
  height: 18px;
}

.blog-single-page .bt-toggle span {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 14px;
  height: 2px;
  border-radius: 2px;
  background: #9aa0bd;
  transform: translate(-50%, -50%);
  transition: opacity 240ms ease, transform 240ms ease;
}

.blog-single-page .bt-collapse-header[aria-expanded="false"] .bt-toggle-v {
  opacity: 1;
  transform: translate(-50%, -50%) rotate(90deg);
}

.blog-single-page .bt-collapse-header[aria-expanded="true"] .bt-toggle-v {
  opacity: 0;
  transform: translate(-50%, -50%) rotate(0deg);
}

.blog-single-page .bt-collapse-panel {
  opacity: 1;
  filter: blur(0);
  transition: opacity 260ms ease, filter 260ms ease;
  will-change: opacity, filter;
}

.blog-single-page .bt-collapse.is-collapsed .bt-collapse-panel {
  opacity: 0;
  filter: blur(8px);
  pointer-events: none;
}

.blog-single-page .bt-divider {
  width: 100%;
  height: 1px;
  background: var(--bt-toc-divider);
}

.blog-single-page .toc {
  position: relative;
  max-height: min(520px, 64vh);
  padding: 22px calc(var(--bt-toc-card-pad-x) * 2) 26px;
  border-top: 0;
  overflow-x: hidden;
  overflow-y: auto;
  scrollbar-width: thin;
  scrollbar-color: var(--bt-toc-scrollbar-thumb) transparent;
}

.blog-single-page .toc ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.blog-single-page .toc li {
  margin-bottom: 13px;
  opacity: 0;
  transform: translateY(7px);
  transition: opacity 380ms ease,
              transform 420ms cubic-bezier(0.22, 1, 0.36, 1);
}

.blog-single-page .toc li.is-in {
  opacity: 1;
  transform: none;
}

.blog-single-page .toc li:last-child {
  margin-bottom: 0;
}

.blog-single-page .toc-h3 {
  margin-left: 22px;
}

.blog-single-page .toc a {
  display: flex;
  align-items: baseline;
  gap: 0.4em;
  color: var(--bt-toc-neutral-600);
  font-size: 15px;
  line-height: 1.5;
  text-decoration: none;
  transition: color 200ms ease, transform 200ms ease;
}

.blog-single-page .toc a:hover {
  color: var(--bt-toc-accent);
  transform: translateX(5px);
}

.blog-single-page .toc-number {
  flex: 0 0 auto;
  color: inherit;
  font-weight: inherit;
  white-space: nowrap;
}

.blog-single-page .toc-label {
  min-width: 0;
  overflow-wrap: break-word;
}

.blog-single-page .toc::-webkit-scrollbar {
  width: 15px;
}

.blog-single-page .toc::-webkit-scrollbar-track {
  margin-top: 8px;
  margin-bottom: 8px;
  background: transparent;
}

.blog-single-page .toc::-webkit-scrollbar-thumb {
  background: var(--bt-toc-scrollbar-thumb);
  background-clip: padding-box;
  border-right: 8px solid transparent;
  border-radius: 999px;
}

.blog-single-page .toc::-webkit-scrollbar-thumb:hover {
  background: var(--bt-toc-scrollbar-thumb-hover);
}

.blog-single-page .article-changelog-wrapper {
  padding: 24px calc(var(--bt-toc-card-pad-x) * 2) 28px;
  border-top: 0;
  font-size: 15px;
  line-height: 1.65;
}

.blog-single-page .article-changelog-wrapper .mgb-xxs {
  margin: 0 0 12px;
}

.blog-single-page .article-changelog-wrapper p {
  margin: 0 0 12px;
  padding-bottom: 0;
  border-top: 0;
}

.blog-single-page .article-changelog-wrapper p:last-child {
  margin-bottom: 0;
}

.blog-single-page .article-changelog-wrapper strong {
  color: var(--bt-toc-neutral-800);
  font-weight: 600;
}

.blog-single-page .rich-text-container {
  margin-top: 16px;
}

.blog-single-page .rich-text-blog {
  color: var(--new--neutral--color-600);
}

.blog-single-page .rich-text-blog h2,
.blog-single-page .rich-text-blog h3,
.blog-single-page .rich-text-blog h4 {
  color: var(--new--neutral--color-800);
  scroll-margin-top: 112px;
}

.blog-single-page .rich-text-blog h2 {
  max-width: 720px;
  margin: 38px auto 14px;
  font-size: 30px;
  line-height: 1.22;
}

.blog-single-page .rich-text-blog h3 {
  max-width: 720px;
  margin: 30px auto 12px;
  font-size: 24px;
  line-height: 1.28;
}

.blog-single-page .rich-text-blog p,
.blog-single-page .rich-text-blog li {
  line-height: 1.72;
}

.blog-single-page .rich-text-blog p {
  max-width: 720px;
  margin: 0 auto 18px;
  padding-bottom: 0;
  border-top: 0;
}

.blog-single-page .rich-text-blog ul,
.blog-single-page .rich-text-blog ol {
  max-width: 720px;
  margin: 0 auto 28px;
}

.blog-single-page .rich-text-blog figure {
  max-width: 720px;
  margin: 30px auto;
}

.blog-single-page .rich-text-blog img {
  width: 100%;
  height: auto;
  border: 1px solid #e5e7f1;
  border-radius: 22px;
  box-shadow: 0 10px 28px rgba(20, 20, 43, 0.08);
}

.blog-single-page .rich-text-blog iframe {
  width: 100%;
  max-width: 100%;
  min-height: 540px;
  border: 0;
  border-radius: 20px;
  margin: 20px 0 30px;
  box-shadow: 0 10px 28px rgba(20, 20, 43, 0.08);
}

.blog-single-page .rich-text-blog .w-embed,
.blog-single-page .rich-text-blog .w-richtext-figure-type-video {
  max-width: 960px;
  margin-left: auto;
  margin-right: auto;
}

.blog-single-page .rich-text-blog table,
.blog-single-page .brix-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  background: #fff;
  font-size: 14px;
  border: 1.5px solid #d8d8ff;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 1px 3px rgba(99, 102, 241, 0.08);
  margin: 12px auto 40px;
}

.blog-single-page .rich-text-blog th,
.blog-single-page .rich-text-blog td,
.blog-single-page .brix-table th,
.blog-single-page .brix-table td {
  padding: 20px 24px;
  border-bottom: 1px solid #f0f0ff;
  border-right: 1px solid #f8f8ff;
}

.blog-single-page .rich-text-blog th,
.blog-single-page .brix-table th {
  background: #f2f2ff;
  color: #24245c;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.blog-single-page .rich-text-blog pre:not(.cb-pre),
.blog-single-page pre.w-code-block:not(.cb-pre) {
  padding: 0 !important;
  background: transparent !important;
  overflow: visible !important;
}

.blog-single-page .rich-text-blog code:not(.cb-code) {
  padding: 28px !important;
  background: #f7f8fc !important;
  color: #7b8397 !important;
  border-radius: 18px;
  display: block;
  overflow-x: auto;
}

.blog-single-page .sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  border: 0;
}

.blog-single-page .cb-aurora-wrap {
  --brand: #4a3aff;
  --brand-2: #6d3aff;
  --ink: #211f54;
  --muted: #6e7191;
  --code-font: 'Fira Code', ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  --pad: 28px;
  --copied: #4a3aff;
  --t-kw: #7d42fb;
  --t-str: #2370ff;
  --t-fn: #4a3aff;
  --t-prop: #6d3aff;
  --t-num: #3a7fff;
  --t-com: #9da3c2;
  --t-punct: #9398bd;
  position: relative;
  max-width: 760px;
  margin: 28px auto;
  padding: var(--pad);
  border-radius: 24px;
  overflow: hidden;
  background: #f1f3fd;
  animation: cardIn 760ms cubic-bezier(0.22, 1, 0.36, 1) both;
}

@keyframes cardIn {
  from {
    opacity: 0;
    transform: translateY(18px);
  }

  to {
    opacity: 1;
    transform: none;
  }
}

.blog-single-page .cb-aurora {
  position: absolute;
  inset: -42%;
  filter: blur(56px);
  opacity: 0.66;
  background:
    radial-gradient(34% 34% at 22% 26%, rgba(74, 58, 255, 0.30), transparent 70%),
    radial-gradient(32% 32% at 80% 16%, rgba(125, 66, 251, 0.26), transparent 72%),
    radial-gradient(34% 34% at 78% 92%, rgba(58, 127, 255, 0.24), transparent 72%);
  animation: bgOrbit 20s linear infinite;
  will-change: transform;
}

@keyframes bgOrbit {
  to {
    transform: rotate(360deg);
  }
}

.blog-single-page .cb-aurora-wrap.is-paused .cb-aurora {
  animation-play-state: paused;
}

.blog-single-page .cb-card {
  position: relative;
  background: rgba(255, 255, 255, 0.82);
  -webkit-backdrop-filter: blur(20px) saturate(140%);
  backdrop-filter: blur(20px) saturate(140%);
  border: 1px solid rgba(255, 255, 255, 0.85);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 18px 46px rgba(40, 30, 90, 0.14);
}

.blog-single-page .cb-scroll {
  max-height: min(380px, 70vh);
  overflow: auto !important;
  scrollbar-width: none !important;
  -ms-overflow-style: none !important;
}

.blog-single-page .cb-scroll::-webkit-scrollbar {
  width: 0 !important;
  height: 0 !important;
  display: none !important;
}

.blog-single-page .cb-scroll:focus-visible {
  outline: 2px solid var(--brand);
  outline-offset: -2px;
}

.blog-single-page .cb-pre {
  margin: 0;
  padding: 16px 20px;
  background: transparent !important;
  overflow: visible !important;
}

.blog-single-page .rich-text-blog .cb-code,
.blog-single-page .cb-code {
  display: block;
  padding: 0 !important;
  background: transparent !important;
  border-radius: 0;
  overflow: visible;
  font-family: var(--code-font);
  font-size: 13px;
  line-height: 1.7;
  white-space: pre;
  font-weight: 400;
  color: #3d3d60;
  font-variant-ligatures: contextual;
  font-feature-settings: "liga" 1, "calt" 1;
}

.blog-single-page .cb-code span {
  font-family: inherit;
  font-weight: inherit;
}

.blog-single-page .cb-code .tok-kw {
  color: var(--t-kw);
}

.blog-single-page .cb-code .tok-str {
  color: var(--t-str);
}

.blog-single-page .cb-code .tok-fn {
  color: var(--t-fn);
}

.blog-single-page .cb-code .tok-prop {
  color: var(--t-prop);
}

.blog-single-page .cb-code .tok-num {
  color: var(--t-num);
}

.blog-single-page .cb-code .tok-com {
  color: var(--t-com);
}

.blog-single-page .cb-code .tok-punct {
  color: var(--t-punct);
}

.blog-single-page .cb-copy {
  position: absolute;
  top: calc(var(--pad) + 14px);
  right: calc(var(--pad) + 14px);
  z-index: 6;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  min-width: 78px;
  padding: 7px 12px;
  border-radius: 10px;
  font-family: inherit;
  font-size: 12.5px;
  font-weight: 600;
  line-height: 1;
  color: #5b5f86;
  cursor: pointer;
  background: #fff;
  border: 1px solid #ececf4;
  box-shadow: 0 2px 6px rgba(20, 20, 43, 0.07);
  --ic: 15px;
  --dd: 240ms;
  --de: cubic-bezier(0.4, 0, 0.2, 1);
  transition: transform 200ms cubic-bezier(0.22, 1, 0.36, 1), box-shadow 220ms ease, color 200ms ease, border-color 220ms ease;
}

.blog-single-page .cb-copy:hover {
  border-color: #dcd9ff;
  color: var(--copied);
}

.blog-single-page .cb-copy:active {
  transform: scale(0.95);
}

.blog-single-page .cb-copy:focus-visible {
  outline: 2px solid var(--brand);
  outline-offset: 2px;
}

.blog-single-page .cb-label {
  white-space: nowrap;
  transition: opacity 170ms ease;
}

.blog-single-page .ico {
  width: var(--ic);
  height: var(--ic);
  display: block;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.blog-single-page .cb-ico {
  position: relative;
  width: var(--ic);
  height: var(--ic);
  flex: 0 0 auto;
}

.blog-single-page .cb-ico .ico {
  position: absolute;
  inset: 0;
}

.blog-single-page .cb-copy .ico-copy {
  opacity: 1;
  transition: opacity 200ms ease;
}

.blog-single-page .cb-copy .ico-check {
  opacity: 0;
  transition: opacity 200ms ease;
}

.blog-single-page .cb-copy .check-path {
  stroke-width: 2.5;
  stroke-dasharray: 24;
  stroke-dashoffset: 24;
  transition: stroke-dashoffset var(--dd) var(--de) 60ms;
}

.blog-single-page .cb-copy.is-copied {
  color: var(--copied);
}

.blog-single-page .cb-copy.is-copied .ico-copy {
  opacity: 0;
}

.blog-single-page .cb-copy.is-copied .ico-check {
  opacity: 1;
}

.blog-single-page .cb-copy.is-copied .check-path {
  stroke-dashoffset: 0;
}

.blog-single-page .cb-copy.is-reversing .check-path {
  stroke-dashoffset: 0;
  transition: none;
}

.blog-single-page .cb-copy.is-reversing .ico-check {
  animation: rvScaleOut 200ms ease forwards;
}

.blog-single-page .cb-copy.is-reversing .ico-copy {
  animation: rvElastic 440ms cubic-bezier(0.34, 1.7, 0.5, 1) 80ms both;
}

@keyframes rvScaleOut {
  to {
    opacity: 0;
    transform: scale(0.4);
  }
}

@keyframes rvElastic {
  0% {
    opacity: 0;
    transform: scale(0.4) rotate(-20deg);
  }

  100% {
    opacity: 1;
    transform: scale(1) rotate(0);
  }
}

.blog-single-page .share-post-wrapper {
  text-align: center;
}

.blog-single-page .rich-text-container .inner-container .divider._32px {
  background: transparent;
  border: 0;
}

.blog-single-page .share-links-contianer {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  justify-content: center;
  display: flex;
}

.blog-single-page .social-media-icon {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: #fff;
  justify-content: center;
  align-items: center;
  display: flex;
  box-shadow: 0 8px 22px rgba(20, 20, 43, 0.08);
  color: var(--new--neutral--color-600);
  transition: transform 200ms ease, box-shadow 200ms ease, color 200ms ease;
}

.blog-single-page .social-media-icon:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 28px rgba(20, 20, 43, 0.16);
}

.blog-single-page .social-media-icon svg {
  width: 17px;
  height: 17px;
}

/* Each share icon animates to its brand colour on hover/focus. */
.blog-single-page .social-media-icon--facebook:hover,
.blog-single-page .social-media-icon--facebook:focus-visible {
  color: #1877f2;
}

.blog-single-page .social-media-icon--x:hover,
.blog-single-page .social-media-icon--x:focus-visible {
  color: #000;
}

.blog-single-page .social-media-icon--linkedin:hover,
.blog-single-page .social-media-icon--linkedin:focus-visible {
  color: #0a66c2;
}

.blog-single-page .blog-author-bottom-wrapper {
  background: #fff;
  box-shadow: 0 12px 34px rgba(20, 20, 43, 0.06);
}

.blog-single-page .blog-author-bottom-wrapper .link-wraper .btn-arrow {
  /* Nudge 2px down so the arrow optically aligns with the text baseline.
     Uses positioning (not transform) to avoid clashing with the hover slide. */
  position: relative;
  top: 2px;
  transition: transform 200ms ease;
}

.blog-single-page .blog-author-bottom-wrapper .link-wraper:hover .btn-arrow {
  transform: translateX(5px);
}

.blog-single-newsletter {
  overflow: hidden;
}

.blog-single-latest .title-btn {
  align-items: center;
  margin-bottom: 34px;
}

.blog-single-latest-subtitle {
  max-width: 460px;
  margin-top: 8px;
  margin-bottom: 0;
}

.blog-single-latest-card {
  position: relative;
  transition: box-shadow .22s ease, transform .22s ease;
}

.blog-single-latest-card .resource-card__stretched-link {
  position: absolute;
  inset: 0;
  z-index: 1;
  border-radius: inherit;
}

.blog-single-latest-card .resource-card__image-wrap {
  z-index: 2;
}

.blog-single-latest-card .resource-card__content {
  position: relative;
  z-index: 2;
  pointer-events: none;
}

.blog-single-latest-card .resource-card__content a {
  pointer-events: auto;
}

.blog-single-latest-card .blog-post-card-title {
  margin-bottom: 4px;
  transition: color .22s ease;
}

.blog-single-latest-card .resource-card__content p {
  margin-top: 0;
}

.blog-single-latest-card .resource-card__image-wrap {
  aspect-ratio: 16 / 9;
}

.blog-single-latest-card .resource-card__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .22s ease;
}

.blog-single-latest-card:hover {
  box-shadow: 0 12px 30px rgba(20, 20, 43, .12);
}

.blog-single-latest-card:hover .resource-card__image {
  transform: scale(1.05);
}

.blog-single-latest-card:hover .blog-post-card-title {
  color: var(--new--primary-color);
  transform: none;
}

.blog-single-latest-card .blog-post-card-date .brix_icon-font.text-icon {
  margin-top: 0 !important;
}

.blog-single-page .blog-cta-container {
  display: none;
}

.blog-single-page .blog-cta-container.is-ready {
  display: block;
  opacity: 0;
  filter: blur(10px);
  transform: translateY(28px);
}

.blog-single-page .blog-cta-container {
  right: 28px;
  bottom: 28px;
  transition: opacity 520ms cubic-bezier(0.16, 1, 0.3, 1), transform 520ms cubic-bezier(0.16, 1, 0.3, 1), filter 520ms ease;
  will-change: opacity, transform, filter;
}

.blog-single-page .blog-cta-container.is-ready.is-visible {
  opacity: 1 !important;
  filter: blur(0) !important;
  transform: translateY(0) !important;
}

.blog-single-page .blog-cta-container.is-hiding {
  opacity: 0 !important;
  filter: blur(10px);
  transform: translateY(28px) !important;
  pointer-events: none;
}

.blog-single-page .blog-cta {
  cursor: pointer;
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.blog-single-page .blog-cta:hover {
  transform: translateY(-3px);
}

.blog-single-page .blog-cta-button {
  border: 0;
  cursor: pointer;
  color: inherit;
  background: transparent;
  border-radius: 14px;
  padding: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  transition: transform 220ms ease, opacity 220ms ease, background-color 220ms ease;
  z-index: 4;
}

.blog-single-page .blog-cta-button:hover {
  background: rgba(236, 240, 248, 0.92);
  opacity: 0.96;
  transform: rotate(90deg) scale(0.92);
}

.blog-single-page .blog-cta-button:focus-visible {
  background: rgba(236, 240, 248, 0.92);
  outline: 0;
}

.blog-single-page .blog-cta-link-wrapper .blog-cta-icon {
  transition: transform 200ms ease;
}

.blog-single-page .blog-cta:hover .blog-cta-link-wrapper .blog-cta-icon,
.blog-single-page .blog-cta-link-wrapper:hover .blog-cta-icon {
  transform: translateX(5px);
}

.blog-single-page .framer-cta,
.blog-single-page .webflow-cta {
  display: none;
}

.blog-single-page .framer-cta.is-active,
.blog-single-page .webflow-cta.is-active {
  display: block;
}

/* Lazy-load comments placeholder (shown until the reader clicks "Load
   comments"; the surrounding .blog-comments-wrapper card supplies the border). */
.blog-single-page .comments-placeholder {
  text-align: center;
  padding: 22px 0 14px;
  transition: opacity .2s ease;
}

.blog-single-page .comments-placeholder.is-loading {
  opacity: .55;
  pointer-events: none;
}

.blog-single-page .comments-placeholder__icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 16px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  background: var(--new--secondary--color-2);
  color: var(--new--primary-color);
}

.blog-single-page .comments-placeholder__icon svg {
  width: 24px;
  height: 24px;
}

.blog-single-page .comments-placeholder__title {
  font-size: 19px;
  font-weight: 700;
  color: var(--new--neutral--color-800);
  margin-bottom: 6px;
}

.blog-single-page .comments-placeholder__text {
  margin: 0 0 20px;
  color: var(--new--neutral--color-600);
  font-size: 14px;
}

.blog-single-page .comments-placeholder__btn {
  display: inline-flex;
  cursor: pointer;
}

@media screen and (max-width: 991px) {
  .sec.blog-post.blog-single-hero {
    padding-top: 104px;
  }

  .blog-single-top {
    grid-template-columns: 1fr;
  }

  .blog-single-page .blog-author-top {
    justify-self: stretch;
    justify-content: flex-start;
  }

  .blog-single-page .rich-text-blog iframe {
    min-height: 440px;
  }
}

@media screen and (max-width: 767px) {
  .sec.blog-post.blog-single-hero {
    padding-top: 92px;
  }

  .blog-single-page .blog-featured-image {
    margin-top: 16px;
    border-radius: 24px;
  }

  .blog-single-page .blog-post-heading {
    margin-top: 8px;
  }

  .blog-single-page .blog-card-details.post {
    grid-column-gap: 25px;
    grid-row-gap: 8px;
  }

  .blog-single-page {
    --bt-toc-card-pad-x: 20px;
  }

  .blog-single-page .article-column {
    margin-top: 20px;
  }

  .blog-single-page .bt-collapse-header {
    /* Mobile-only optical nudge: 2px less bottom padding. The box padding is
       actually symmetric, but the title sits slightly high in its line-box, so
       trimming the bottom makes it read as vertically centred. */
    padding: 22px var(--bt-toc-card-pad-x) 20px;
    font-size: 16px;
  }

  .blog-single-page .rich-text-blog h2 {
    font-size: 26px;
  }

  .blog-single-page .rich-text-blog h3 {
    font-size: 22px;
  }

  .blog-single-page .rich-text-blog iframe {
    min-height: 360px;
  }

  .blog-single-page .rich-text-container {
    margin-top: 0;
  }

  .blog-single-page .blog-author-bottom-wrapper {
    text-align: center;
    align-items: center;
    padding: 28px;
    flex-direction: column;
  }

  .blog-single-page .author-details {
    margin-top: 18px;
    margin-left: 0;
  }

  .blog-single-latest .title-btn {
    grid-template-columns: 1fr;
    justify-items: start;
    margin-bottom: 28px;
  }

  .blog-single-latest-subtitle {
    margin-top: 4px;
  }
}

@media screen and (max-width: 479px) {
  .blog-single-page .blog-card-details.post {
    justify-content: center;
  }

  /* Zero the date's default 5px bottom margin: it enlarged the flex line so
     "Back to blog" (no margin) centered 2.5px lower. With both margin-boxes
     equal, align-items:center lines them up. (order:2 removed so "Back to
     blog" keeps the desktop order — first/left instead of swapped.) */
  .blog-single-page .blog-card-details.post .blog-date-flex {
    margin-bottom: 0;
  }

  /* The "Last updated on:" text is hidden on mobile, but its wrapper stayed in
     the layout with a 6px right margin that stacked with the icon's own 6px →
     a 12px gap before the date (double the back-arrow's 6px). Hide the empty
     wrapper so the icon→date gap is a single 6px, matching the back arrow. */
  .blog-single-page .blog-details-date-space {
    display: none;
  }

  .blog-single-page .cb-aurora-wrap {
    --pad: 16px;
  }

  .blog-single-page .cb-code {
    font-size: 12px;
  }

  .blog-single-page .cb-copy {
    top: calc(var(--pad) + 10px);
    right: calc(var(--pad) + 10px);
    min-width: 0;
    padding: 6px 10px;
    font-size: 12px;
  }

  .blog-single-page .blog-featured-image {
    border-radius: 20px;
  }

  .blog-single-page .rich-text-blog iframe {
    min-height: 280px;
    border-radius: 16px;
  }

  .blog-single-page .rich-text-blog img {
    border-radius: 16px;
  }

  .blog-single-page .rich-text-blog code:not(.cb-code) {
    padding: 16px !important;
    font-size: 12px !important;
    line-height: 1.5;
  }

  /* Keep the share row compact on phones: title left, icons right (the base
     `space-between` handles it) instead of the stacked/centered column. */
  .blog-single-page .share-post-wrapper {
    flex-direction: row;
    align-items: center;
    text-align: left;
  }

  .blog-single-page .share-links-contianer {
    grid-column-gap: 14px;
  }

  .blog-single-page .social-media-icon {
    width: 36px;
    height: 36px;
  }

  .blog-single-page {
    --bt-toc-card-pad-x: 16px;
  }

  .blog-single-page .article-column {
    border-radius: 18px;
  }

  .blog-single-page .toc {
    max-height: min(440px, 60vh);
  }

  .blog-single-page .toc a {
    font-size: 14.5px;
  }

  .blog-single-page .toc-h3 {
    margin-left: 16px;
  }

  .blog-single-page .toc::-webkit-scrollbar {
    width: 12px;
  }

  .blog-single-page .toc::-webkit-scrollbar-thumb {
    border-right-width: 6px;
  }

  .blog-single-page .article-changelog-wrapper {
    font-size: 14.5px;
  }

  .blog-single-page .blog-cta-container {
    right: 20px !important;
    bottom: 20px !important;
  }
}

@media (prefers-reduced-motion: reduce) {
  .blog-single-page .cb-aurora-wrap,
  .blog-single-page .cb-aurora {
    animation: none !important;
  }

  .blog-single-page .cb-copy,
  .blog-single-page .ico,
  .blog-single-page .check-path,
  .blog-single-page .cb-label,
  .blog-single-page .ico-copy,
  .blog-single-page .ico-check {
    transition: none !important;
    animation: none !important;
  }
}

@media (prefers-reduced-motion: reduce) {
  .blog-single-page .bt-collapse,
  .blog-single-page .bt-collapse-panel,
  .blog-single-page .bt-toggle span,
  .blog-single-page .toc a,
  .blog-single-page .toc li,
  .blog-single-latest-card,
  .blog-single-latest-card .blog-post-card-title,
  .blog-single-latest-card .resource-card__image {
    transition: none !important;
  }

  .blog-single-page .toc li {
    opacity: 1;
    transform: none;
  }

  .blog-single-latest-card:hover .blog-post-card-title,
  .blog-single-latest-card:hover .resource-card__image {
    transform: none;
  }
}
