/* Customer Success article fonts are loaded through this external stylesheet. */
@import url('https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,300;0,9..40,400;0,9..40,500;0,9..40,600;1,9..40,300&family=Instrument+Serif:ital@0;1&family=Nunito+Sans:wght@400;600;700;800;900&family=Roboto:wght@400;500;700;900&display=swap');

:root {
  --background: #ffffff;
  --foreground: #0a0a0a;
  --border: #e8e8e8;
  --brand: #1549f0;
  --font-family-sans: "DM Sans", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-family-serif: "Instrument Serif", Georgia, serif;
  --blog-post-font-family: "DM Sans", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --text-foreground: #0a0a0a;
  --text-muted: #737373;
  --muted-foreground: #737373;
  --text-ui-xs-size: 0.6875rem;
  --text-ui-sm-size: 0.8125rem;
  --text-ui-md-size: 0.875rem;
  --text-ui-lg-size: 0.9375rem;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  min-height: 100%;
}

body {
  font-family: var(--font-family-sans);
  background: #ffffff;
  color: #0a0a0a;
}

.blog-post-root .share-article-main {
  font-family: var(--blog-post-font-family);
}

body.modal-open {
  overflow: hidden;
}

img,
svg,
video,
canvas {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
}

button,
input,
textarea,
select {
  font: inherit;
}

button {
  appearance: none;
}

.heading-6 {
  font-family: var(--font-family-sans);
  font-size: var(--text-ui-xs-size);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #9a9a9a;
  font-weight: 700;
  line-height: 1.4;
}

.text-ui-sm {
  font-family: var(--font-family-sans);
  font-size: var(--text-ui-sm-size);
  color: var(--text-muted);
  font-weight: 400;
  line-height: 1.5;
}

.text-ui-md {
  font-family: var(--font-family-sans);
  font-size: var(--text-ui-md-size);
  color: var(--text-foreground);
  font-weight: 500;
  line-height: 1.45;
}

.text-caption {
  font-family: var(--font-family-sans);
  font-size: var(--text-ui-xs-size);
  color: var(--text-muted);
  font-weight: 500;
  line-height: 1.45;
}

/* ---- CSS Variables ---- */
:root {
  --cb-font: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  --cb-accent: #4f46e5;
  --cb-accent-hover: #4338ca;
  --cb-success: #10b981;
  --cb-danger: #ef4444;
  --cb-text: #1f2937;
  --cb-text-muted: #6b7280;
  --cb-border: #e5e7eb;
  --cb-bg: #ffffff;
  --cb-bg-overlay: rgba(0, 0, 0, 0.4);
  --cb-shadow: 0 -4px 20px rgba(0, 0, 0, 0.1);
  --cb-radius: 10px;
}

/* ---- Bottom Bar ---- */
.cb-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--cb-bg);
  border-top: 1px solid var(--cb-border);
  box-shadow: var(--cb-shadow);
  z-index: 9999;
  font-family: var(--cb-font);
  font-size: 13px;
  line-height: 1.5;
  color: var(--cb-text);
  transform: translateY(120%);
  transition: transform 0.35s ease;
}

.cb-bar.cb-show {
  transform: translateY(0);
}

.cb-bar .cb-bar-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 12px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.cb-bar .cb-bar-text {
  flex: 1;
  min-width: 0;
}

.cb-bar .cb-bar-text p {
  margin: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.cb-bar .cb-bar-text a {
  color: var(--cb-accent);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.cb-bar .cb-bar-text a:hover {
  color: var(--cb-accent-hover);
}

.cb-bar .cb-bar-actions {
  display: flex;
  gap: 8px;
  flex-shrink: 0;
}

/* ---- Buttons ---- */
.cb-btn {
  padding: 8px 16px;
  border-radius: 6px;
  font-family: var(--cb-font);
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  border: 1.5px solid transparent;
  transition: all 0.2s ease;
  line-height: 1.4;
  white-space: nowrap;
}

.cb-btn:focus {
  outline: 2px solid var(--cb-accent);
  outline-offset: 2px;
}

.cb-btn-primary {
  background: var(--cb-accent);
  color: #fff;
  border-color: var(--cb-accent);
}

.cb-btn-primary:hover {
  background: var(--cb-accent-hover);
  border-color: var(--cb-accent-hover);
}

.cb-btn-secondary {
  background: #fff;
  color: var(--cb-text);
  border-color: var(--cb-border);
}

.cb-btn-secondary:hover {
  background: #f9fafb;
}

.cb-btn-ghost {
  background: transparent;
  color: var(--cb-text-muted);
  border-color: transparent;
  text-decoration: underline;
  padding: 8px 10px;
}

.cb-btn-ghost:hover {
  color: var(--cb-text);
}

/* ---- Detail Panel Overlay ---- */
.cb-panel-overlay {
  position: fixed;
  inset: 0;
  background: var(--cb-bg-overlay);
  z-index: 10000;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s ease, visibility 0.25s ease;
}

.cb-panel-overlay.cb-active {
  opacity: 1;
  visibility: visible;
}

/* ---- Detail Panel ---- */
.cb-panel {
  background: var(--cb-bg);
  border-radius: var(--cb-radius) var(--cb-radius) 0 0;
  box-shadow: 0 -10px 40px rgba(0, 0, 0, 0.15);
  width: 100%;
  max-width: 560px;
  max-height: 80vh;
  display: flex;
  flex-direction: column;
  font-family: var(--cb-font);
  color: var(--cb-text);
  transform: translateY(100%);
  transition: transform 0.3s cubic-bezier(0.32, 0.72, 0, 1);
}

.cb-panel-overlay.cb-active .cb-panel {
  transform: translateY(0);
}

/* Panel Header */
.cb-panel .cb-panel-head {
  padding: 18px 22px 12px;
  border-bottom: 1px solid var(--cb-border);
  flex-shrink: 0;
}

.cb-panel .cb-panel-head h3 {
  margin: 0;
  font-size: 16px;
  font-weight: 700;
}

.cb-panel .cb-panel-head p {
  margin: 4px 0 0;
  font-size: 12px;
  color: var(--cb-text-muted);
}

/* Panel Body */
.cb-panel .cb-panel-body {
  padding: 14px 22px;
  overflow-y: auto;
  flex: 1;
}

.cb-panel .cb-panel-body::-webkit-scrollbar {
  width: 5px;
}

.cb-panel .cb-panel-body::-webkit-scrollbar-thumb {
  background: #d1d5db;
  border-radius: 3px;
}

/* Category Row */
.cb-panel .cb-cat {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid #f3f4f6;
}

.cb-panel .cb-cat:last-child {
  border-bottom: none;
}

.cb-panel .cb-cat-info {
  flex: 1;
  min-width: 0;
}

.cb-panel .cb-cat-title {
  font-size: 13px;
  font-weight: 600;
  margin: 0;
}

.cb-panel .cb-cat-desc {
  font-size: 12px;
  color: var(--cb-text-muted);
  margin: 3px 0 0;
  line-height: 1.45;
}

.cb-panel .cb-cat-tools {
  font-size: 11px;
  color: #9ca3af;
  margin-top: 3px;
  font-style: italic;
}

/* Toggle Switch */
.cb-toggle {
  position: relative;
  display: inline-flex;
  align-items: center;
  cursor: pointer;
  flex-shrink: 0;
  margin-top: 2px;
}

.cb-toggle input {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}

.cb-toggle-track {
  width: 40px;
  height: 22px;
  background: #d1d5db;
  border-radius: 999px;
  position: relative;
  transition: background 0.2s ease;
}

.cb-toggle input:checked+.cb-toggle-track {
  background: var(--cb-success);
}

.cb-toggle input:disabled+.cb-toggle-track {
  opacity: 0.45;
}

.cb-toggle input:focus+.cb-toggle-track {
  box-shadow: 0 0 0 3px rgba(79, 70, 229, 0.25);
}

.cb-toggle-thumb {
  width: 16px;
  height: 16px;
  background: #fff;
  border-radius: 50%;
  position: absolute;
  top: 3px;
  left: 3px;
  transition: transform 0.2s ease;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.cb-toggle input:checked+.cb-toggle-track .cb-toggle-thumb {
  transform: translateX(18px);
}

/* CCPA in panel */
.cb-panel .cb-ccpa-line {
  margin-top: 12px;
  padding: 10px 14px;
  background: #fef9c3;
  border-radius: 6px;
  font-size: 12px;
  color: #854d0e;
}

.cb-panel .cb-ccpa-line a {
  color: #854d0e;
  text-decoration: underline;
  font-weight: 600;
  cursor: pointer;
}

/* Panel Footer */
.cb-panel .cb-panel-foot {
  padding: 14px 22px 18px;
  border-top: 1px solid var(--cb-border);
  display: flex;
  gap: 8px;
  justify-content: flex-end;
  flex-shrink: 0;
}

/* Floating Button */
.cb-float {
  position: fixed;
  bottom: 16px;
  right: 16px;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--cb-accent);
  color: #fff;
  border: none;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9998;
  transition: transform 0.2s ease, background 0.2s ease;
}

.cb-float:hover {
  transform: scale(1.1);
  background: var(--cb-accent-hover);
}

.cb-float:focus {
  outline: 2px solid var(--cb-accent);
  outline-offset: 2px;
}

.cb-float svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
}

/* ---- Mobile ---- */
@media (max-width: 640px) {
  .cb-bar .cb-bar-inner {
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
    padding: 12px 14px;
  }

  .cb-bar .cb-bar-text p {
    white-space: normal;
    font-size: 12px;
  }

  .cb-bar .cb-bar-actions {
    justify-content: stretch;
  }

  .cb-bar .cb-bar-actions .cb-btn {
    flex: 1;
    text-align: center;
  }

  .cb-panel {
    max-width: 100%;
    max-height: 85vh;
  }

  .cb-panel .cb-panel-foot {
    flex-direction: column;
  }

  .cb-panel .cb-panel-foot .cb-btn {
    width: 100%;
    text-align: center;
  }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {

  .cb-bar,
  .cb-panel,
  .cb-panel-overlay,
  .cb-toggle-track,
  .cb-toggle-thumb,
  .cb-btn {
    transition: none !important;
  }
}

.cb-panel-overlay:not(.cb-active) {
  pointer-events: none;
}

.cb-panel-overlay:not(.cb-active) .cb-panel {
  transform: translateY(100%);
}

.early-access-modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 16px;
  background: rgba(0, 0, 0, 0.6);
}

.early-access-modal-overlay.is-open {
  display: flex;
}

.early-access-modal {
  width: min(440px, 96vw);
  max-height: 90vh;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.25);
  opacity: 0;
  transform: translateY(10px) scale(0.995);
  transition: opacity 320ms ease, transform 320ms cubic-bezier(0.16, 1, 0.3, 1);
}

