/* ═══════════════════════════════════════════════
   SF24 TEST BLOG POST — Editorial / Magazine layout
═══════════════════════════════════════════════ */

.sf24-tbp-wrap {
  position: relative;
  background: #f3f1ec;
  font-family: var(--th-body, "Nunito", system-ui, sans-serif);
  color: #1a0f2e;
  overflow: clip;
}
.sf24-tbp-wrap a { color: inherit; }

/* ═══ HERO — full-bleed image with overlay ═══ */
.sf24-tbp-hero {
  position: relative;
  width: 100%;
  min-height: clamp(440px, 70vh, 720px);
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  isolation: isolate;
}
.sf24-tbp-hero-img {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.sf24-tbp-hero-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}
.sf24-tbp-hero-img::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(26,15,46,0) 30%, rgba(26,15,46,0.50) 70%, rgba(26,15,46,0.92) 100%),
    radial-gradient(60% 50% at 100% 0%, rgba(237,196,50,0.18) 0%, transparent 60%),
    radial-gradient(50% 50% at 0% 100%, rgba(124,58,237,0.18) 0%, transparent 60%);
  pointer-events: none;
}
.sf24-tbp-hero-content {
  position: relative;
  z-index: 1;
  width: 100%;
  padding: clamp(28px, 5vw, 60px) clamp(20px, 5vw, 60px);
}
.sf24-tbp-hero-inner {
  max-width: 920px;
  margin: 0 auto;
  color: #fff;
}
.sf24-tbp-hero-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
  margin-bottom: 22px;
}
.sf24-tbp-back {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.20);
  color: #fff;
  font-family: var(--th-display, "Rubik", system-ui, sans-serif);
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-decoration: none;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: background 0.2s ease;
}
.sf24-tbp-back:hover { background: rgba(255,255,255,0.22); }
.sf24-tbp-hero-cat {
  padding: 6px 14px;
  border-radius: 999px;
  font-family: var(--th-display, "Rubik", system-ui, sans-serif);
  font-weight: 800;
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.sf24-tbp-hero-cat.is-case  { background: linear-gradient(135deg, #EDC432, #f58529); color: #1a0f2e; }
.sf24-tbp-hero-cat.is-blog  { background: linear-gradient(135deg, #7c3aed, #dd2a7b); color: #fff; }

.sf24-tbp-h1 {
  font-family: var(--th-display, "Rubik", system-ui, sans-serif);
  font-size: clamp(34px, 5vw, 64px);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.035em;
  margin: 0 0 18px;
  color: #fff;
  max-width: 18ch;
  text-shadow: 0 2px 24px rgba(0,0,0,0.30);
}
.sf24-tbp-deck {
  font-size: clamp(16px, 1.7vw, 20px);
  line-height: 1.5;
  color: rgba(255,255,255,0.86);
  max-width: 60ch;
  margin: 0 0 28px;
  text-shadow: 0 1px 16px rgba(0,0,0,0.28);
}
.sf24-tbp-byline {
  display: flex;
  align-items: center;
  gap: 14px;
}
.sf24-tbp-byline-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  border: 2px solid rgba(255,255,255,0.40);
  flex-shrink: 0;
}
.sf24-tbp-byline-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.sf24-tbp-byline-text strong {
  font-family: var(--th-display, "Rubik", sans-serif);
  font-size: 15px;
  font-weight: 700;
  color: #fff;
}
.sf24-tbp-byline-text span {
  font-size: 13px;
  color: rgba(255,255,255,0.70);
}

/* ═══ BODY — TOC sidebar + main column ═══ */
.sf24-tbp-body {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  padding: clamp(40px, 6vw, 80px) clamp(20px, 5vw, 60px);
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: clamp(40px, 5vw, 80px);
  align-items: start;
}

/* ═══ TOC sticky sidebar ═══ */
.sf24-tbp-toc {
  position: sticky;
  top: 100px;
  align-self: start;
}
.sf24-tbp-toc-inner {
  position: relative;
  padding: 24px 22px;
  border-radius: 22px;
  background: rgba(255,255,255,0.78);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(124,58,237,0.12);
}
.sf24-tbp-toc-eyebrow {
  display: block;
  font-family: var(--th-display, "Rubik", system-ui, sans-serif);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: rgba(85,30,112,0.65);
  margin-bottom: 16px;
}
.sf24-tbp-toc-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 4px;
  max-height: 50vh;
  overflow-y: auto;
}
.sf24-tbp-toc-item a {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 8px 10px;
  border-radius: 8px;
  text-decoration: none;
  color: rgba(26,15,46,0.65);
  font-family: var(--th-body, "Nunito", sans-serif);
  font-size: 13.5px;
  line-height: 1.4;
  font-weight: 500;
  transition: background 0.15s ease, color 0.15s ease;
  border-left: 2px solid transparent;
}
.sf24-tbp-toc-item a:hover { background: rgba(124,58,237,0.06); color: #1a0f2e; }
.sf24-tbp-toc-item a.is-active {
  color: #1a0f2e;
  font-weight: 700;
  background: rgba(124,58,237,0.08);
  border-left-color: #7c3aed;
}
.sf24-tbp-toc-num {
  font-family: ui-monospace, "SF Mono", Menlo, monospace;
  font-size: 11px;
  font-weight: 700;
  color: rgba(85,30,112,0.55);
  flex-shrink: 0;
  padding-top: 1px;
}
.sf24-tbp-toc-h3 a { padding-left: 26px; font-size: 12.5px; }
.sf24-tbp-toc-h3 .sf24-tbp-toc-num { display: none; }

/* Reading progress bar */
.sf24-tbp-toc-progress {
  position: relative;
  height: 4px;
  border-radius: 2px;
  background: rgba(124,58,237,0.10);
  margin: 18px 0 0;
  overflow: hidden;
}
.sf24-tbp-toc-progress-bar {
  position: absolute;
  inset: 0 auto 0 0;
  width: 100%;
  background: linear-gradient(90deg, #7c3aed, #dd2a7b, #f58529);
  transform-origin: left;
  transform: scaleX(0);
  transition: transform 0.1s linear;
}
/* Note: I'm using scaleY visually, but transform-origin makes it scaleY-down. Recalc as scaleX in JS later if needed.
   Actually let me make it scaleX-based for horizontal progress: */
.sf24-tbp-toc-progress-bar { transform-origin: left center; }

/* Share row */
.sf24-tbp-toc-share { margin-top: 18px; padding-top: 18px; border-top: 1px solid rgba(124,58,237,0.10); }
.sf24-tbp-toc-share > span {
  display: block;
  font-family: var(--th-display, sans-serif);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: rgba(85,30,112,0.65);
  margin-bottom: 10px;
}
.sf24-tbp-toc-share-row { display: flex; gap: 8px; }
.sf24-tbp-toc-share-row a,
.sf24-tbp-toc-share-row button {
  width: 36px; height: 36px;
  border-radius: 10px;
  border: 1px solid rgba(124,58,237,0.18);
  background: rgba(255,255,255,0.5);
  color: rgba(26,15,46,0.78);
  display: grid;
  place-items: center;
  cursor: pointer;
  transition: all 0.2s ease;
  -webkit-appearance: none;
  appearance: none;
}
.sf24-tbp-toc-share-row a:hover,
.sf24-tbp-toc-share-row button:hover {
  background: linear-gradient(135deg, #7c3aed, #dd2a7b);
  color: #fff;
  border-color: transparent;
  transform: translateY(-1px);
}
.sf24-tbp-toc-copy.is-copied { background: linear-gradient(135deg, #15803d, #22c55e); color: #fff; border-color: transparent; }

/* ═══ MAIN CONTENT ═══ */
.sf24-tbp-main { min-width: 0; }

.sf24-tbp-content {
  font-family: var(--th-body, "Nunito", system-ui, sans-serif);
  font-size: clamp(16.5px, 1.2vw, 18px);
  line-height: 1.75;
  color: rgba(26,15,46,0.85);
}
.sf24-tbp-content > *:first-child { margin-top: 0; }
.sf24-tbp-content p {
  margin: 0 0 1.4em;
}
.sf24-tbp-content p:first-of-type::first-letter {
  float: left;
  font-family: var(--th-display, "Rubik", sans-serif);
  font-size: 4em;
  line-height: 0.85;
  font-weight: 800;
  margin: 4px 14px 0 0;
  background: linear-gradient(135deg, #7c3aed, #dd2a7b 60%, #f58529);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  letter-spacing: -0.04em;
}
.sf24-tbp-content h2 {
  font-family: var(--th-display, "Rubik", sans-serif);
  font-size: clamp(26px, 2.8vw, 36px);
  font-weight: 800;
  line-height: 1.18;
  letter-spacing: -0.025em;
  color: #1a0f2e;
  margin: 2em 0 0.6em;
  scroll-margin-top: 100px;
}
.sf24-tbp-content h3 {
  font-family: var(--th-display, "Rubik", sans-serif);
  font-size: clamp(20px, 2vw, 24px);
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: -0.02em;
  color: #1a0f2e;
  margin: 1.6em 0 0.5em;
  scroll-margin-top: 100px;
}
.sf24-tbp-content a {
  color: #7c3aed;
  text-decoration: none;
  border-bottom: 1.5px solid rgba(124,58,237,0.30);
  font-weight: 600;
  transition: border-color 0.2s ease;
}
.sf24-tbp-content a:hover { border-bottom-color: rgba(124,58,237,0.65); }
.sf24-tbp-content strong { color: #1a0f2e; font-weight: 700; }
.sf24-tbp-content em { font-style: italic; }

.sf24-tbp-content ul,
.sf24-tbp-content ol {
  margin: 0 0 1.4em;
  padding-left: 1.4em;
}
.sf24-tbp-content li { margin-bottom: 0.5em; }
.sf24-tbp-content ul li { list-style: none; position: relative; padding-left: 4px; }
.sf24-tbp-content ul li::before {
  content: "";
  position: absolute;
  left: -18px;
  top: 0.65em;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: linear-gradient(135deg, #7c3aed, #dd2a7b);
}

.sf24-tbp-content blockquote {
  position: relative;
  margin: 2em 0;
  padding: 24px 28px 24px 60px;
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(255,255,255,0.78), rgba(255,248,214,0.55));
  border: 1px solid rgba(237,196,50,0.32);
  font-size: 1.08em;
  line-height: 1.55;
  color: rgba(26,15,46,0.85);
  font-style: italic;
}
.sf24-tbp-content blockquote::before {
  content: "“";
  position: absolute;
  left: 18px;
  top: 6px;
  font-family: var(--th-display, "Rubik", serif);
  font-size: 64px;
  line-height: 1;
  font-weight: 800;
  background: linear-gradient(135deg, #EDC432, #f58529);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.sf24-tbp-content img {
  max-width: 100%;
  height: auto;
  border-radius: 16px;
  margin: 1.4em 0;
  display: block;
}
.sf24-tbp-content figure { margin: 1.6em 0; }
.sf24-tbp-content figcaption {
  font-size: 13.5px;
  color: rgba(26,15,46,0.55);
  text-align: center;
  margin-top: 8px;
  font-style: italic;
}
.sf24-tbp-content code {
  font-family: ui-monospace, "SF Mono", Menlo, monospace;
  font-size: 0.92em;
  padding: 2px 8px;
  border-radius: 6px;
  background: rgba(124,58,237,0.08);
  color: #7c3aed;
}
.sf24-tbp-content pre {
  padding: 22px;
  border-radius: 14px;
  background: #1a0f2e;
  color: #e9e7f0;
  overflow-x: auto;
  font-family: ui-monospace, "SF Mono", Menlo, monospace;
  font-size: 14px;
  line-height: 1.6;
  margin: 1.6em 0;
}
.sf24-tbp-content pre code {
  background: transparent;
  color: inherit;
  padding: 0;
}
.sf24-tbp-content table {
  width: 100%;
  border-collapse: collapse;
  margin: 1.6em 0;
  font-size: 0.95em;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid rgba(124,58,237,0.14);
}
.sf24-tbp-content th,
.sf24-tbp-content td {
  padding: 12px 16px;
  text-align: left;
  border-bottom: 1px solid rgba(124,58,237,0.08);
}
.sf24-tbp-content th {
  background: linear-gradient(135deg, rgba(124,58,237,0.08), rgba(237,196,50,0.10));
  font-family: var(--th-display, sans-serif);
  font-weight: 700;
  color: rgba(85,30,112,0.85);
  font-size: 0.92em;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.sf24-tbp-content hr {
  border: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(124,58,237,0.25), transparent);
  margin: 2.4em 0;
}

/* Tags row */
.sf24-tbp-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding-top: 28px;
  margin-top: 28px;
  border-top: 1px solid rgba(124,58,237,0.10);
}
.sf24-tbp-tag {
  padding: 6px 14px;
  border-radius: 999px;
  background: rgba(124,58,237,0.06);
  font-family: ui-monospace, "SF Mono", Menlo, monospace;
  font-size: 12.5px;
  font-weight: 600;
  color: rgba(85,30,112,0.78);
}

/* Author card */
.sf24-tbp-author {
  margin-top: 36px;
  padding: 28px;
  border-radius: 22px;
  background: linear-gradient(135deg, rgba(255,255,255,0.92), rgba(255,248,214,0.55));
  border: 1px solid rgba(237,196,50,0.30);
  display: flex;
  align-items: flex-start;
  gap: 22px;
}
.sf24-tbp-author-avatar {
  width: 80px; height: 80px;
  border-radius: 50%;
  border: 3px solid rgba(255,255,255,0.7);
  box-shadow: 0 8px 22px -8px rgba(85,30,112,0.30);
  flex-shrink: 0;
}
.sf24-tbp-author-eyebrow {
  font-family: var(--th-display, sans-serif);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: rgba(85,30,112,0.65);
}
.sf24-tbp-author-body h3 {
  font-family: var(--th-display, sans-serif);
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: #1a0f2e;
  margin: 4px 0 8px;
}
.sf24-tbp-author-body p {
  font-size: 14.5px;
  line-height: 1.55;
  color: rgba(26,15,46,0.7);
  margin: 0;
}

/* ═══ RELATED POSTS ═══ */
.sf24-tbp-related {
  padding: clamp(60px, 8vw, 100px) clamp(20px, 5vw, 60px);
  max-width: 1280px;
  margin: 0 auto;
}
.sf24-tbp-related-head {
  text-align: center;
  margin-bottom: clamp(36px, 5vw, 56px);
}
.sf24-tbp-related-head .sf24-th-h2 { margin-top: 12px; }
.sf24-tbp-related-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.sf24-tbp-related-card {
  border-radius: 22px;
  background: rgba(255,255,255,0.78);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(124,58,237,0.12);
  overflow: hidden;
  transition: transform 0.4s cubic-bezier(.2,.8,.2,1), border-color 0.4s, box-shadow 0.4s;
}
.sf24-tbp-related-card:hover {
  transform: translateY(-4px);
  border-color: rgba(124,58,237,0.28);
  box-shadow: 0 24px 56px -28px rgba(85,30,112,0.24);
}
.sf24-tbp-related-link {
  display: flex;
  flex-direction: column;
  height: 100%;
  text-decoration: none;
  color: #1a0f2e;
}
.sf24-tbp-related-img {
  position: relative;
  height: 180px;
  overflow: hidden;
}
.sf24-tbp-related-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s cubic-bezier(.2,.8,.2,1);
}
.sf24-tbp-related-card:hover .sf24-tbp-related-img img { transform: scale(1.06); }
.sf24-tbp-related-cat {
  position: absolute;
  top: 12px;
  left: 12px;
  padding: 5px 11px;
  border-radius: 999px;
  font-family: var(--th-display, sans-serif);
  font-weight: 800;
  font-size: 10.5px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  backdrop-filter: blur(10px);
}
.sf24-tbp-related-cat.is-case { background: rgba(237,196,50,0.92); color: #1a0f2e; }
.sf24-tbp-related-cat.is-blog { background: rgba(124,58,237,0.92); color: #fff; }
.sf24-tbp-related-body {
  padding: 20px 22px 22px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
}
.sf24-tbp-related-body h3 {
  font-family: var(--th-display, sans-serif);
  font-size: 17px;
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: -0.02em;
  color: #1a0f2e;
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.sf24-tbp-related-body p {
  font-size: 13.5px;
  line-height: 1.5;
  color: rgba(26,15,46,0.65);
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  flex: 1;
}
.sf24-tbp-related-meta {
  font-family: ui-monospace, "SF Mono", Menlo, monospace;
  font-size: 11.5px;
  color: rgba(26,15,46,0.5);
  margin-top: 4px;
}

/* ═══ FINAL CTA ═══ */
.sf24-tbp-final {
  position: relative;
  padding: clamp(80px, 12vw, 130px) clamp(20px, 5vw, 60px);
  max-width: 1280px;
  margin: clamp(40px, 6vw, 80px) auto 0;
  border-radius: 40px;
  overflow: hidden;
  background: linear-gradient(135deg, #a78bfa 0%, #7c3aed 55%, #6d28d9 100%);
  isolation: isolate;
}
.sf24-tbp-final-aurora {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(45% 55% at 80% 20%, rgba(237,196,50,0.42) 0%, transparent 60%),
    radial-gradient(40% 55% at 10% 90%, rgba(221,42,123,0.38) 0%, transparent 60%),
    radial-gradient(50% 60% at 50% 0%, rgba(255,255,255,0.16) 0%, transparent 70%);
  animation: tbpAuroraShift 14s ease-in-out infinite;
  pointer-events: none;
  z-index: 0;
}
@keyframes tbpAuroraShift {
  0%, 100% { opacity: 0.9; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.08); }
}
.sf24-tbp-final-inner {
  position: relative;
  z-index: 1;
  text-align: center;
  color: #fff;
  max-width: 760px;
  margin: 0 auto;
}
.sf24-th-eyebrow--light { color: rgba(255,255,255,0.78) !important; }
.sf24-tbp-final-h {
  font-family: var(--th-display, sans-serif);
  font-size: clamp(40px, 6vw, 68px);
  font-weight: 800;
  line-height: 0.98;
  letter-spacing: -0.04em;
  margin: 14px 0 16px;
}
.sf24-tbp-final-h em {
  font-style: italic;
  font-weight: 600;
  background: linear-gradient(135deg, #EDC432 0%, #f58529 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.sf24-tbp-final-inner > p {
  font-size: 17px;
  line-height: 1.55;
  color: rgba(255,255,255,0.78);
  max-width: 540px;
  margin: 0 auto 32px;
}
.sf24-tbp-final-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 18px 36px;
  border-radius: 999px;
  background: linear-gradient(135deg, #EDC432 0%, #f58529 100%);
  color: #1a0f2e;
  font-family: var(--th-display, sans-serif);
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  text-decoration: none;
  transition: transform 0.3s cubic-bezier(.2,.8,.2,1), box-shadow 0.3s ease;
  box-shadow: 0 18px 40px -10px rgba(237,196,50,0.55);
}
.sf24-tbp-final-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 24px 48px -10px rgba(237,196,50,0.65);
}
.sf24-tbp-final-cta svg { transition: transform 0.25s ease; }
.sf24-tbp-final-cta:hover svg { transform: translateX(3px); }

/* ═══ ANIMATIONS ═══ */
[data-anim] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s cubic-bezier(.2,.8,.2,1), transform 0.7s cubic-bezier(.2,.8,.2,1);
}
[data-anim].is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ═══ RESPONSIVE ═══ */
@media (max-width: 960px) {
  .sf24-tbp-body { grid-template-columns: 1fr; gap: 32px; }
  .sf24-tbp-toc { position: static; }
  .sf24-tbp-toc-inner { padding: 18px 18px; }
  .sf24-tbp-toc-list { max-height: none; }
  .sf24-tbp-related-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
}
@media (max-width: 560px) {
  .sf24-tbp-wrap { padding-top: 64px; }
  .sf24-tbp-hero { min-height: clamp(360px, 60vh, 480px); }
  .sf24-tbp-h1 { font-size: clamp(28px, 8vw, 44px); }
  .sf24-tbp-deck { font-size: 15px; }
  .sf24-tbp-body { padding: clamp(28px, 7vw, 48px) 18px; }
  .sf24-tbp-toc-inner { padding: 16px 16px; }
  .sf24-tbp-content { font-size: 16px; line-height: 1.7; }
  .sf24-tbp-content p:first-of-type::first-letter { font-size: 3em; }
  .sf24-tbp-author { padding: 22px; flex-direction: column; gap: 14px; text-align: center; align-items: center; }
  .sf24-tbp-related { padding: 50px 18px; }
  .sf24-tbp-related-grid { grid-template-columns: 1fr; gap: 14px; }
  .sf24-tbp-related-img { height: 200px; }
  .sf24-tbp-final { border-radius: 28px; margin: 32px 12px 0; padding: 56px 22px; }
  .sf24-tbp-final-cta { padding: 16px 28px; font-size: 14px; width: 100%; justify-content: center; }
}

@media (prefers-reduced-motion: reduce) {
  .sf24-tbp-final-aurora { animation: none !important; }
  [data-anim] { transition: none !important; opacity: 1 !important; transform: none !important; }
  .sf24-tbp-toc-progress-bar { transition: none !important; }
}
