/* ═══════════════════════════════════════════════
   SINGLE POST — niraj-business-theme
   Scoped to body.single-post
═══════════════════════════════════════════════ */

/* ── Reading Progress Bar ───────────────────── */
#read-progress {
  position: fixed;
  top: 0; left: 0;
  height: 3px;
  width: 0%;
  background: linear-gradient(90deg, var(--fire), var(--fire2));
  z-index: 10000;
  transition: width .1s linear;
  pointer-events: none;
}

/* ── Announcement Bar ───────────────────────── */
.sp-announce {
  background: var(--fire);
  color: #fff;
  text-align: center;
  padding: 10px 24px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  position: relative;
  z-index: 200;
}
.sp-announce a { color: #fff; text-decoration: underline; text-underline-offset: 3px; }

/* ── Post Hero Header ───────────────────────── */
.sp-hero {
  background: var(--ink);
  padding: clamp(48px,7vw,80px) 0 0;
  position: relative;
  overflow: hidden;
}
.sp-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 60% at 60% 0%, rgba(240,98,12,.08) 0%, transparent 70%);
  pointer-events: none;
}
.sp-hero-inner {
  width: var(--w);
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
/* Visually matches .nb-breadcrumb (main.css) — consistent across all page types */
.sp-breadcrumb {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: .72rem;
  font-weight: 500;
  letter-spacing: .04em;
  color: rgba(255,255,255,.35);
  margin-bottom: 20px;
  flex-wrap: wrap;
}
.sp-breadcrumb a { color: rgba(255,255,255,.45); text-decoration: none; transition: color .2s; }
.sp-breadcrumb a:hover { color: var(--fire); }
.sp-breadcrumb .sep { color: rgba(255,255,255,.2); font-size: .68rem; }
.sp-breadcrumb .current { color: rgba(255,255,255,.6); }

.sp-cat-pill {
  display: inline-block;
  background: var(--ember);
  border: 1px solid rgba(240,98,12,.3);
  color: var(--fire2);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 100px;
  margin-bottom: 20px;
  text-decoration: none;
  transition: background .2s;
}
.sp-cat-pill:hover { background: rgba(240,98,12,.2); }

/* Term definition subtitle (seo_term pages) */
.sp-hero-sub {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.65;
  max-width: 640px;
  margin: -12px 0 20px;
}

.sp-hero h1 {
  font-family: var(--ff-head);
  font-size: clamp(2rem, 4.5vw, 3.4rem);
  font-weight: 900;
  color: #fff;
  line-height: 1.15;
  letter-spacing: -0.03em;
  max-width: 820px;
  margin-bottom: 24px;
}

.sp-meta-row {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  font-size: 0.8rem;
  color: rgba(255,255,255,.5);
  margin-bottom: 28px;
}
.sp-meta-row .sep { color: rgba(255,255,255,.2); }
.sp-meta-author { display: flex; align-items: center; gap: 8px; color: rgba(255,255,255,.7); font-weight: 600; }
.sp-meta-author img { width: 28px; height: 28px; border-radius: 50%; object-fit: cover; }
.sp-meta-date { color: rgba(255,255,255,.5); }
.sp-meta-updated { color: rgba(255,255,255,.4); font-style: italic; }
.sp-meta-read { display: flex; align-items: center; gap: 5px; color: var(--fire2); font-weight: 600; }

.sp-hero-share {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 36px;
}
.sp-hero-share span { font-size: 0.72rem; color: rgba(255,255,255,.35); text-transform: uppercase; letter-spacing: .08em; }
.sp-share-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 7px 14px;
  border-radius: 100px;
  font-size: 0.75rem;
  font-weight: 600;
  border: 1px solid rgba(255,255,255,.12);
  color: rgba(255,255,255,.6);
  background: rgba(255,255,255,.05);
  cursor: pointer;
  transition: all .2s;
  text-decoration: none;
  font-family: var(--ff-body);
}
.sp-share-btn:hover { background: rgba(255,255,255,.1); color: #fff; border-color: rgba(255,255,255,.25); }
.sp-share-btn.copy-done { color: #4ade80; border-color: rgba(74,222,128,.3); background: rgba(74,222,128,.08); }

/* Featured image strip at bottom of hero */
.sp-hero-img {
  margin-top: 36px;
  border-radius: var(--r3) var(--r3) 0 0;
  overflow: hidden;
  max-height: 480px;
  position: relative;
}
.sp-hero-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.sp-hero-img figcaption {
  background: rgba(0,0,0,.55);
  color: rgba(255,255,255,.65);
  font-size: 0.75rem;
  padding: 8px 16px;
  text-align: center;
  position: absolute;
  bottom: 0; left: 0; right: 0;
}
/* Gradient placeholder when no featured image */
.sp-hero-img-placeholder {
  width: 100%;
  height: 320px;
  background: linear-gradient(135deg, var(--ink3) 0%, #1a2f4a 50%, var(--ink2) 100%);
  border-radius: var(--r3) var(--r3) 0 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.sp-hero-img-placeholder .ph-word {
  font-family: var(--ff-head);
  font-size: clamp(60px,12vw,160px);
  font-weight: 900;
  color: transparent;
  -webkit-text-stroke: 2px rgba(255,255,255,.06);
  user-select: none;
  letter-spacing: -0.05em;
}

/* ── Main Content Layout ────────────────────── */
.sp-body {
  background: var(--chalk);
  padding: clamp(40px,6vw,72px) 0 clamp(56px,8vw,96px);
}
.sp-body-inner {
  width: var(--w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 304px;
  gap: 60px;
  align-items: start;
}

/* ── Article Column ─────────────────────────── */
.sp-article { min-width: 0; }

/* ── Table of Contents ──────────────────────── */
.sp-toc {
  background: #fff;
  border: 1px solid var(--line2);
  border-left: 3px solid var(--fire);
  border-radius: var(--r2);
  padding: 24px 28px;
  margin-bottom: 40px;
}
.sp-toc-title {
  font-family: var(--ff-head);
  font-size: 1rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  user-select: none;
}
.sp-toc-title .toc-toggle {
  font-family: var(--ff-body);
  font-size: 0.72rem;
  color: var(--fire);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .06em;
}
.sp-toc ol {
  padding-left: 20px;
  margin: 0;
  line-height: 1;
}
.sp-toc ol ol { margin-top: 6px; padding-left: 16px; }
.sp-toc li { margin-bottom: 10px; }
.sp-toc a {
  font-size: 0.85rem;
  color: #5a5450;
  text-decoration: none;
  transition: color .2s;
  line-height: 1.4;
}
.sp-toc a:hover { color: var(--fire); }
.sp-toc a.toc-active { color: var(--fire); font-weight: 600; }
.sp-toc.collapsed ol { display: none; }

/* ── Prose / Article Body ───────────────────── */
.sp-content {
  font-size: clamp(16px, 1.1vw, 18px);
  line-height: 1.78;
  color: #2a2420;
}
.sp-content h2 {
  font-family: var(--ff-head);
  font-size: clamp(1.4rem, 2.4vw, 2rem);
  font-weight: 800;
  color: var(--ink);
  margin: 52px 0 18px;
  line-height: 1.2;
  letter-spacing: -0.02em;
  scroll-margin-top: 90px;
}
.sp-content h3 {
  font-family: var(--ff-head);
  font-size: clamp(1.1rem, 1.8vw, 1.4rem);
  font-weight: 700;
  color: var(--ink);
  margin: 36px 0 14px;
  letter-spacing: -0.015em;
  scroll-margin-top: 90px;
}
.sp-content h4 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--ink);
  margin: 28px 0 10px;
  text-transform: uppercase;
  letter-spacing: .05em;
  font-size: 0.82rem;
}
.sp-content p { margin-bottom: 1.5em; }
.sp-content ul, .sp-content ol {
  margin: 0 0 1.5em 1.4em;
}
.sp-content li { margin-bottom: .5em; }
.sp-content a {
  color: var(--fire);
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-thickness: 1px;
  transition: color .2s;
}
.sp-content a:hover { color: var(--fire2); }

/* Blockquote / pull quote */
.sp-content blockquote {
  background: var(--ink);
  border-left: none;
  border-radius: var(--r2);
  padding: 28px 32px;
  margin: 36px 0;
  position: relative;
  overflow: hidden;
}
.sp-content blockquote::before {
  content: '\201C';
  position: absolute;
  top: -10px; left: 16px;
  font-family: var(--ff-head);
  font-size: 120px;
  color: rgba(240,98,12,.15);
  line-height: 1;
  pointer-events: none;
}
.sp-content blockquote p {
  font-family: var(--ff-head);
  font-size: clamp(1.05rem, 1.6vw, 1.3rem);
  font-style: italic;
  color: #fff;
  margin: 0;
  position: relative;
  z-index: 1;
}
.sp-content blockquote cite {
  display: block;
  margin-top: 12px;
  font-size: 0.78rem;
  font-style: normal;
  color: rgba(255,255,255,.5);
  font-weight: 600;
  letter-spacing: .04em;
  text-transform: uppercase;
  position: relative;
  z-index: 1;
}

/* Callout boxes */
.sp-callout {
  border-radius: var(--r2);
  padding: 20px 24px;
  margin: 28px 0;
  display: flex;
  gap: 14px;
  align-items: flex-start;
  font-size: 0.9rem;
  line-height: 1.6;
}
.sp-callout-icon { font-size: 1.2rem; flex-shrink: 0; margin-top: 2px; }
.sp-callout-body { flex: 1; }
.sp-callout strong { display: block; margin-bottom: 4px; font-weight: 700; }
.sp-callout.tip  { background: rgba(240,98,12,.07); border: 1px solid rgba(240,98,12,.2); color: #5a3010; }
.sp-callout.tip  .sp-callout-icon { color: var(--fire); }
.sp-callout.info { background: rgba(59,130,246,.07); border: 1px solid rgba(59,130,246,.2); color: #1e3a5f; }
.sp-callout.info .sp-callout-icon { color: #3b82f6; }
.sp-callout.warn { background: rgba(234,179,8,.08); border: 1px solid rgba(234,179,8,.25); color: #5a4a00; }
.sp-callout.warn .sp-callout-icon { color: #ca8a04; }
.sp-callout.stat { background: var(--ink); border: 1px solid rgba(255,255,255,.08); color: rgba(255,255,255,.8); }
.sp-callout.stat .sp-callout-icon { color: var(--fire2); }
.sp-callout.stat strong { color: #fff; }

/* Checklist */
.sp-checklist {
  background: #fff;
  border: 1px solid var(--line2);
  border-radius: var(--r2);
  padding: 24px 28px;
  margin: 28px 0;
  list-style: none;
  padding-left: 28px;
}
.sp-checklist li {
  padding: 8px 0 8px 32px;
  position: relative;
  border-bottom: 1px solid var(--line2);
  font-size: 0.9rem;
  color: #3a3028;
}
.sp-checklist li:last-child { border-bottom: none; }
.sp-checklist li::before {
  content: '';
  position: absolute;
  left: 0; top: 12px;
  width: 18px; height: 18px;
  border-radius: 50%;
  background: var(--fire);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='8' viewBox='0 0 10 8'%3E%3Cpath d='M1 4l3 3 5-6' stroke='%23fff' stroke-width='1.8' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
}

/* Stats inline */
.sp-stat-inline {
  display: inline-block;
  background: var(--ember);
  color: var(--fire);
  font-weight: 800;
  font-family: var(--ff-head);
  padding: 2px 8px;
  border-radius: 6px;
  font-size: 1.05em;
}

/* Images inside content */
.sp-content img {
  border-radius: var(--r2);
  margin: 8px 0;
}
.sp-content figure { margin: 28px 0; }
.sp-content figcaption {
  font-size: 0.78rem;
  color: #888;
  text-align: center;
  margin-top: 8px;
  font-style: italic;
}

/* Tables */
.sp-content table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.88rem;
  margin: 28px 0;
  border-radius: var(--r1);
  overflow: hidden;
}
.sp-content th {
  background: var(--ink);
  color: #fff;
  padding: 12px 16px;
  text-align: left;
  font-weight: 600;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: .05em;
}
.sp-content td {
  padding: 11px 16px;
  border-bottom: 1px solid var(--line2);
  color: #3a3028;
}
.sp-content tr:nth-child(even) td { background: #faf9f7; }

/* ── FAQ Section ────────────────────────────── */
.sp-faq { margin: 60px 0 20px; }
.sp-faq-title {
  font-family: var(--ff-head);
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  font-weight: 800;
  color: var(--ink);
  margin-bottom: 28px;
  letter-spacing: -0.02em;
}
.sp-faq-item {
  border: 1px solid var(--line2);
  border-radius: var(--r2);
  margin-bottom: 10px;
  overflow: hidden;
  background: #fff;
}
.sp-faq-q {
  width: 100%;
  background: none;
  border: none;
  padding: 18px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  cursor: pointer;
  font-family: var(--ff-body);
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--ink);
  text-align: left;
}
.sp-faq-q .faq-icon {
  width: 28px; height: 28px;
  border-radius: 50%;
  background: var(--mist);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  color: var(--fire);
  font-size: 1rem;
  transition: transform .3s var(--ease), background .2s;
}
.sp-faq-item.open .faq-icon { transform: rotate(45deg); background: var(--ember); }
.sp-faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .4s var(--ease);
}
.sp-faq-a-inner {
  padding: 0 24px 20px;
  font-size: 0.88rem;
  line-height: 1.72;
  color: #4a4440;
}
.sp-faq-item.open .sp-faq-a { max-height: 400px; }

/* ── Tags ───────────────────────────────────── */
.sp-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 40px 0;
  padding-top: 28px;
  border-top: 1px solid var(--line2);
}
.sp-tags-label {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: #888;
  display: flex;
  align-items: center;
  margin-right: 4px;
}
.sp-tag {
  display: inline-block;
  background: var(--mist);
  color: #5a5450;
  font-size: 0.75rem;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 100px;
  text-decoration: none;
  border: 1px solid var(--line2);
  transition: all .2s;
}
.sp-tag:hover { background: var(--ember); color: var(--fire); border-color: rgba(240,98,12,.3); }

/* ── Social Share Bar ───────────────────────── */
.sp-share-bar {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  padding: 24px 0;
  border-top: 1px solid var(--line2);
  border-bottom: 1px solid var(--line2);
  margin: 20px 0 40px;
}
.sp-share-bar-label {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: #888;
  margin-right: 4px;
}
.sp-share-bar .sp-share-btn { font-size: 0.78rem; }
.sp-share-twitter  { color: rgba(29,161,242,.8); border-color: rgba(29,161,242,.25); background: rgba(29,161,242,.06); }
.sp-share-twitter:hover { background: rgba(29,161,242,.12); color: #1da1f2; }
.sp-share-linkedin { color: rgba(10,102,194,.8); border-color: rgba(10,102,194,.25); background: rgba(10,102,194,.06); }
.sp-share-linkedin:hover { background: rgba(10,102,194,.12); color: #0a66c2; }

/* ── Author Bio Box ─────────────────────────── */
.sp-author {
  background: #fff;
  border: 1px solid var(--line2);
  border-radius: var(--r3);
  padding: 28px 32px;
  display: flex;
  gap: 24px;
  align-items: flex-start;
  margin-bottom: 48px;
}
.sp-author-avatar {
  width: 80px; height: 80px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
  border: 3px solid var(--ember);
}
.sp-author-avatar-placeholder {
  width: 80px; height: 80px;
  border-radius: 50%;
  background: var(--ink);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  font-family: var(--ff-head);
  font-size: 1.8rem;
  font-weight: 900;
  color: var(--fire);
  border: 3px solid var(--ember);
}
.sp-author-name {
  font-family: var(--ff-head);
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--ink);
  margin-bottom: 4px;
}
.sp-author-role {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .07em;
  color: var(--fire);
  margin-bottom: 10px;
}
.sp-author-bio {
  font-size: 0.88rem;
  line-height: 1.65;
  color: #5a5450;
  margin-bottom: 12px;
}
.sp-author-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--fire);
  text-decoration: none;
  transition: gap .2s;
}
.sp-author-link:hover { gap: 10px; }

/* ── Related Posts ──────────────────────────── */
.sp-related { margin-bottom: 60px; }
.sp-related-title {
  font-family: var(--ff-head);
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--ink);
  margin-bottom: 20px;
  letter-spacing: -0.02em;
}
.sp-related-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.sp-rel-card {
  background: #fff;
  border: 1px solid var(--line2);
  border-radius: var(--r2);
  overflow: hidden;
  position: relative;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease);
}
.sp-rel-card:hover { transform: translateY(-4px); box-shadow: 0 12px 32px rgba(8,17,31,.1); }
.sp-rel-img {
  height: 130px;
  overflow: hidden;
}
.sp-rel-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s var(--ease); }
.sp-rel-card:hover .sp-rel-img img { transform: scale(1.05); }
.sp-rel-img-ph {
  width: 100%; height: 130px;
  background: linear-gradient(135deg, var(--ink3) 0%, var(--ink2) 100%);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--ff-head);
  font-size: 2.5rem;
  font-weight: 900;
  color: rgba(255,255,255,.08);
  letter-spacing: -0.04em;
}
.sp-rel-body { padding: 16px; }
.sp-rel-cat {
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .07em;
  color: var(--fire);
  margin-bottom: 6px;
}
.sp-rel-h {
  font-family: var(--ff-head);
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--ink);
  line-height: 1.35;
  margin-bottom: 10px;
}
.sp-rel-h a::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 0;
  border-radius: var(--r2);
}
.sp-rel-date { font-size: 0.72rem; color: #888; }

/* ── Post Navigation ────────────────────────── */
.sp-post-nav {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 48px;
  padding-top: 20px;
  border-top: 1px solid var(--line2);
}
.sp-nav-link {
  background: #fff;
  border: 1px solid var(--line2);
  border-radius: var(--r2);
  padding: 16px 20px;
  text-decoration: none;
  transition: border-color .2s, box-shadow .2s;
}
.sp-nav-link:hover { border-color: var(--fire); box-shadow: 0 4px 16px rgba(240,98,12,.1); }
.sp-nav-dir {
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--fire);
  margin-bottom: 4px;
}
.sp-nav-title { font-size: 0.88rem; font-weight: 600; color: var(--ink); line-height: 1.4; }
.sp-nav-link.next { text-align: right; }