.early-access-modal-overlay.is-open .early-access-modal {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.early-access-modal-shell {
  position: relative;
  display: flex;
  flex: 1;
  flex-direction: column;
  overflow: hidden;
}

.early-access-modal-scroll {
  flex: 1;
  overflow-y: auto;
  scrollbar-width: none;
}

.early-access-modal-scroll::-webkit-scrollbar {
  width: 0;
}

.early-access-modal-body {
  padding: clamp(1.25rem, 4vw, 2rem) clamp(1rem, 4vw, 2.5rem);
  text-align: left;
}

.early-access-close {
  position: absolute;
  top: 16px;
  right: 16px;
  z-index: 10;
  display: flex;
  width: 36px;
  height: 36px;
  align-items: center;
  justify-content: center;
  border: 1px solid #e5e7eb;
  border-radius: 999px;
  background: #fff;
  color: #4b5563;
  cursor: pointer;
}

.early-access-modal h2,
.early-access-modal h3 {
  margin: 0 44px 12px 0;
  font-family: var(--font-family-serif, Georgia, serif);
  font-size: 1.5rem;
  font-weight: 400;
  line-height: 1.3;
  color: #0a0a0a;
}

.early-access-modal p {
  margin: 0 0 24px;
  color: #525252;
  font-size: 14px;
  line-height: 1.6;
}

.early-access-modal label {
  display: block;
  margin-bottom: 4px;
  color: #374151;
  font-size: 12px;
  font-weight: 600;
}

.early-access-modal input:not([type="checkbox"]) {
  width: 100%;
  height: 44px;
  margin: 4px 0 20px;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  background: #fff;
  color: #111827;
  font-size: 15px;
  outline: none;
  padding: 0 16px;
  box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.04);
}

.early-access-modal input:not([type="checkbox"]):first-of-type {
  height: 48px;
  border: 2px solid #d1d5db;
  border-radius: 12px;
  box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.06);
}

.early-access-modal input:not([type="checkbox"]):focus {
  border-color: #9ca3af;
}

.early-access-modal [data-ea-primary] {
  width: 100%;
  height: 52px;
  margin-top: 24px;
  border: none;
  border-radius: 999px;
  background: #000;
  color: #fff;
  font-weight: 500;
  cursor: pointer;
}

.early-access-modal [data-ea-secondary] {
  width: 100%;
  margin-top: 12px;
  border: 0;
  background: transparent;
  color: #4b5563;
  font-size: 14px;
  cursor: pointer;
}

.early-access-modal [data-ea-error] {
  margin-top: 12px;
  color: #dc2626;
  font-size: 14px;
}

.early-access-modal [data-ea-footnote] {
  margin-top: 20px;
  color: #9ca3af;
  text-align: center;
  font-size: 12px;
}

.early-access-modal [data-ea-consent] {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin: 0 0 12px;
  padding: 12px 14px;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  background: #f9fafb;
  color: #374151;
  font-size: 14px;
  line-height: 1.55;
  cursor: pointer;
}

.early-access-modal [data-ea-consent] input {
  width: 18px;
  height: 18px;
  min-width: 18px;
  margin-top: 1px;
  accent-color: #4f46e5;
  cursor: pointer;
}

.early-access-modal [data-ea-otp-row] {
  display: flex;
  gap: 10px;
  justify-content: space-between;
  max-width: 100%;
  margin-bottom: 16px;
}

.early-access-modal [data-ea-otp-box] {
  min-width: 0;
  max-width: 56px;
  height: 56px;
  flex: 1;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  text-align: center;
  font-size: 18px;
  font-weight: 700;
}

.early-access-modal [data-ea-success-icon] {
  display: flex;
  width: 64px;
  height: 64px;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  border-radius: 999px;
  background: #f0fdf4;
}

@media (max-width: 480px) {
  .early-access-modal [data-ea-otp-row] {
    gap: 8px;
  }

  .early-access-modal [data-ea-otp-box] {
    height: 48px;
  }
}

@media (min-width: 1024px) {
  .toc-scroll-list {
    scrollbar-gutter: stable;
  }

  .toc-scroll-list::-webkit-scrollbar {
    width: 10px;
  }

  .toc-scroll-list::-webkit-scrollbar-thumb {
    border-radius: 999px;
    background: rgba(10, 10, 10, 0.35);
  }

  .toc-scroll-list::-webkit-scrollbar-track {
    background: rgba(10, 10, 10, 0.04);
  }
}

/* Blog article layout */
.customer-success-hero {
  position: relative;
  padding-top: 7rem;
  /* border-bottom: 1px solid #5a3fff; */
  background: #fff;
}

.customer-success-hero-inner {
  width: min(100% - 2rem, 1640px);
  margin: 0 auto;
}

.customer-success-hero-card {
  max-width: 1620px;
  margin: 5rem auto 0;
  padding: 3.125rem 10rem 1.875rem;
  border-radius: 1.75rem;
  background: #000;
  color: #fff;
  text-align: center;
}

.customer-success-hero-title {
  max-width: 1250px;
  margin: 0 auto;
  font-family: 'Roboto', Arial, sans-serif;
  font-size: clamp(2.25rem, 3.25vw, 3rem);
  font-weight: 700;
  line-height: 1.2917;
  letter-spacing: -0.025em;
  color: #fff;
}

.customer-success-hero-meta {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 1.25rem;
  font-family: 'Nunito Sans', Arial, sans-serif;
  font-size: 1.125rem;
  line-height: 3.3125rem;
}

.customer-success-reading-time {
  margin: 2.5rem auto 3.75rem;
  font-family: 'Nunito Sans', Arial, sans-serif;
  text-align: center;
  font-size: 1.35rem;
  text-decoration: underline;
}

main article {
  max-width: 860px;
  margin: 0 auto;
  font-family: var(--blog-post-font-family);
  font-size: 18px;
  line-height: 30px;
}

main article > .article-section,
main article > aside {
  margin-top: 3.5rem;
  scroll-margin-top: 7rem;
}

main article > .article-section:first-child {
  margin-top: 0;
}

main article > .article-section + .article-section,
main article > .article-section + aside,
main article > aside + .article-section {
  margin-top: 3.75rem;
}

main article .article-section .article-section {
  margin-top: 3.25rem;
  scroll-margin-top: 7rem;
}

main article .article-section .article-section + .article-section {
  margin-top: 3.75rem;
}

main article h2 {
  margin: 3rem 0 1.25rem;
  color: #000000;
  font-family: var(--blog-post-font-family);
  font-size: 1.875rem;
  font-weight: 700;
  line-height: 1.2;
}

main article h3,
main article h4 {
  margin: 2.75rem 0 1rem;
  color: #000000;
  font-family: var(--blog-post-font-family);
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.45;
}

main article p {
  margin: 1.25rem 0 0;
  color: #000000;
  line-height: 2rem;
}

main article p:first-child {
  margin-top: 0;
}

main article .article-section > h2:first-child,
main article .article-section > h3:first-child,
main article .article-section > h4:first-child {
  margin-top: 0;
}

main article p + h2,
main article ul + h2,
main article ol + h2,
main article img + h2,
main article div + h2,
main article table + h2 {
  margin-top: 3.5rem;
}

main article p + h3,
main article ul + h3,
main article ol + h3,
main article img + h3,
main article div + h3,
main article table + h3 {
  margin-top: 2.75rem;
}

main article a {
  color: #1265ff;
  text-decoration: none;
}

main article a:hover,
main article a:focus-visible {
  color: #0a0a0a;
  text-decoration: underline;
  text-underline-offset: 0.18em;
}

main article strong {
  font-weight: 700;
}

main article em {
  font-style: italic;
}

main article ul,
main article ol {
  margin: 1.25rem 0 0;
  padding-left: 1.5rem;
  list-style: inherit;
}

main article li {
  color: #000000;
  line-height: 2rem;
}

main article li + li {
  margin-top: 0.75rem;
}

main article blockquote {
  margin: 2rem 0;
  border-left: 4px solid #e0b84d;
  background: #faf8f5;
  padding: 1.25rem 1.5rem;
  color: #0a0a0a;
}

main article code {
  border-radius: 0.35rem;
  background: #f4f4f5;
  color: #0a0a0a;
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", monospace;
  font-size: 0.9em;
  padding: 0.12rem 0.32rem;
}

main article pre {
  margin: 1.5rem 0 0;
  overflow-x: auto;
  border: 1px solid #e8e8e8;
  border-radius: 0.75rem;
  background: #0a0a0a;
  color: #ffffff;
  padding: 1rem;
}

main article pre code {
  background: transparent;
  color: inherit;
  padding: 0;
}

main article img {
  margin: 1.25rem 0 0;
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: 0.5rem;
  background: #ffffff;
  width: 100%;
  height: auto;
  object-fit: cover;
}

main article [data-image-caption] {
  margin: 0;
  color: var(--text-foreground);
  font-size: 0.875rem;
  font-style: italic;
  padding: 0.75rem 1rem;
  text-align: center;
}

main article div:has(> table) {
  margin-top: 1.75rem;
  overflow-x: auto;
  border: 1px solid #d6d6d6;
  border-radius: 0.25rem 0 0 0.25rem;
}

main article table {
  width: 100%;
  min-width: 760px;
  border-collapse: collapse;
  text-align: center;
  font-size: 1rem;
}

main article thead {
  background: #000000;
  color: #ffffff;
}

main article th {
  border-right: 1px solid rgba(255, 255, 255, 0.2);
  padding: 1rem;
}

main article th:last-child {
  border-right: 0;
}

main article td {
  border-top: 1px solid #d6d6d6;
  border-right: 1px solid #d6d6d6;
  color: #525252;
  padding: 0.875rem 1rem;
}

main article td:last-child {
  border-right: 0;
}

main article tbody tr:nth-child(odd) {
  background: #faf8f5;
}

main article tbody tr:nth-child(even) {
  background: #ffffff;
}

main article tbody td:first-child {
  color: #000000;
  font-weight: 700;
}