/* ── Comments ───────────────────────────────── */
.sp-comments { margin-top: 20px; }
.sp-comments .comment-reply-title,
.sp-comments #reply-title {
  font-family: var(--ff-head);
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--ink);
  margin-bottom: 20px;
  letter-spacing: -0.02em;
}
.sp-comments .comment-list { list-style: none; padding: 0; }
.sp-comments .comment { padding: 20px 0; border-bottom: 1px solid var(--line2); }
.sp-comments .comment-author { font-weight: 700; color: var(--ink); font-size: 0.9rem; }
.sp-comments .comment-meta a { font-size: 0.75rem; color: #888; }
.sp-comments .comment-content { font-size: 0.88rem; line-height: 1.65; color: #4a4440; margin-top: 8px; }
.sp-comments .comment-respond { margin-top: 32px; }
.sp-comments .comment-form label { display: block; font-size: 0.78rem; font-weight: 700; color: var(--ink); margin-bottom: 6px; }
.sp-comments .comment-form input[type="text"],
.sp-comments .comment-form input[type="email"],
.sp-comments .comment-form textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid var(--line2);
  border-radius: var(--r1);
  font-family: var(--ff-body);
  font-size: 0.9rem;
  color: var(--ink);
  background: #fff;
  transition: border-color .2s;
  margin-bottom: 16px;
}
.sp-comments .comment-form input:focus,
.sp-comments .comment-form textarea:focus {
  outline: none;
  border-color: var(--fire);
  box-shadow: 0 0 0 3px rgba(240,98,12,.08);
}
.sp-comments .comment-form textarea { min-height: 130px; resize: vertical; }
.sp-comments .form-submit input[type="submit"] {
  background: var(--fire);
  color: #fff;
  border: none;
  padding: 13px 28px;
  border-radius: var(--r4);
  font-family: var(--ff-body);
  font-weight: 700;
  font-size: 0.9rem;
  cursor: pointer;
  transition: background .2s, transform .2s;
}
.sp-comments .form-submit input[type="submit"]:hover { background: var(--fire2); transform: translateY(-1px); }

/* ── Sidebar ────────────────────────────────── */
.sp-sidebar {
  position: sticky;
  top: 90px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* Common widget shell */
.sp-widget {
  background: #fff;
  border: 1px solid var(--line2);
  border-radius: var(--r2);
  overflow: hidden;
}
.sp-widget-head {
  padding: 16px 20px 12px;
  border-bottom: 1px solid var(--line2);
}
.sp-widget-label {
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: #aaa;
  margin-bottom: 2px;
}
.sp-widget-title {
  font-family: var(--ff-head);
  font-size: 1rem;
  font-weight: 800;
  color: var(--ink);
  line-height: 1.2;
}
.sp-widget-body { padding: 16px 20px; }

/* CTA Widget */
.sp-cta-widget { background: var(--ink); border-color: rgba(255,255,255,.06); }
.sp-cta-widget .sp-widget-head { border-bottom-color: rgba(255,255,255,.06); }
.sp-cta-widget .sp-widget-label { color: var(--fire2); opacity: .8; }
.sp-cta-widget .sp-widget-title { color: #fff; font-size: 1.1rem; }
.sp-cta-bullets { list-style: none; padding: 0; margin: 0 0 16px; }
.sp-cta-bullets li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 0.82rem;
  color: rgba(255,255,255,.65);
  padding: 5px 0;
  border-bottom: 1px solid rgba(255,255,255,.05);
  line-height: 1.45;
}
.sp-cta-bullets li:last-child { border: none; }
.sp-cta-bullets li::before {
  content: '→';
  color: var(--fire);
  flex-shrink: 0;
  font-weight: 700;
  margin-top: 1px;
}
.sp-cta-btn {
  display: block;
  text-align: center;
  background: var(--fire);
  color: #fff;
  font-weight: 700;
  font-size: 0.85rem;
  padding: 12px 20px;
  border-radius: var(--r4);
  text-decoration: none;
  transition: background .2s, transform .2s;
  letter-spacing: .02em;
}
.sp-cta-btn:hover { background: var(--fire2); transform: translateY(-1px); }
.sp-cta-note {
  text-align: center;
  font-size: 0.7rem;
  color: rgba(255,255,255,.3);
  margin-top: 8px;
}

/* Case Study / Results Widget */
.sp-results-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
.sp-result-stat {
  background: var(--mist);
  border-radius: var(--r1);
  padding: 12px;
  text-align: center;
}
.sp-result-num {
  font-family: var(--ff-head);
  font-size: 1.4rem;
  font-weight: 900;
  color: var(--fire);
  line-height: 1;
  margin-bottom: 3px;
}
.sp-result-desc { font-size: 0.68rem; color: #888; font-weight: 600; line-height: 1.3; }

/* Lead Magnet Widget */
.sp-lead-widget { background: linear-gradient(135deg, #fff9f6 0%, #fff 100%); border-color: rgba(240,98,12,.2); }
.sp-lead-icon {
  font-size: 2rem;
  margin-bottom: 8px;
  display: block;
}
.sp-lead-title { font-family: var(--ff-head); font-size: 0.95rem; font-weight: 800; color: var(--ink); margin-bottom: 6px; }
.sp-lead-desc { font-size: 0.78rem; color: #6a6460; line-height: 1.55; margin-bottom: 14px; }
.sp-lead-form { display: flex; flex-direction: column; gap: 8px; }
.sp-lead-form input[type="email"] {
  width: 100%;
  padding: 10px 14px;
  border: 1px solid var(--line2);
  border-radius: var(--r1);
  font-family: var(--ff-body);
  font-size: 0.82rem;
  color: var(--ink);
}
.sp-lead-form input[type="email"]:focus { outline: none; border-color: var(--fire); }
.sp-lead-form button {
  background: var(--fire);
  color: #fff;
  border: none;
  padding: 10px;
  border-radius: var(--r1);
  font-family: var(--ff-body);
  font-weight: 700;
  font-size: 0.82rem;
  cursor: pointer;
  transition: background .2s;
}
.sp-lead-form button:hover { background: var(--fire2); }
.sp-lead-privacy { font-size: 0.65rem; color: #aaa; text-align: center; margin-top: 4px; }

/* ── Newsletter Signup Widget ── */
.sp-nl-widget {
  background: linear-gradient(135deg, #f0f8ff 0%, #fff 100%);
  border-color: rgba(14,100,200,.2);
}
.sp-nl-icon {
  font-size: 2rem;
  display: block;
  margin-bottom: 8px;
}
.sp-nl-title {
  font-family: var(--ff-head);
  font-size: 0.95rem;
  font-weight: 800;
  color: var(--ink);
  margin-bottom: 6px;
}
.sp-nl-desc {
  font-size: 0.78rem;
  color: #6a6460;
  line-height: 1.55;
  margin-bottom: 14px;
}
.sp-nl-form {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.sp-nl-field-row input {
  width: 100%;
  padding: 10px 14px;
  border: 1px solid var(--line2);
  border-radius: var(--r1);
  font-family: var(--ff-body);
  font-size: 0.82rem;
  color: var(--ink);
  box-sizing: border-box;
  transition: border-color .2s;
}
.sp-nl-field-row input:focus {
  outline: none;
  border-color: #0e64c8;
  box-shadow: 0 0 0 3px rgba(14,100,200,.12);
}
.sp-nl-btn {
  background: #0e64c8;
  color: #fff;
  border: none;
  padding: 11px 16px;
  border-radius: var(--r1);
  font-family: var(--ff-body);
  font-weight: 700;
  font-size: 0.82rem;
  cursor: pointer;
  transition: background .2s, opacity .2s;
  width: 100%;
  margin-top: 2px;
}
.sp-nl-btn:hover { background: #0a4fa0; }
.sp-nl-btn:disabled { opacity: .6; cursor: not-allowed; }
.sp-nl-error {
  font-size: 0.75rem;
  color: #c0392b;
  background: #fff0ef;
  border: 1px solid rgba(192,57,43,.25);
  padding: 8px 12px;
  border-radius: var(--r1);
  margin-top: 4px;
}
.sp-nl-privacy {
  font-size: 0.65rem;
  color: #aaa;
  text-align: center;
  margin-top: 4px;
}

/* Newsletter success state */
.sp-nl-success {
  text-align: center;
  padding: 8px 0;
}
.sp-nl-success-icon {
  font-size: 2.5rem;
  display: block;
  margin-bottom: 10px;
}
.sp-nl-success-title {
  font-family: var(--ff-head);
  font-size: 1.05rem;
  font-weight: 800;
  color: #1a7a3c;
  margin-bottom: 6px;
}
.sp-nl-success-msg {
  font-size: 0.8rem;
  color: #5a7060;
  line-height: 1.5;
  margin: 0;
}

/* Recent Posts Widget */
.sp-recent-list { list-style: none; padding: 0; margin: 0; }
.sp-recent-item { display: flex; gap: 10px; padding: 10px 0; border-bottom: 1px solid var(--line2); align-items: flex-start; }
.sp-recent-item:last-child { border: none; padding-bottom: 0; }
.sp-recent-thumb {
  width: 52px; height: 52px;
  border-radius: var(--r1);
  object-fit: cover;
  flex-shrink: 0;
  background: var(--mist);
}
.sp-recent-ph {
  width: 52px; height: 52px;
  border-radius: var(--r1);
  background: linear-gradient(135deg, var(--ink3), var(--ink2));
  flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--ff-head);
  font-size: 0.9rem;
  font-weight: 900;
  color: rgba(255,255,255,.12);
}
.sp-recent-info {}
.sp-recent-t {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--ink);
  line-height: 1.4;
  margin-bottom: 4px;
  text-decoration: none;
  display: block;
  transition: color .2s;
}
.sp-recent-t:hover { color: var(--fire); }
.sp-recent-date { font-size: 0.68rem; color: #aaa; }

/* ── Mobile Sticky CTA ──────────────────────── */
.sp-sticky-cta {
  display: none;
  position: fixed;
  bottom: 0; left: 0; right: 0;
  background: var(--ink);
  border-top: 1px solid rgba(255,255,255,.08);
  padding: 12px 20px;
  z-index: 500;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.sp-sticky-cta-text {
  font-size: 0.82rem;
  color: rgba(255,255,255,.75);
  line-height: 1.35;
}
.sp-sticky-cta-text strong { color: #fff; display: block; }
.sp-sticky-cta-btn {
  background: var(--fire);
  color: #fff;
  font-weight: 700;
  font-size: 0.82rem;
  padding: 10px 18px;
  border-radius: var(--r4);
  text-decoration: none;
  white-space: nowrap;
  flex-shrink: 0;
  transition: background .2s;
}
.sp-sticky-cta-btn:hover { background: var(--fire2); }
.sp-sticky-cta-close {
  background: none;
  border: none;
  color: rgba(255,255,255,.35);
  font-size: 1.2rem;
  cursor: pointer;
  padding: 4px;
  flex-shrink: 0;
  line-height: 1;
}

/* ── Responsive ─────────────────────────────── */
@media (max-width: 960px) {
  .sp-body-inner {
    grid-template-columns: 1fr;
  }
  .sp-sidebar {
    position: static;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }
  .sp-cta-widget { grid-column: 1 / -1; }
  .sp-related-grid { grid-template-columns: repeat(2, 1fr); }
  .sp-sticky-cta { display: flex; }
}
@media (max-width: 600px) {
  .sp-hero h1 { font-size: 1.8rem; }
  .sp-sidebar { grid-template-columns: 1fr; }
  .sp-related-grid { grid-template-columns: 1fr; }
  .sp-post-nav { grid-template-columns: 1fr; }
  .sp-author { flex-direction: column; align-items: center; text-align: center; }
  .sp-hero-share { justify-content: center; }
  .sp-meta-row { justify-content: center; font-size: 0.75rem; }
  .sp-hero h1 { text-align: center; }
  .sp-cat-pill { display: block; width: fit-content; margin: 0 auto 20px; }
}