.fade-panel {
  opacity: 0;
  transform: translateY(12px);
  pointer-events: none;
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.fade-panel.show {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.toc-sticky a {
  border-radius: .75rem;
  padding: .55rem .65rem;
  transition: background-color .2s ease, color .2s ease;
}

.toc-sticky a:hover {
  background: #faf8f5;
  color: #0a0a0a;
}

.mobile-toc {
  display: block;
}

.author-description {
  line-height: 1.85;
}

.article-callout {
  margin: 30px 0;
  padding: 24px 28px;
  border: 1px solid #d4a574;
  border-radius: 20px;
  background: #faf8f5;
  color: #0a0a0a;
}

.article-callout h3 {
  margin: 0 0 10px;
  padding: 0 !important;
  color: #0a0a0a;
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 1.25rem;
}

.article-callout p {
  margin: 0 !important;
  color: #525252;
}

@media (max-width: 767px) {
  main article > .article-section,
  main article > aside,
  main article > .article-section + .article-section,
  main article > .article-section + aside,
  main article > aside + .article-section,
  main article .article-section .article-section,
  main article .article-section .article-section + .article-section {
    margin-top: 2.75rem;
  }

  main article p + h2,
  main article ul + h2,
  main article ol + h2,
  main article img + h2,
  main article div + h2,
  main article table + h2 {
    margin-top: 3rem;
  }

  main article p + h3,
  main article ul + h3,
  main article ol + h3,
  main article img + h3,
  main article div + h3,
  main article table + h3 {
    margin-top: 2.5rem;
  }

  .customer-success-hero-card {
    margin-top: 2.5rem;
    padding: 3rem 1.25rem 2rem;
    border-radius: 1.5rem;
  }

  .customer-success-hero-title br {
    display: none;
  }

  .customer-success-hero-meta {
    grid-template-columns: 1fr;
    gap: 1rem;
    margin-top: 2rem;
  }

  .customer-success-reading-time {
    margin: 2.5rem auto;
    font-size: 1rem;
  }
}

@media (min-width: 768px) and (max-width: 1279px) {
  .mobile-toc {
    max-width: 860px;
    margin: 0 auto 2rem;
  }
}

@media (min-width: 1280px) {
  .mobile-toc {
    display: none;
  }
}

/* ========================================================================== 
   CUSTOMER SUCCESS SOFTWARE ARTICLE PAGE

/* ========================================================================== 
   SHAREABLE ARTICLE — RESPONSIVE SAFETY LAYER
   Keeps the standalone page usable without a framework runtime.
   ========================================================================== */
html,
body {
  max-width: 100%;
  overflow-x: hidden;
}

img,
svg,
video {
  max-width: 100%;
}

.standalone-mobile-nav {
  display: none;
}

@media (max-width: 767px) {
  .site-header>div {
    min-height: 64px;
  }

  .site-header div:has(> [data-slot="sheet-trigger"]) {
    display: flex !important;
  }

  .site-header [data-slot="sheet-trigger"] {
    display: inline-flex !important;
    width: 40px;
    height: 40px;
  }

  .standalone-mobile-nav {
    position: fixed;
    z-index: 60;
    top: 64px;
    right: 12px;
    left: 12px;
    display: none;
    max-height: calc(100vh - 80px);
    overflow-y: auto;
    padding: 12px;
    border: 1px solid #e8e8e8;
    border-radius: 16px;
    background: #fff;
    box-shadow: 0 18px 45px rgba(0, 0, 0, .16);
  }

  .standalone-mobile-nav.is-open {
    display: grid;
  }

  .standalone-mobile-nav a {
    padding: 12px 14px;
    border-radius: 10px;
    color: #000;
    font-weight: 600;
    text-decoration: none;
  }

  .standalone-mobile-nav a:hover,
  .standalone-mobile-nav a:focus-visible {
    background: #faf8f5;
  }

  main header {
    padding-right: 16px !important;
    padding-left: 16px !important;
  }

  .customer-success-hero-title {
    overflow-wrap: anywhere;
    padding: 40px 20px !important;
    border-radius: 22px !important;
  }

  .customer-success-hero-title {
    font-size: clamp(2rem, 10vw, 2.65rem) !important;
  }

  main article {
    width: 100%;
    min-width: 0;
    font-size: 16px !important;
    line-height: 1.75 !important;
  }

  main article h2 {
    overflow-wrap: anywhere;
    font-size: clamp(1.75rem, 8vw, 2.25rem) !important;
  }

  main article .article-section {
    scroll-margin-top: 84px;
  }

  main article .overflow-x-auto {
    width: 100%;
    max-width: calc(100vw - 32px);
    overscroll-behavior-inline: contain;
    -webkit-overflow-scrolling: touch;
  }

  main article table {
    font-size: 14px;
  }

  main article th,
  main article td {
    padding: 10px 12px !important;
  }

  details nav[aria-label="Mobile article table of contents"] {
    max-height: 60vh;
  }

  .article-section[aria-labelledby="related-posts-heading"] a {
    overflow-wrap: anywhere;
  }
}

@media (min-width: 768px) {
  .standalone-mobile-nav {
    display: none !important;
  }
}

/* ========================================================================== 
   CUSTOMER SUCCESS SOFTWARE ARTICLE — PAGE-SPECIFIC STYLES
   Bundled after shared site CSS so this folder can be sent independently.
   ========================================================================== */

/* Article-bounded sticky sidebars for the standalone customer success post. */
.page-scroll {
  scroll-behavior: smooth;
}

.share-article-page {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.share-article-main {
  min-height: 100vh;
  background: #ffffff;
  color: #000000;
}

.site-header {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 50;
  width: 100%;
  border-bottom: 1px solid rgba(232, 232, 232, 0.4);
  background: rgba(255, 255, 255, 0.5);
  backdrop-filter: blur(12px);
  transition: background-color 0.2s ease, border-color 0.2s ease;
}

.site-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: 80rem;
  margin: 0 auto;
  padding: 0.75rem 1rem;
}

.site-logo-link {
  display: flex;
  flex-shrink: 0;
  align-items: center;
}

.site-logo {
  display: block;
  width: auto;
  height: 2rem;
  margin-top: -1rem;
  margin-bottom: -1rem;
}

.site-nav {
  display: none;
  align-items: center;
  gap: 1.75rem;
}

.site-nav-link {
  color: #737373;
  font-family: var(--font-family-sans), Arial, sans-serif;
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1.45;
  text-decoration: none;
  transition: color 0.2s ease;
}

.site-nav-link:hover,
.site-nav-link:focus-visible {
  color: #0a0a0a;
}

.site-header-actions {
  display: none;
  align-items: center;
  gap: 0.75rem;
}

.site-access-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.75rem;
  border: 0;
  border-radius: 999px;
  background: #0a0a0a;
  color: #ffffff;
  cursor: pointer;
  font-family: var(--font-family-sans), Arial, sans-serif;
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1;
  padding: 0.5rem 1.5rem;
  white-space: nowrap;
  transition: transform 0.15s ease-in-out, box-shadow 0.15s ease-in-out, background-color 0.15s ease-in-out;
}

.site-access-button:hover,
.site-access-button:focus-visible {
  background: #1a1a1a;
  box-shadow: 0 10px 15px rgba(10, 10, 10, 0.12);
  transform: translateY(-0.25rem);
}

.site-mobile-toggle-wrap {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.site-mobile-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  border: 1px solid #e8e8e8;
  border-radius: 999px;
  background: #ffffff;
  color: #0a0a0a;
  cursor: pointer;
  transition: background-color 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
}

.site-mobile-toggle:hover,
.site-mobile-toggle:focus-visible {
  background: #f5f5f5;
  color: #0a0a0a;
  box-shadow: 0 1px 2px rgba(10, 10, 10, 0.08);
}

.site-mobile-toggle-icon {
  width: 1rem;
  height: 1rem;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* Semantic replacements for exported utility classes in the standalone article. */
.toc-heading {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.75rem;
  padding: 0 0.5rem;
  font-weight: 700;
}

.toc-heading-icon {
  width: 1rem;
  height: 1rem;
  color: #d4a574;
}

.toc-scroll-list {
  max-height: calc(100vh - 12rem);
  overflow-y: auto;
  padding-right: 0.25rem;
}

.toc-link {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  border-radius: 0.75rem;
  padding: 0.625rem 0.75rem;
  color: #525252;
  text-decoration: none;
}

.toc-link:hover,
.toc-link:focus-visible {
  background: #faf8f5;
}

.toc-link-active {
  background: #faf8f5;
  color: #000000;
  font-weight: 700;
}

.toc-link-sub {
  padding-top: 0.375rem;
  padding-bottom: 0.375rem;
}

.toc-dot {
  flex: 0 0 auto;
  width: 0.5rem;
  height: 0.5rem;
  margin-top: 0.375rem;
  border-radius: 999px;
  background: #d6d6d6;
}

.toc-dot-active {
  background: #d4a574;
}

.toc-link-text {
  font-size: 0.875rem;
  line-height: 1.25rem;
}

.toc-sublist {
  margin-top: 0.25rem;
  margin-left: 1.25rem;
}

.toc-sublist>*+* {
  margin-top: 0.25rem;
}

.mobile-toc-list {
  max-height: 20rem;
  margin-top: 1rem;
  overflow-y: auto;
}

.mobile-toc-panel {
  display: block;
  margin-bottom: 2rem;
  border: 1px solid #e8e8e8;
  border-radius: 1rem;
  background: #ffffff;
  padding: 1rem;
  box-shadow: 0 1px 2px rgba(10, 10, 10, 0.05);
}

.mobile-toc-summary {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  cursor: pointer;
  font-weight: 700;
  list-style: none;
}

.mobile-toc-summary::-webkit-details-marker {
  display: none;
}

.blog-gold-card {
  scroll-margin-top: 5rem;
  border: 1px solid #e8c272;
  border-radius: 24px;
  background: #e8c272;
  color: #ffffff;
  padding: 1.75rem;
  overflow: hidden;
}

.blog-recommendation-card {
  margin: 2.75rem 0;
  background: #f7f7f7;
  padding: 2.25rem 3rem;
}

.blog-recommendation-card h2 {
  margin: 0 0 1.5rem;
  color: #0a0a0a;
  font-family: var(--font-family-sans);
  font-size: 1.375rem;
  font-weight: 700;
  line-height: 1.3;
}

.blog-recommendation-card ul {
  margin: 0;
  padding-left: 2.75rem;
}

.blog-recommendation-card li + li {
  margin-top: 0.45rem;
}

.blog-recommendation-card a {
  color: #1265ff;
  font-size: 1.25rem;
  line-height: 1.5;
  text-decoration: none;
}

.blog-recommendation-card a:hover,
.blog-recommendation-card a:focus-visible {
  color: #0a0a0a;
  text-decoration: underline;
  text-underline-offset: 0.18em;
}

@media (max-width: 639px) {
  .blog-recommendation-card {
    margin: 2rem 0;
    padding: 1.5rem;
  }

  .blog-recommendation-card h2 {
    font-size: 1.2rem;
  }

  .blog-recommendation-card ul {
    padding-left: 1.5rem;
  }

  .blog-recommendation-card a {
    font-size: 1rem;
  }
}

.blog-highlight-panel {
  margin-top: 2rem;
  padding: 1.25rem;
  background: #d4af37;
}

.sidebar-stack {
  height: 100%;
}

.sidebar-stack>*+* {
  margin-top: 1.75rem;
}

.sidebar-help-card {
  position: sticky;
  top: 7rem;
  border: 1px solid #e8e8e8;
  border-radius: 1rem;
  background: #ffffff;
  box-shadow: 0 4px 6px rgba(10, 10, 10, 0.08);
  padding: 1.5rem;
  text-align: center;
}

.sidebar-help-heading {
  color: #000000;
  font-size: 1.5rem;
  font-weight: 400;
  line-height: 1.2;
}

.accent-underlined-label {
  color: #d4a574;
  font-weight: 700;
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 4px;
}

.sidebar-help-copy {
  margin-top: 1.5rem;
  color: #525252;
  font-size: 1rem;
  line-height: 1.75;
}

.sidebar-help-actions {
  margin-top: 1.5rem;
  border-radius: 0.75rem;
  background: #000000;
  padding: 0.75rem;
}

.sidebar-help-actions>*+* {
  margin-top: 0.75rem;
}

.sidebar-help-link {
  display: block;
  border: 1px solid #d4a574;
  color: #ffffff;
  font-size: 0.875rem;
  font-weight: 700;
  padding: 0.5rem 0.75rem;
  text-decoration: none;
  transition: background-color 0.2s ease, color 0.2s ease;
}

.sidebar-help-link:hover,
.sidebar-help-link:focus-visible {
  background: #d4a574;
  color: #000000;
}

.author-wrap,
.related-section,
.footer-inner {
  width: 100%;
  max-width: 80rem;
  margin: 0 auto;
  padding-right: 1rem;
  padding-left: 1rem;
}

.author-wrap {
  padding-bottom: 5rem;
}

.author-card {
  margin-top: 3.5rem;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(212, 175, 55, 0.2);
  border-radius: 2rem;
  background:
    radial-gradient(circle at 86% 18%, rgba(212, 175, 55, 0.28) 0%, rgba(212, 175, 55, 0.12) 22%, rgba(18, 18, 18, 0.96) 58%, #050505 100%);
  background-color: #050505;
  box-shadow: 0 35px 80px rgba(0, 0, 0, 0.28), 0 8px 30px rgba(212, 175, 55, 0.06);
  padding: 1.5rem;
}

.author-card::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 36px 36px;
}

.author-card::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(circle at 78% 72%, rgba(212, 175, 55, 0.16), transparent 42%);
}

.author-layout {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.author-photo-frame {
  width: 100%;
  max-width: 24rem;
  margin: 0 auto;
  overflow: hidden;
  border: 6px solid rgba(255, 255, 255, 0.92);
  border-radius: 1.25rem;
  background: #f8f8fb;
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.32);
}

.media-cover-full {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.author-content {
  min-width: 0;
  flex: 1;
}

.author-heading-row {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.author-heading-row h2 {
  margin: 0;
  color: #ffffff;
  font-size: clamp(1.75rem, 2.4vw, 2.35rem);
  line-height: 1.15;
}

.author-name {
  margin: 1.25rem 0 0;
  color: #ffffff;
  font-size: 1.125rem;
  font-weight: 700;
}

.author-role {
  margin: 0.65rem 0 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 1rem;
}

.author-socials {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: #ffffff;
}

.author-social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.75rem;
  height: 2.75rem;
  border: 1px solid rgba(212, 175, 55, 0.28);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: inherit;
  text-decoration: none;
  transition: color 0.2s ease, border-color 0.2s ease, background-color 0.2s ease, transform 0.2s ease;
}

.author-social-link:hover,
.author-social-link:focus-visible {
  border-color: #e0b84d;
  background: #e0b84d;
  color: #000000;
  transform: translateY(-2px);
}

.author-social-icon {
  width: 1.15rem;
  height: 1.15rem;
}

.author-bio {
  max-width: 54rem;
  margin: 1.75rem 0 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 1rem;
  line-height: 1.95rem;
}

.related-section {
  margin-bottom: 6rem;
}

.section-title-row {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.section-title {
  flex-shrink: 0;
  color: #000000;
  font-size: 1.875rem;
  font-weight: 700;
}

.section-title-rule {
  flex: 1;
  height: 1px;
  background: #000000;
}

.related-grid {
  display: grid;
  gap: 2rem 3rem;
  margin-top: 3rem;
}

.related-link {
  color: #525252;
  line-height: 1.75;
  text-decoration: none;
  transition: color 0.2s ease;
}

.related-link:hover,
.related-link:focus-visible {
  color: #000000;
}

.related-link-text {
  background-image: linear-gradient(#d4a574, #d4a574);
  background-position: left bottom;
  background-repeat: no-repeat;
  background-size: 0 1px;
  transition: background-size 0.3s ease;
}

.related-link:hover .related-link-text,
.related-link:focus-visible .related-link-text {
  background-size: 100% 1px;
}

.certification-grid {
  display: grid;
  grid-template-columns: 1fr;
  align-items: center;
  justify-items: center;
  gap: 3rem;
}

.certification-item,
.certification-item-wide {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 9rem;
}

.certification-logo {
  max-width: 100%;
  max-height: 8rem;
  object-fit: contain;
}

.site-footer {
  border-top: 1px solid #e8e8e8;
  background: rgba(255, 255, 255, 0.6);
  padding-top: 4rem;
  padding-bottom: 0;
}

.footer-top {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 2rem;
  margin-bottom: 3.5rem;
}

.footer-brand {
  max-width: 20rem;
}

.footer-logo-link {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.75rem;
  text-decoration: none;
}

.footer-logo-icon {
  width: 1.5rem;
  height: 1.5rem;
}

.footer-logo-text {
  color: #0a0a0a;
  font-size: 0.875rem;
  font-weight: 700;
}

.footer-description {
  color: #9a9a9a;
  font-size: 0.8125rem;
  line-height: 1.5;
}

.footer-actions {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 0.75rem;
}

.footer-secondary-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.75rem;
  border: 1px solid #e8e8e8;
  border-radius: 999px;
  color: #525252;
  font-size: 0.8125rem;
  font-weight: 600;
  padding: 0 1.5rem;
  text-decoration: none;
  transition: background-color 0.2s ease;
}

.footer-secondary-link:hover,
.footer-secondary-link:focus-visible {
  background: #f5f5f5;
}

.footer-links-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 2rem 1.5rem;
  margin-bottom: 3.5rem;
}

.footer-column-title {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  flex-wrap: wrap;
  margin-bottom: 1rem;
  color: #000000;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.25;
}

.footer-column-links {
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
}

.footer-link {
  color: var(--text-muted);
  font-size: 0.8125rem;
  line-height: 1.35;
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-link:hover,
.footer-link:focus-visible {
  color: #0a0a0a;
}

.footer-bottom {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  border-top: 1px solid #e8e8e8;
  padding: 1.25rem 0;
}

.footer-caption,
.footer-legal-links {
  color: var(--text-muted);
  font-size: 0.6875rem;
  line-height: 1.45;
}

.footer-legal-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.25rem;
}

.footer-legal-link {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-legal-link:hover,
.footer-legal-link:focus-visible {
  color: #0a0a0a;
}

.footer-wordmark-wrap {
  overflow: hidden;
  padding: 1rem 0;
}

.footer-wordmark {
  margin: 0;
  color: rgba(0, 0, 0, 0.3);
  font-family: var(--font-family-serif), Georgia, serif;
  font-size: clamp(60px, 14vw, 180px);
  font-weight: 400;
  line-height: 1;
  text-align: center;
  user-select: none;
}

@media (min-width: 640px) {
  .blog-gold-card {
    padding: 2rem;
  }

  main article h2,
  .section-title {
    font-size: 2.25rem;
  }

  main article table {
    font-size: 1rem;
  }

  main article [data-image-caption] {
    padding-right: 1.5rem;
    padding-left: 1.5rem;
  }

  .author-wrap,
  .related-section,
  .footer-inner {
    padding-right: 1.5rem;
    padding-left: 1.5rem;
  }

  .author-card {
    padding: 2rem;
  }

  .author-heading-row {
    flex-direction: row;
    align-items: flex-start;
    justify-content: space-between;
  }

  .author-bio {
    font-size: 1rem;
    line-height: 2rem;
  }

  .related-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .certification-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .certification-logo {
    max-width: 300px;
  }

  .footer-actions {
    flex-direction: row;
    align-items: flex-start;
  }

  .footer-links-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 2rem;
  }
}

@media (min-width: 768px) {

  .footer-top,
  .footer-bottom {
    flex-direction: row;
  }

  .footer-links-grid {
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 2.5rem 2rem;
  }
}

@media (min-width: 1024px) {

  .author-wrap,
  .related-section {
    padding-right: 2rem;
    padding-left: 2rem;
  }

  .author-card {
    padding: 3rem;
  }

  .author-layout {
    flex-direction: row;
    align-items: flex-start;
    gap: 3.25rem;
  }

  .author-photo-frame {
    width: 16.5rem;
    max-width: none;
    margin: 0;
    flex-shrink: 0;
  }

  .related-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    margin-top: 4rem;
    gap: 2.5rem 3rem;
  }

  .certification-grid {
    grid-template-columns: repeat(6, minmax(0, 1fr));
  }

  .certification-item {
    grid-column: span 2;
  }

  .certification-item-wide {
    grid-column: span 3;
  }
}


.customer-success-back-link {
  color: #d4a574;
  font-size: 0.875rem;
  font-weight: 700;
  text-decoration: none;
  transition: color 0.2s ease;
}

.customer-success-back-link:hover,
.customer-success-back-link:focus-visible {
  color: #000000;
}

@media (min-width: 640px) {
  .site-header-inner {
    padding: 1rem 1.5rem;
  }

  .site-logo {
    height: 2.5rem;
    margin-top: -1.5rem;
    margin-bottom: -1.5rem;
  }

  .site-header-actions {
    display: flex;
  }

  .site-mobile-toggle-wrap {
    display: none;
  }
}

@media (min-width: 768px) {
  .site-nav {
    display: flex;
  }
}

.blog-content-layout {
  display: grid;
  align-items: start;
  gap: 3rem;
  width: 100%;
  /*max-width: 1540px; */
  margin: 0 auto;
  padding: 0 1rem 5rem;
  position: relative !important;
  overflow: visible !important;
  transform: none !important;
}

.blog-content-layout .toc-sticky,
.blog-content-layout .sidebar-sticky {
  align-self: start !important;
  position: sticky !important;
  top: 7rem;
  z-index: 20;
  width: auto;
  height: auto !important;
  max-height: none;
  overflow: visible !important;
  overscroll-behavior: contain;
  opacity: 1 !important;
  pointer-events: auto !important;
  transform: none !important;
  translate: none !important;
}

.toc-sticky {
  display: none;
  border: 1px solid #e8e8e8;
  border-radius: 1rem;
  background: #ffffff;
  box-shadow: 0 1px 2px rgba(10, 10, 10, 0.05);
  padding: 1rem;
}

.sidebar-sticky {
  display: none;
}

.blog-content-layout .toc-sticky {
  left: auto;
}

.blog-content-layout .sidebar-sticky {
  right: auto;
  transition-delay: 150ms;
}

.blog-content-layout .toc-sticky>div,
.blog-content-layout .toc-sticky>nav,
.blog-content-layout .sidebar-sticky>div {
  max-height: calc(100vh - 8.5rem);
  overflow-y: auto;
  overflow-x: hidden;
  overscroll-behavior: contain;
}

.blog-content-layout .sidebar-sticky .sticky {
  position: static;
  top: auto;
}

@media (min-width: 1280px) {
  .blog-content-layout {
    grid-template-columns: 280px minmax(0, 860px) 280px !important;
    padding-right: 0;
    padding-left: 0;
  }

  .blog-content-layout .toc-sticky,
  .blog-content-layout .sidebar-sticky {
    display: block !important;
  }
}

@media (max-width: 1279px) {
  .blog-content-layout {
    max-width: min(100%, 920px);
    gap: 2rem;
  }

  .blog-content-layout .toc-sticky,
  .blog-content-layout .sidebar-sticky {
    display: none !important;
  }
}

@media (max-width: 767px) {
  .blog-content-layout {
    padding-left: 1rem;
    padding-right: 1rem;
    padding-bottom: 3.5rem;
  }

  .blog-content-layout article {
    font-size: 16px;
    line-height: 1.75;
  }
}

/* ========================================================================== 
   RELIABLE FLOATING ARTICLE SIDEBARS
   Keeps the TOC and right sidebar visible while the reader is inside the
   article, then pins them to the bottom edge of the article layout.
   ========================================================================== */
@media (min-width: 1280px) {
  .blog-content-layout {
    position: relative !important;
    overflow: visible !important;
  }

  .floating-sidebar-slot {
    position: relative;
    align-self: stretch;
    min-width: 0;
    height: 100%;
  }

  .floating-sidebar-slot>.toc-sticky,
  .floating-sidebar-slot>.sidebar-sticky {
    display: block !important;
    width: 100%;
    max-width: 100%;
    margin: 0;
    opacity: 1 !important;
    pointer-events: auto !important;
    transform: none !important;
    transition: none !important;
    z-index: 30;
  }

  .floating-sidebar-slot>.toc-sticky.is-floating,
  .floating-sidebar-slot>.sidebar-sticky.is-floating {
    position: fixed !important;
    top: var(--floating-sidebar-top, 112px) !important;
    right: auto !important;
    bottom: auto !important;
  }

  .floating-sidebar-slot>.toc-sticky.is-at-article-bottom,
  .floating-sidebar-slot>.sidebar-sticky.is-at-article-bottom {
    position: absolute !important;
    top: auto !important;
    right: auto !important;
    bottom: 0 !important;
    left: 0 !important;
  }

  .floating-sidebar-slot>.toc-sticky:not(.is-floating):not(.is-at-article-bottom),
  .floating-sidebar-slot>.sidebar-sticky:not(.is-floating):not(.is-at-article-bottom) {
    position: relative !important;
    top: auto !important;
    left: auto !important;
    right: auto !important;
  }

  .floating-sidebar-slot>.toc-sticky {
    max-height: calc(100vh - 136px);
    overflow: hidden !important;
  }

  .floating-sidebar-slot>.toc-sticky .toc-scroll-list {
    max-height: calc(100vh - 200px) !important;
    overflow-y: auto !important;
    overscroll-behavior: contain;
  }

  .floating-sidebar-slot>.sidebar-sticky {
    max-height: calc(100vh - 136px);
    overflow-y: auto !important;
    overflow-x: hidden !important;
    overscroll-behavior: contain;
    scrollbar-width: thin;
  }

  .floating-sidebar-slot>.sidebar-sticky>div {
    height: auto !important;
    max-height: none !important;
    overflow: visible !important;
  }
}

/* Standalone blog CTA converted from cta-section.tsx. */
.blog-cta-section {
  position: relative;
  overflow: hidden;
  border-top: 1px solid #f5f5f5;
  background: #ffffff;
  padding: 6rem 1.5rem;
}

.blog-cta-glow {
  position: absolute;
  top: 50%;
  border-radius: 999px;
  pointer-events: none;
  transform: translateY(-50%);
  filter: blur(120px);
}

.blog-cta-glow-primary {
  left: 18%;
  width: 500px;
  height: 500px;
  background: rgba(212, 175, 55, 0.05);
}

.blog-cta-glow-secondary {
  right: 18%;
  width: 400px;
  height: 400px;
  background: rgba(191, 149, 63, 0.03);
}

.blog-cta-shell {
  position: relative;
  width: min(100%, 64rem);
  margin: 0 auto;
}

.blog-cta-card {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(212, 175, 55, 0.18);
  border-radius: 32px;
  background:
    radial-gradient(circle at 85% 50%,
      rgba(212, 175, 55, 0.28) 0%,
      rgba(212, 175, 55, 0.12) 18%,
      rgba(18, 18, 18, 0.96) 55%,
      #050505 100%);
  background-color: #050505;
  box-shadow:
    0 35px 80px rgba(0, 0, 0, 0.45),
    0 8px 30px rgba(212, 175, 55, 0.06);
  padding: 3.5rem;
  text-align: left;
  opacity: 0.6;
  transform: perspective(1200px) rotateX(15deg) scale(0.93) translateY(50px);
  transition:
    transform 1.1s cubic-bezier(0.16, 1, 0.3, 1),
    opacity 1.1s ease-out,
    border-color 0.5s ease;
  will-change: transform, opacity;
}

.blog-cta-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 36px 36px;
  pointer-events: none;
}

.blog-cta-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 80% 70%, rgba(212, 175, 55, 0.15), transparent 40%);
  pointer-events: none;
}

.blog-cta-card.is-visible {
  border-color: rgba(212, 175, 55, 0.32);
  opacity: 1;
  transform: perspective(1200px) rotateX(0deg) scale(1) translateY(0);
}

.blog-cta-background {
  position: absolute;
  inset: 0;
  z-index: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  pointer-events: none;
  user-select: none;
}

.blog-cta-wordmark {
  position: absolute;
  margin: 0;
  color: rgba(212, 175, 55, 0.05);
  font-family: var(--font-family-serif), Georgia, serif;
  font-size: 12.5rem;
  line-height: 1;
  letter-spacing: 0;
  text-align: center;
  white-space: nowrap;
}

.blog-cta-logo {
  position: relative;
  display: block;
  width: 600px;
  max-width: 82%;
  height: auto;
  opacity: 0.08;
}

.blog-cta-content {
  position: relative;
  z-index: 1;
  max-width: 48rem;
}

.blog-cta-eyebrow {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin: 0 0 2rem;
  color: #d4af37;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  line-height: 1;
  text-transform: uppercase;
}

.blog-cta-pulse {
  width: 0.375rem;
  height: 0.375rem;
  border-radius: 999px;
  background: #d4af37;
  animation: blog-cta-pulse 2s ease-in-out infinite;
}

.blog-cta-title {
  margin: 0 0 2rem;
  color: #fafaf8;
  font-family: var(--font-family-serif), Georgia, serif;
  font-size: 3.5rem;
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1.08;
}

.blog-cta-list {
  display: grid;
  gap: 1rem;
  margin: 0 0 2.5rem;
  padding: 0;
  list-style: none;
}

.blog-cta-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: #e8e8e8;
  font-size: 0.9375rem;
  font-weight: 600;
  line-height: 1.5;
}

.blog-cta-check {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  width: 1.25rem;
  height: 1.25rem;
  border-radius: 999px;
  background: rgba(212, 175, 55, 0.1);
  color: #d4af37;
}

.blog-cta-check svg {
  width: 0.625rem;
  height: 0.625rem;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 3;
}

.blog-cta-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  border-top: 1px solid rgba(212, 175, 55, 0.15);
  padding-top: 2rem;
}

.blog-cta-meta-title {
  margin: 0 0 0.75rem;
  color: #d4af37;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  line-height: 1;
  text-transform: uppercase;
}

.blog-cta-meta-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1.25rem;
  margin: 0;
  padding: 0;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.8125rem;
  line-height: 1.5;
  list-style: none;
}

.blog-cta-meta {
  min-width: 0;
}

.footer-coming-soon {
  display: inline-flex;
  align-items: center;
  transform: none;
  color: #525252;
  font-size: 0.6875rem;
  font-weight: 700;
  line-height: 1;
  white-space: nowrap;
}

.blog-cta-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  min-height: 2.75rem;
  border: 1px solid rgba(212, 175, 55, 0.2);
  border-radius: 0.5rem;
  background: #e0b84d;
  box-shadow: 0 10px 35px rgba(224, 184, 77, 0.28);
  color: #0a0a0a;
  cursor: pointer;
  font-family: var(--font-family-sans), Arial, sans-serif;
  font-size: 0.875rem;
  font-weight: 700;
  line-height: 1;
  padding: 1rem 2rem;
  text-align: center;
  transition:
    background-color 0.3s ease,
    box-shadow 0.3s ease,
    transform 0.3s ease;
}

.blog-cta-button:hover,
.blog-cta-button:focus-visible {
  background: #e8c15a;
  box-shadow: 0 15px 45px rgba(224, 184, 77, 0.4);
  transform: scale(1.02);
}

.blog-cta-button:focus-visible {
  outline: 3px solid rgba(232, 193, 90, 0.45);
  outline-offset: 3px;
}

.blog-gold-card,
.article-callout {
  border-color: #e0b84d !important;
  background: #e0b84d !important;
  color: #000000 !important;
}

.blog-gold-card h2,
.blog-gold-card p,
.article-callout h3,
.article-callout p {
  color: #000000 !important;
}

.blog-gold-card h2 {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  margin: 0;
  max-width: 100%;
  overflow-wrap: anywhere;
  word-break: normal;
}

.blog-gold-card p {
  margin: 1rem 0 0;
  max-width: 100%;
  overflow-wrap: anywhere;
  word-break: normal;
}

.quick-summary-zap-icon {
  display: inline-block;
  flex: 0 0 auto;
  width: 1.45rem;
  height: 1.45rem;
  color: currentColor;
  vertical-align: -0.15em;
}

@keyframes blog-cta-pulse {

  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: 0.45;
  }
}

@media (max-width: 767px) {
  .blog-cta-section {
    padding: 4rem 1rem;
  }

  .blog-cta-card {
    border-radius: 24px;
    padding: 2rem;
  }

  .blog-cta-wordmark {
    display: none;
  }

  .blog-cta-logo {
    width: 280px;
  }

  .blog-cta-title {
    font-size: 2.625rem;
  }

  .blog-cta-footer {
    align-items: stretch;
    flex-direction: column;
  }

  .blog-cta-button {
    width: 100%;
  }
}

@media (min-width: 768px) and (max-width: 1023px) {
  .blog-cta-card {
    padding: 3rem;
  }

  .blog-cta-title {
    font-size: 3rem;
  }

  .blog-cta-logo {
    width: 480px;
  }
}

@media (prefers-reduced-motion: reduce) {

  .blog-cta-card,
  .blog-cta-button,
  .blog-cta-pulse {
    animation: none;
    transition: none;
  }

  .blog-cta-card {
    opacity: 1;
    transform: none;
  }
}


.blog-gold-card 
{
margin-top:20px;    
}


main article .colytics-table-wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}



/* TOC anchor positioning for plain pasted H2/H3 headings. */
main article h2[id],
main article h3[id] {
  scroll-margin-top: 7rem;
}

/*
 * A normal pasted article can start with an H2/H3/H4 directly.
 * This reproduces the old “first article-section heading” reset.
 */
main article > h2:first-child,
main article > h3:first-child,
main article > h4:first-child {
  margin-top: 0;
}

/*
 * Special blocks still need the same section gap the old wrapper supplied.
 * These are editor helpers/intentional components, not normal pasted content.
 */
main article .blog-gold-card ,.blog-gold-card {
  margin-top: 3.25rem;
}

main article > .blog-gold-card,.blog-gold-card  {
  margin-top: 3.5rem;
}

main article .blog-gold-card + .blog-gold-card ,.blog-gold-card {
  margin-top: 3.75rem;
}

/* Keeps direct recommendation cards at their existing component-defined spacing. */
main article > .blog-recommendation-card {
  scroll-margin-top: 7rem;
}

@media (max-width: 767px) {
  main article h2[id],
  main article h3[id] {
    scroll-margin-top: 84px;
  }

  main article .blog-gold-card,
  main article > .blog-gold-card,
  main article .blog-gold-card + .blog-gold-card ,.blog-gold-card {
    margin-top: 2.75rem;
  }
}



/* Add this after the existing blog single CSS. */

/* Plain pasted table wrapper + existing visual treatment. */
main article .colytics-table-wrap {
  margin-top: 1.75rem;
  overflow-x: auto;
  border: 1px solid #d6d6d6;
  border-radius: 0.25rem 0 0 0.25rem;
  -webkit-overflow-scrolling: touch;
}

/* Keeps the existing gold-card UI when a shortcode contains a list. */
main article .blog-gold-card ul,
main article .blog-gold-card ol {
  margin-top: 1rem;
}

main article .blog-gold-card li {
  color: #000000;
}

/* The source CSS already styles this component; this only fixes its paragraph margin. */
main article .blog-highlight-panel p {
  margin: 0;
}

/* Word/Docs lists must keep their markers even if theme/global CSS resets them. */
main article ul {
  list-style: disc outside;
}

main article ol {
  list-style: decimal outside;
}

main article ul ul {
  list-style-type: circle;
}

main article ol ol {
  list-style-type: lower-alpha;
}

main article .blog-gold-card ul,
main article .article-callout ul,
main article .blog-recommendation-card ul {
  list-style: disc outside;
  padding-left: 1.5rem;
}

/* Pasted JSON/code tables are converted to pre > code and retain their line breaks. */
main article pre {
  margin: 1.5rem 0 0;
  overflow-x: auto;
  border: 1px solid #242424;
  border-radius: 0.75rem;
  background: #111111;
  color: #f8f8f2;
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", monospace;
  font-size: 0.875rem;
  line-height: 1.65;
  tab-size: 2;
  padding: 1.25rem;
  white-space: pre;
}

main article pre code {
  display: block;
  background: transparent;
  color: inherit;
  font: inherit;
  padding: 0;
  white-space: inherit;
}

@media (max-width: 767px) {
  main article pre {
    border-radius: 0.5rem;
    font-size: 0.8125rem;
    padding: 1rem;
  }
}


/* Add this after the existing blog single CSS. */

/* Plain pasted table wrapper + existing visual treatment. */
main article .colytics-table-wrap {
  margin-top: 1.75rem;
  overflow-x: auto;
  border: 1px solid #d6d6d6;
  border-radius: 0.25rem 0 0 0.25rem;
  -webkit-overflow-scrolling: touch;
}

/* Keeps the existing gold-card UI when a shortcode contains a list. */
main article .blog-gold-card ul,
main article .blog-gold-card ol {
  margin-top: 1rem;
}

main article .blog-gold-card li {
  color: #000000;
}

/* The source CSS already styles this component; this only fixes its paragraph margin. */
main article .blog-highlight-panel p {
  margin: 0;
}

/* Word/Docs lists must keep their markers even if theme/global CSS resets them. */
main article > ul,
main article .blog-gold-card ul,
main article .article-callout ul,
main article .blog-highlight-panel ul {
  list-style: disc outside !important;
  padding-left: 2rem !important;
}

main article > ol,
main article .blog-gold-card ol,
main article .article-callout ol,
main article .blog-highlight-panel ol {
  list-style: decimal outside !important;
  padding-left: 2rem !important;
}

main article > ul ul,
main article .blog-gold-card ul ul,
main article .article-callout ul ul,
main article .blog-highlight-panel ul ul {
  list-style-type: circle !important;
}

main article > ol ol,
main article .blog-gold-card ol ol,
main article .article-callout ol ol,
main article .blog-highlight-panel ol ol {
  list-style-type: lower-alpha !important;
}

main article > ul > li,
main article > ol > li,
main article .blog-gold-card li,
main article .article-callout li,
main article .blog-highlight-panel li {
  display: list-item !important;
}

main article > ul > li::marker,
main article > ol > li::marker,
main article .blog-gold-card li::marker,
main article .article-callout li::marker,
main article .blog-highlight-panel li::marker {
  color: currentColor;
}

/* Pasted JSON/code tables are converted to pre > code and retain their line breaks. */
main article pre {
  margin: 1.5rem 0 0;
  overflow-x: auto;
  border: 1px solid #242424;
  border-radius: 0.75rem;
  background: #111111;
  color: #f8f8f2;
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", monospace;
  font-size: 0.875rem;
  line-height: 1.65;
  tab-size: 2;
  padding: 1.25rem;
  white-space: pre;
}

main article pre code {
  display: block;
  background: transparent;
  color: inherit;
  font: inherit;
  padding: 0;
  white-space: inherit;
}

@media (max-width: 767px) {
  main article pre {
    border-radius: 0.5rem;
    font-size: 0.8125rem;
    padding: 1rem;
  }
}


main  article ul
{
list-style: inherit !important;    
}




/* Add this after the existing blog single CSS. */

/* Plain pasted table wrapper + existing visual treatment. */
main article .colytics-table-wrap {
  margin-top: 1.75rem;
  overflow-x: auto;
  border: 1px solid #d6d6d6;
  border-radius: 0.25rem 0 0 0.25rem;
  -webkit-overflow-scrolling: touch;
}

/* Keeps the existing gold-card UI when a shortcode contains a list. */
main article .blog-gold-card ul,
main article .blog-gold-card ol {
  margin-top: 1rem;
}

main article .blog-gold-card li {
  color: #000000;
}

/* The source CSS already styles this component; this only fixes its paragraph margin. */
main article .blog-highlight-panel p {
  margin: 0;
}

/* Word/Docs lists must keep their markers even if theme/global CSS resets them. */
main article > ul,
main article .blog-gold-card ul,
main article .article-callout ul,
main article .blog-highlight-panel ul {
  list-style: disc outside !important;
  padding-left: 2rem !important;
}

main article > ol,
main article .blog-gold-card ol,
main article .article-callout ol,
main article .blog-highlight-panel ol {
  list-style: decimal outside !important;
  padding-left: 2rem !important;
}

main article > ul ul,
main article .blog-gold-card ul ul,
main article .article-callout ul ul,
main article .blog-highlight-panel ul ul {
  list-style-type: circle !important;
}

main article > ol ol,
main article .blog-gold-card ol ol,
main article .article-callout ol ol,
main article .blog-highlight-panel ol ol {
  list-style-type: lower-alpha !important;
}

main article > ul > li,
main article > ol > li,
main article .blog-gold-card li,
main article .article-callout li,
main article .blog-highlight-panel li {
  display: list-item !important;
}

main article > ul > li::marker,
main article > ol > li::marker,
main article .blog-gold-card li::marker,
main article .article-callout li::marker,
main article .blog-highlight-panel li::marker {
  color: currentColor;
}

/* Restored FAQ answers from Word's accidental A. ordered lists. */
main article .colytics-faq-answer {
  margin: 1rem 0 0;
  padding-left: 0;
}

main article .colytics-faq-answer p + p {
  margin-top: 1rem;
}

/* Pasted JSON/code tables are converted to pre > code and retain their line breaks. */
main article pre {
  margin: 1.5rem 0 0;
  overflow-x: auto;
  border: 1px solid #242424;
  border-radius: 0.75rem;
  background: #111111;
  color: #f8f8f2;
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", monospace;
  font-size: 0.875rem;
  line-height: 1.65;
  tab-size: 2;
  padding: 1.25rem;
  white-space: pre;
}

main article pre code {
  display: block;
  background: transparent;
  color: inherit;
  font: inherit;
  padding: 0;
  white-space: inherit;
}

@media (max-width: 767px) {
  main article pre {
    border-radius: 0.5rem;
    font-size: 0.8125rem;
    padding: 1rem;
  }
}


/* Add this after the existing blog single CSS. */

/* Plain pasted table wrapper + existing visual treatment. */
main article .colytics-table-wrap {
  margin-top: 1.75rem;
  overflow-x: auto;
  border: 1px solid #d6d6d6;
  border-radius: 0.25rem 0 0 0.25rem;
  -webkit-overflow-scrolling: touch;
}

/* Keeps the existing gold-card UI when a shortcode contains a list. */
main article .blog-gold-card ul,
main article .blog-gold-card ol {
  margin-top: 1rem;
}

main article .blog-gold-card li {
  color: #000000;
}

/* The source CSS already styles this component; this only fixes its paragraph margin. */
main article .blog-highlight-panel p {
  margin: 0;
}

/* Word/Docs lists must keep their markers even if theme/global CSS resets them. */
main article > ul,
main article .blog-gold-card ul,
main article .article-callout ul,
main article .blog-highlight-panel ul {
  list-style: disc outside !important;
  padding-left: 2rem !important;
}

main article > ol,
main article .blog-gold-card ol,
main article .article-callout ol,
main article .blog-highlight-panel ol {
  list-style: decimal outside !important;
  padding-left: 2rem !important;
}

main article > ul ul,
main article .blog-gold-card ul ul,
main article .article-callout ul ul,
main article .blog-highlight-panel ul ul {
  list-style-type: circle !important;
}

main article > ol ol,
main article .blog-gold-card ol ol,
main article .article-callout ol ol,
main article .blog-highlight-panel ol ol {
  list-style-type: lower-alpha !important;
}

main article > ul > li,
main article > ol > li,
main article .blog-gold-card li,
main article .article-callout li,
main article .blog-highlight-panel li {
  display: list-item !important;
}

main article > ul > li::marker,
main article > ol > li::marker,
main article .blog-gold-card li::marker,
main article .article-callout li::marker,
main article .blog-highlight-panel li::marker {
  color: currentColor;
}

/* Restored FAQ answers from Word's accidental A. ordered lists. */
main article .colytics-faq-answer {
  margin: 1rem 0 0;
  padding-left: 0;
}

main article .colytics-faq-answer p + p {
  margin-top: 1rem;
}

/* A link pasted into a one-cell Docs/Word callout is the CTA for that card. */
main article .article-callout a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.75rem;
  margin-top: 1rem;
  border: 1px solid #0a0a0a;
  border-radius: 0.5rem;
  background: #0a0a0a;
  color: #ffffff !important;
  font-size: 0.875rem;
  font-weight: 700;
  line-height: 1;
  padding: 0.875rem 1.25rem;
  text-decoration: none !important;
}

main article .article-callout a:hover,
main article .article-callout a:focus-visible {
  background: #ffffff;
  color: #0a0a0a !important;
  text-decoration: none !important;
}

main article .article-callout a:focus-visible {
  outline: 3px solid rgba(10, 10, 10, 0.3);
  outline-offset: 3px;
}

/* Pasted JSON/code tables are converted to pre > code and retain their line breaks. */
main article pre {
  margin: 1.5rem 0 0;
  overflow-x: auto;
  border: 1px solid #242424;
  border-radius: 0.75rem;
  background: #111111;
  color: #f8f8f2;
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", monospace;
  font-size: 0.875rem;
  line-height: 1.65;
  tab-size: 2;
  padding: 1.25rem;
  white-space: pre;
}

main article pre code {
  display: block;
  background: transparent;
  color: inherit;
  font: inherit;
  padding: 0;
  white-space: inherit;
}

@media (max-width: 767px) {
  main article pre {
    border-radius: 0.5rem;
    font-size: 0.8125rem;
    padding: 1rem;
  }
}




/* Add this after the existing blog single CSS. */

/* Plain pasted table wrapper + existing visual treatment. */
main article .colytics-table-wrap {
  margin-top: 1.75rem;
  overflow-x: auto;
  border: 1px solid #d6d6d6;
  border-radius: 0.25rem 0 0 0.25rem;
  -webkit-overflow-scrolling: touch;
}

/* Keeps the existing gold-card UI when a shortcode contains a list. */
main article .blog-gold-card ul,
main article .blog-gold-card ol {
  margin-top: 1rem;
}

main article .blog-gold-card li {
  color: #000000;
}

/* The source CSS already styles this component; this only fixes its paragraph margin. */
main article .blog-highlight-panel p {
  margin: 0;
}

/* Word/Docs lists must keep their markers even if theme/global CSS resets them. */
main article > ul,
main article .blog-gold-card ul,
main article .article-callout ul,
main article .blog-highlight-panel ul {
  list-style: disc outside !important;
  padding-left: 2rem !important;
}

main article > ol,
main article .blog-gold-card ol,
main article .article-callout ol,
main article .blog-highlight-panel ol {
  list-style: decimal outside !important;
  padding-left: 2rem !important;
}

main article > ul ul,
main article .blog-gold-card ul ul,
main article .article-callout ul ul,
main article .blog-highlight-panel ul ul {
  list-style-type: circle !important;
}

main article > ol ol,
main article .blog-gold-card ol ol,
main article .article-callout ol ol,
main article .blog-highlight-panel ol ol {
  list-style-type: lower-alpha !important;
}

main article > ul > li,
main article > ol > li,
main article .blog-gold-card li,
main article .article-callout li,
main article .blog-highlight-panel li {
  display: list-item !important;
}

main article > ul > li::marker,
main article > ol > li::marker,
main article .blog-gold-card li::marker,
main article .article-callout li::marker,
main article .blog-highlight-panel li::marker {
  color: currentColor;
}

/* Restored FAQ answers from Word's accidental A. ordered lists. */
main article .colytics-faq-answer {
  margin: 1rem 0 0;
  padding-left: 0;
}

main article .colytics-faq-answer p + p {
  margin-top: 1rem;
}

/* A link pasted into a one-cell Docs/Word callout is the CTA for that card. */
main article .article-callout.colytics-cta-card .colytics-cta-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.75rem;
  margin-top: 1rem;
  border: 1px solid #0a0a0a;
  border-radius: 0.5rem;
  background: #0a0a0a;
  color: #ffffff !important;
  font-size: 0.875rem;
  font-weight: 700;
  line-height: 1;
  padding: 0.875rem 1.25rem;
  text-decoration: none !important;
}

main article .article-callout.colytics-cta-card .colytics-cta-button-row {
  margin: 0;
}

main article .article-callout.colytics-cta-card .colytics-cta-button:hover,
main article .article-callout.colytics-cta-card .colytics-cta-button:focus-visible {
  background: #ffffff;
  color: #0a0a0a !important;
  text-decoration: none !important;
}

main article .article-callout.colytics-cta-card .colytics-cta-button:focus-visible {
  outline: 3px solid rgba(10, 10, 10, 0.3);
  outline-offset: 3px;
}

/* Pasted JSON/code tables are converted to pre > code and retain their line breaks. */
main article pre {
  margin: 1.5rem 0 0;
  overflow-x: auto;
  border: 1px solid #242424;
  border-radius: 0.75rem;
  background: #111111;
  color: #f8f8f2;
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", monospace;
  font-size: 0.875rem;
  line-height: 1.65;
  tab-size: 2;
  padding: 1.25rem;
  white-space: pre;
}

main article pre code {
  display: block;
  background: transparent;
  color: inherit;
  font: inherit;
  padding: 0;
  white-space: inherit;
}

@media (max-width: 767px) {
  main article pre {
    border-radius: 0.5rem;
    font-size: 0.8125rem;
    padding: 1rem;
  }
}


/* AI visibility sidebar card */
.sidebar-ai-visibility-card {
  position: sticky;
  top: 7rem;
  overflow: hidden;
  border: 1px solid rgba(224, 184, 77, 0.55);
  border-radius: 2.75rem;
  background: #090909;
 /* box-shadow: 0 20px 50px rgba(0, 0, 0, 0.22);*/
  color: #ffffff;
  padding: 2.75rem 2.25rem 2.5rem;
  text-align: center;
}

.sidebar-ai-visibility-eyebrow {
  margin: 0;
  color: #d9b959;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  line-height: 1.2;
  text-transform: uppercase;
}

.sidebar-ai-visibility-heading {
  margin: 1.5rem 0 0;
  color: #ffffff;
  font-size: clamp(2rem, 3.25vw, 2.6rem);
  font-weight: 700;
  letter-spacing: -0.055em;
  line-height: 1.02;
}

.sidebar-ai-visibility-heading span {
  color: #d9b959;
  text-decoration: underline;
  text-decoration-color: rgba(217, 185, 89, 0.78);
  text-decoration-thickness: 2px;
  text-underline-offset: 0.15em;
}

.sidebar-ai-visibility-copy {
  margin: 1.5rem 0 0;
  color: #b7b7bb;
  font-size: 1rem;
  line-height: 1.55;
}

.sidebar-ai-visibility-points {
  display: grid;
  gap: 0.75rem;
  margin-top: 2rem;
}

/* These are text-only boxes, not links. */
.sidebar-ai-visibility-point {
  border: 1px solid rgba(217, 185, 89, 0.5);
  border-radius: 1rem;
  color: #ffffff;
  font-size: 0.9375rem;
  font-weight: 700;
  line-height: 1.2;
  padding: 1.05rem 0.75rem;
}

.sidebar-ai-visibility-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  min-height: 4.25rem;
  margin-top: 2rem;
  border: 1px solid #ffffff;
  border-radius: 999px;
  background: #ffffff;
  color: #090909;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.2;
  padding: 0.875rem 1.25rem;
  text-decoration: none;
  transition: background-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.sidebar-ai-visibility-cta:hover,
.sidebar-ai-visibility-cta:focus-visible {
  border-color: #d9b959;
  background: #d9b959;
  color: #090909;
  text-decoration: none;
  transform: translateY(-1px);
}

.sidebar-ai-visibility-cta:focus-visible {
  outline: 3px solid rgba(217, 185, 89, 0.5);
  outline-offset: 3px;
}

.sidebar-ai-visibility-note {
  margin: 1rem 0 0;
  color: #8c8c91;
  font-size: 0.75rem;
  line-height: 1.4;
}

@media (max-width: 767px) {
  .sidebar-ai-visibility-card {
    border-radius: 1.75rem;
    padding: 2rem 1.5rem;
  }
}

