/* Extracted from style.css — page-specific rules for sbp */



/* ==========================================================
   SINGLE-BLOG ARTICLE LAYOUT — article + sticky sidebar
   ========================================================== */
.sbp-layout {
  padding: var(--sec-py-lg) 0;
  background: #f7f8fb;
  position: relative;
}

.sbp-layout::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 260px;
  background: linear-gradient(180deg, #eef1f7 0%, #f7f8fb 100%);
  z-index: 0;
}

.sbp-layout .container {
  position: relative;
  z-index: 1;
}

.sbp-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 340px;
  gap: 70px;
}

/* ----- article ----- */
.sbp-article {
  background: #fff;
  border-radius: 26px;
  padding: 56px 64px;
  box-shadow: 0 1px 0 rgba(9, 16, 46, 0.04), 0 24px 60px -30px rgba(9, 16, 46, 0.18);
  overflow: hidden;
}

/* ----- featured image + meta ----- */
.sbp-featured {
  margin: 0 0 40px;
}

.sbp-featured-top {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 18px;
}

.sbp-featured-cat {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  border-radius: 999px;
  background: linear-gradient(135deg, #7ACC0D 0%, #5aa00a 100%);
  color: #09102e;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.28px;
  text-transform: uppercase;
  text-decoration: none;
  box-shadow: 0 8px 20px -8px rgba(122, 204, 13, 0.5);
  transition: all 0.2s ease;
}

.sbp-featured-cat:hover {
  background: #09102e;
  color: #7ACC0D;
  transform: translateY(-1px);
}

.sbp-featured-cat i {
  font-size: 14px;
}

.sbp-featured-dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: rgba(9, 16, 46, 0.25);
}

.sbp-featured-date,
.sbp-featured-read {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 600;
  color: #4a5070;
  letter-spacing: 0.32px;
}

.sbp-featured-date i,
.sbp-featured-read i {
  color: #7ACC0D;
  font-size: 15px;
}

.sbp-featured-img {
  position: relative;
  margin: 0;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 30px 60px -24px rgba(9, 16, 46, 0.35), 0 0 0 1px rgba(9, 16, 46, 0.05);
}

.sbp-featured-img img {
  width: 100%;
  display: block;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.22, 0.61, 0.36, 1);
}

.sbp-featured-img:hover img {
  transform: scale(1.03);
}

.sbp-featured-badge {
  position: absolute;
  top: 18px;
  left: 18px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(9, 16, 46, 0.85);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  color: #7ACC0D;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.6px;
  text-transform: uppercase;
  border: 1px solid rgba(122, 204, 13, 0.3);
}

.sbp-featured-badge i {
  font-size: 13px;
}

/* ----- article H2 title (after featured image) ----- */
.sbp-article-title {
  font-family: 'Publico Banner', 'Fraunces', serif;
  font-weight: 700;
  font-size: clamp(30px, 3.6vw, 44px);
  line-height: 1.15;
  letter-spacing: -0.32px;
  color: #09102e;
  margin: 0 0 28px;
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(9, 16, 46, 0.08);
}

/* ----- stats strip ----- */
.sbp-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  background: linear-gradient(135deg, #09102e 0%, #0b1436 100%);
  border-radius: 18px;
  padding: 28px 24px;
  margin-bottom: 44px;
  position: relative;
  overflow: hidden;
}

.sbp-stats::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(122, 204, 13, 0.15) 0%, transparent 60%);
  pointer-events: none;
}

.sbp-stat {
  text-align: center;
  color: #fff;
  padding: 0 14px;
  border-right: 1px solid rgba(255, 255, 255, 0.1);
  position: relative;
  z-index: 1;
}

.sbp-stat:last-child {
  border-right: none;
}

.sbp-stat-num {
  display: block;
  font-family: 'Publico Banner', 'Fraunces', serif;
  font-weight: 700;
  font-size: clamp(28px, 2.6vw, 40px);
  line-height: 1;
  color: #7ACC0D;
  margin-bottom: 6px;
}

.sbp-stat-num small {
  font-size: 8.8px;
  color: #7ACC0D;
  margin-left: 2px;
}

.sbp-stat-label {
  display: block;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.7);
  font-weight: 500;
  letter-spacing: 0.32px;
}

/* ----- article body typography ----- */
.sbp-article p,
.sbp-article li {
  font-family: 'Inter', sans-serif;
  font-size: 17px;
  line-height: 1.75;
  color: #2d3452;
}

.sbp-article p {
  margin: 0 0 22px;
}

.sbp-article strong {
  color: #09102e;
  font-weight: 700;
}

.sbp-article em {
  color: #09102e;
}

.sbp-lead {
  font-size: 20px !important;
  line-height: 1.6 !important;
  color: #09102e !important;
  font-weight: 500;
  margin-bottom: 28px !important;
  padding-bottom: 28px;
  border-bottom: 1px solid rgba(9, 16, 46, 0.08);
}

/* ----- section headings with number ----- */
.sbp-h2 {
  font-family: 'Publico Banner', 'Fraunces', serif;
  font-weight: 700;
  font-size: clamp(26px, 2.4vw, 34px);
  line-height: 1.2;
  color: #09102e;
  letter-spacing: -0.16px;
  margin: 52px 0 22px;
  scroll-margin-top: 120px;
  display: flex;
  align-items: baseline;
  gap: 14px;
}

.sbp-h2-num {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 700;
  color: #7ACC0D;
  background: rgba(122, 204, 13, 0.1);
  padding: 6px 12px;
  border-radius: 8px;
  letter-spacing: 0.96px;
  flex-shrink: 0;
}

/* ----- callout ----- */
.sbp-callout {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  background: linear-gradient(135deg, rgba(122, 204, 13, 0.08) 0%, rgba(122, 204, 13, 0.03) 100%);
  border-left: 4px solid #7ACC0D;
  border-radius: 14px;
  padding: 22px 24px;
  margin: 28px 0 32px;
}

.sbp-callout-icon {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: #7ACC0D;
  color: #09102e;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
}

.sbp-callout div {
  font-size: 16px;
  line-height: 1.65;
  color: #09102e;
}

.sbp-callout strong {
  display: inline;
}

/* ----- check list ----- */
.sbp-check-list {
  list-style: none;
  padding: 0;
  margin: 0 0 32px;
}

.sbp-check-list li {
  position: relative;
  padding: 12px 0 12px 38px;
  font-size: 17px;
  line-height: 1.65;
  border-bottom: 1px solid rgba(9, 16, 46, 0.06);
}

.sbp-check-list li:last-child {
  border-bottom: none;
}

.sbp-check-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 16px;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: rgba(122, 204, 13, 0.15);
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%237ACC0D'><path d='M13.485 1.929a.75.75 0 0 1 1.06 1.06L6.374 11.16a.75.75 0 0 1-1.06 0L1.454 7.298a.75.75 0 0 1 1.06-1.06l3.33 3.33 7.64-7.64z'/></svg>");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 14px;
}

/* ----- figure + caption ----- */
.sbp-fig {
  margin: 36px 0;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 20px 50px -20px rgba(9, 16, 46, 0.25);
}

.sbp-fig img {
  width: 100%;
  display: block;
  aspect-ratio: 16/9;
  object-fit: cover;
}

.sbp-fig figcaption {
  background: #09102e;
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
  padding: 14px 20px;
  text-align: center;
  font-style: italic;
}

/* ----- pull quote ----- */
.sbp-quote {
  position: relative;
  margin: 40px -20px;
  padding: 38px 48px 34px;
  background: linear-gradient(135deg, #09102e 0%, #0b1436 100%);
  border-radius: 22px;
  color: #fff;
  overflow: hidden;
}

.sbp-quote::before {
  content: '';
  position: absolute;
  top: -40%;
  right: -10%;
  width: 260px;
  height: 260px;
  background: radial-gradient(circle, rgba(122, 204, 13, 0.18) 0%, transparent 65%);
  pointer-events: none;
}

.sbp-quote-mark {
  position: absolute;
  top: 18px;
  left: 28px;
  font-size: 72px;
  color: #7ACC0D;
  opacity: 0.4;
  line-height: 1;
}

.sbp-quote p {
  position: relative;
  z-index: 1;
  font-family: 'Publico Banner', 'Fraunces', serif !important;
  font-size: clamp(19px, 1.8vw, 24px) !important;
  line-height: 1.5 !important;
  color: #fff !important;
  font-weight: 500;
  margin-bottom: 16px !important;
  font-style: italic;
}

.sbp-quote cite {
  position: relative;
  z-index: 1;
  display: block;
  font-style: normal;
  font-size: 13px;
  color: #7ACC0D;
  font-weight: 600;
  letter-spacing: 0.64px;
  text-transform: uppercase;
}

/* ----- result grid ----- */
.sbp-result-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin: 28px 0 34px;
}

.sbp-result {
  background: #fff;
  border: 1px solid rgba(9, 16, 46, 0.08);
  border-radius: 14px;
  padding: 22px 24px;
  transition: all 0.25s ease;
}

.sbp-result:hover {
  border-color: #7ACC0D;
  box-shadow: 0 14px 32px -18px rgba(122, 204, 13, 0.35);
  transform: translateY(-2px);
}

.sbp-result-label {
  display: block;
  font-size: 13px;
  color: #6b7186;
  font-weight: 500;
  margin-bottom: 6px;
  text-transform: uppercase;
  letter-spacing: 0.64px;
}

.sbp-result-value {
  display: block;
  font-family: 'Publico Banner', 'Fraunces', serif;
  font-weight: 700;
  font-size: 38px;
  line-height: 1;
  color: #09102e;
  margin-bottom: 6px;
}

.sbp-result-sub {
  display: block;
  font-size: 13px;
  color: #7ACC0D;
  font-weight: 600;
}

/* ----- numbered list ----- */
.sbp-numbered-list {
  list-style: none;
  counter-reset: sbp-count;
  padding: 0;
  margin: 0 0 32px;
}

.sbp-numbered-list li {
  counter-increment: sbp-count;
  position: relative;
  padding: 20px 0 20px 62px;
  border-bottom: 1px solid rgba(9, 16, 46, 0.06);
  font-size: 17px;
  line-height: 1.7;
}

.sbp-numbered-list li:last-child {
  border-bottom: none;
}

.sbp-numbered-list li::before {
  content: counter(sbp-count, decimal-leading-zero);
  position: absolute;
  left: 0;
  top: 18px;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: linear-gradient(135deg, #7ACC0D 0%, #5aa00a 100%);
  color: #09102e;
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  letter-spacing: 0.32px;
}

/* ----- CTA box inside article ----- */
.sbp-cta-box {
  position: relative;
  margin: 50px 0 40px;
  padding: 44px 48px;
  background: linear-gradient(135deg, #09102e 0%, #0b1436 60%, #0d1a4a 100%);
  border-radius: 26px;
  overflow: hidden;
  color: #fff;
  text-align: center;
}

.sbp-cta-glow {
  position: absolute;
  top: -50%;
  left: 50%;
  width: 400px;
  height: 400px;
  transform: translateX(-50%);
  background: radial-gradient(circle, rgba(122, 204, 13, 0.22) 0%, transparent 60%);
  pointer-events: none;
}

.sbp-cta-inner {
  position: relative;
  z-index: 1;
}

.sbp-cta-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 16px;
  border-radius: 999px;
  background: rgba(122, 204, 13, 0.15);
  border: 1px solid rgba(122, 204, 13, 0.35);
  color: #7ACC0D;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.28px;
  text-transform: uppercase;
  margin-bottom: 18px;
}

.sbp-cta-title {
  font-family: 'Publico Banner', 'Fraunces', serif;
  font-weight: 700;
  font-size: clamp(24px, 2.4vw, 32px);
  line-height: 1.2;
  color: #fff;
  margin: 0 0 14px;
  letter-spacing: -0.16px;
}

.sbp-cta-sub {
  font-size: 16px !important;
  line-height: 1.6 !important;
  color: rgba(255, 255, 255, 0.75) !important;
  max-width: 560px;
  margin: 0 auto 24px !important;
}

.sbp-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 30px;
  border-radius: 999px;
  background: #7ACC0D;
  color: #09102e;
  font-weight: 700;
  font-size: 15px;
  text-decoration: none;
  transition: all 0.25s ease;
  box-shadow: 0 10px 30px -8px rgba(122, 204, 13, 0.5);
}

.sbp-cta-btn:hover {
  background: #8ee012;
  color: #09102e;
  transform: translateY(-2px);
  box-shadow: 0 16px 36px -10px rgba(122, 204, 13, 0.6);
}

.sbp-cta-btn i {
  transition: transform 0.25s ease;
}

.sbp-cta-btn:hover i {
  transform: translateX(4px);
}

/* ----- footer bar (tags + share) ----- */
.sbp-footer-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
  padding: 24px 0;
  margin: 40px 0 0;
  border-top: 1px solid rgba(9, 16, 46, 0.1);
  border-bottom: 1px solid rgba(9, 16, 46, 0.1);
}

.sbp-tags,
.sbp-share {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.sbp-tags-label,
.sbp-share-label {
  font-size: 13px;
  font-weight: 700;
  color: #09102e;
  text-transform: uppercase;
  letter-spacing: 0.64px;
  margin-right: 4px;
}

.sbp-tag {
  padding: 6px 14px;
  border-radius: 999px;
  background: rgba(9, 16, 46, 0.05);
  color: #09102e;
  font-size: 13px;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.2s ease;
}

.sbp-tag:hover {
  background: #7ACC0D;
  color: #09102e;
}

.sbp-share-btn {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(9, 16, 46, 0.05);
  color: #09102e;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: all 0.2s ease;
}

.sbp-share-btn:hover {
  background: #09102e;
  color: #7ACC0D;
  transform: translateY(-2px);
}

/* ----- author bio card ----- */
.sbp-author-card {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 24px;
  align-items: flex-start;
  margin: 36px 0 0;
  padding: 32px;
  background: linear-gradient(135deg, #f7f8fb 0%, #eef1f7 100%);
  border-radius: 20px;
  border: 1px solid rgba(9, 16, 46, 0.06);
}

.sbp-author-avatar {
  width: 110px;
  height: 110px;
  border-radius: 22px;
  background: linear-gradient(135deg, #7ACC0D 0%, #5aa00a 100%);
  color: #09102e;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 52px;
  box-shadow: 0 16px 30px -12px rgba(122, 204, 13, 0.5);
}

.sbp-author-role {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #7ACC0D;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.28px;
  text-transform: uppercase;
  margin-bottom: 6px;
}

.sbp-author-name {
  font-family: 'Publico Banner', 'Fraunces', serif;
  font-weight: 700;
  font-size: 26px;
  color: #09102e;
  margin: 0 0 8px;
}

.sbp-author-bio {
  font-size: 15px !important;
  line-height: 1.6 !important;
  color: #4a5070 !important;
  margin: 0 0 16px !important;
}

.sbp-author-social {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.sbp-author-social a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #fff;
  color: #09102e;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  text-decoration: none;
  transition: all 0.2s ease;
  border: 1px solid rgba(9, 16, 46, 0.08);
}

.sbp-author-social a:hover {
  background: #09102e;
  color: #7ACC0D;
  border-color: #09102e;
}

.sbp-author-follow {
  width: auto !important;
  border-radius: 999px !important;
  padding: 0 18px !important;
  background: #7ACC0D !important;
  font-weight: 700;
  font-size: 13px !important;
  margin-left: 6px;
}

.sbp-author-follow:hover {
  background: #09102e !important;
  color: #7ACC0D !important;
}

/* ========================================================== STICKY SIDEBAR ========================================================== */
.sbp-sidebar {
  position: relative;
}

.sbp-sticky {
  position: sticky;
  top: 100px;
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.sbp-widget {
  background: #fff;
  border-radius: 18px;
  padding: 24px 22px;
  box-shadow: 0 1px 0 rgba(9, 16, 46, 0.04), 0 12px 32px -20px rgba(9, 16, 46, 0.18);
}

.sbp-widget-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 11px;
  font-weight: 700;
  color: #09102e;
  letter-spacing: 1.92px;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.sbp-widget-eyebrow i {
  color: #7ACC0D;
  font-size: 14px;
}

.sbp-eyebrow-light {
  color: rgba(255, 255, 255, 0.85);
}

.sbp-eyebrow-light i {
  color: #7ACC0D;
}

/* TOC */
.sbp-toc-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.sbp-toc-list a {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 12px;
  border-radius: 10px;
  color: #4a5070;
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  border-left: 3px solid transparent;
  transition: all 0.2s ease;
}

.sbp-toc-list a:hover {
  background: rgba(122, 204, 13, 0.08);
  color: #09102e;
}

.sbp-toc-list a.active {
  background: rgba(122, 204, 13, 0.1);
  color: #09102e;
  border-left-color: #7ACC0D;
  font-weight: 600;
}

.sbp-toc-num {
  font-size: 11px;
  font-weight: 700;
  color: #7ACC0D;
  letter-spacing: 0.64px;
  background: rgba(122, 204, 13, 0.12);
  padding: 3px 8px;
  border-radius: 6px;
  flex-shrink: 0;
}

/* Trending list */
.sbp-trend-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.sbp-trend-list a {
  display: flex;
  gap: 14px;
  padding: 14px 4px;
  border-bottom: 1px solid rgba(9, 16, 46, 0.06);
  text-decoration: none;
  transition: all 0.2s ease;
}

.sbp-trend-list li:last-child a {
  border-bottom: none;
  padding-bottom: 4px;
}

.sbp-trend-list a:hover h5 {
  color: #7ACC0D;
}

.sbp-trend-num {
  font-family: 'Publico Banner', 'Fraunces', serif;
  font-weight: 700;
  font-size: 26px;
  line-height: 1;
  color: rgba(9, 16, 46, 0.25);
  flex-shrink: 0;
  min-width: 34px;
  transition: color 0.2s ease;
}

.sbp-trend-list a:hover .sbp-trend-num {
  color: #7ACC0D;
}

.sbp-trend-list h5 {
  font-size: 14px;
  font-weight: 600;
  color: #09102e;
  line-height: 1.4;
  margin: 0 0 6px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  transition: color 0.2s ease;
}

.sbp-trend-list span {
  font-size: 12px;
  color: #6b7186;
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

/* Newsletter widget */
.sbp-side-nl {
  position: relative;
  background: linear-gradient(135deg, #09102e 0%, #0b1436 100%) !important;
  color: #fff;
  overflow: hidden;
}

.sbp-side-nl-bg {
  position: absolute;
  top: -40%;
  right: -30%;
  width: 220px;
  height: 220px;
  background: radial-gradient(circle, rgba(122, 204, 13, 0.25) 0%, transparent 65%);
  pointer-events: none;
}

.sbp-side-nl-title {
  font-family: 'Publico Banner', 'Fraunces', serif;
  font-weight: 600;
  font-size: 20px;
  color: #fff;
  line-height: 1.3;
  margin: 0 0 16px;
  position: relative;
  z-index: 1;
}

.sbp-side-nl-title strong {
  color: #7ACC0D;
  font-weight: 700;
}

.sbp-side-nl-form {
  display: flex;
  flex-direction: column;
  gap: 8px;
  position: relative;
  z-index: 1;
}

.sbp-side-nl-form input {
  padding: 12px 14px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: #fff;
  font-size: 13px;
  font-family: inherit;
  outline: none;
  transition: all 0.2s ease;
}

.sbp-side-nl-form input::placeholder {
  color: rgba(255, 255, 255, 0.5);
}

.sbp-side-nl-form input:focus {
  border-color: #7ACC0D;
  background: rgba(122, 204, 13, 0.08);
}

.sbp-side-nl-form button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 16px;
  border: none;
  border-radius: 10px;
  background: #7ACC0D;
  color: #09102e;
  font-weight: 700;
  font-size: 13px;
  cursor: pointer;
  transition: all 0.2s ease;
}

.sbp-side-nl-form button:hover {
  background: #8ee012;
  transform: translateY(-1px);
}

.sbp-side-nl-note {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 12px;
  font-size: 11px;
  color: rgba(255, 255, 255, 0.55);
  position: relative;
  z-index: 1;
}

.sbp-side-nl-note i {
  color: #7ACC0D;
}

/* ----- 1 ▸ Search widget ----- */
.sbp-search {
  padding: 14px 14px !important;
  background: linear-gradient(135deg, #09102e 0%, #0b1436 100%) !important;
  overflow: hidden;
}

.sbp-search-form {
  display: flex;
  align-items: center;
  gap: 8px;
  position: relative;
}

.sbp-search-icon {
  position: absolute;
  left: 14px;
  color: rgba(255, 255, 255, 0.5);
  font-size: 14px;
  pointer-events: none;
}

.sbp-search-form input {
  flex: 1;
  padding: 12px 12px 12px 38px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
  border-radius: 10px;
  font-size: 13px;
  font-family: inherit;
  outline: none;
  transition: all 0.2s ease;
}

.sbp-search-form input::placeholder {
  color: rgba(255, 255, 255, 0.45);
}

.sbp-search-form input:focus {
  border-color: #7ACC0D;
  background: rgba(122, 204, 13, 0.08);
}

.sbp-search-form button {
  width: 42px;
  height: 42px;
  border: none;
  background: #7ACC0D;
  color: #09102e;
  border-radius: 10px;
  font-size: 16px;
  cursor: pointer;
  transition: all 0.2s ease;
  flex-shrink: 0;
}

.sbp-search-form button:hover {
  background: #8ee012;
  transform: translateY(-1px);
}

/* ----- 3 ▸ CTA Side (Get Free Consultation) ----- */
.sbp-cta-side {
  position: relative;
  background: linear-gradient(135deg, #09102e 0%, #0b1436 60%, #0d1a4a 100%) !important;
  color: #fff;
  padding: 28px 24px !important;
  overflow: hidden;
  text-align: center;
}

.sbp-cta-side-glow {
  position: absolute;
  top: -40%;
  left: 50%;
  transform: translateX(-50%);
  width: 260px;
  height: 260px;
  background: radial-gradient(circle, rgba(122, 204, 13, 0.3) 0%, transparent 60%);
  pointer-events: none;
}

.sbp-cta-side-icon {
  position: relative;
  z-index: 1;
  display: inline-flex;
  width: 56px;
  height: 56px;
  border-radius: 16px;
  background: linear-gradient(135deg, #7ACC0D 0%, #5aa00a 100%);
  color: #09102e;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin-bottom: 16px;
  box-shadow: 0 10px 24px -8px rgba(122, 204, 13, 0.5);
}

.sbp-cta-side-title {
  position: relative;
  z-index: 1;
  font-family: 'Publico Banner', 'Fraunces', serif;
  font-weight: 600;
  font-size: 20px;
  line-height: 1.3;
  color: #fff;
  margin: 0 0 10px;
}

.sbp-cta-side-title strong {
  color: #7ACC0D;
  font-weight: 700;
}

.sbp-cta-side-sub {
  position: relative;
  z-index: 1;
  font-size: 13px;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.7);
  margin: 0 0 18px;
}

.sbp-cta-side-btn {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 22px;
  width: 100%;
  border-radius: 10px;
  background: #7ACC0D;
  color: #09102e;
  font-weight: 700;
  font-size: 13px;
  text-decoration: none;
  transition: all 0.2s ease;
  box-shadow: 0 8px 20px -6px rgba(122, 204, 13, 0.5);
}

.sbp-cta-side-btn:hover {
  background: #8ee012;
  color: #09102e;
  transform: translateY(-1px);
}

.sbp-cta-side-btn i {
  transition: transform 0.2s ease;
}

.sbp-cta-side-btn:hover i {
  transform: translateX(3px);
}

.sbp-cta-side-proof {
  position: relative;
  z-index: 1;
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.sbp-cta-side-stars {
  color: #ffc107;
  font-size: 13px;
  letter-spacing: 2px;
  margin-bottom: 4px;
}

.sbp-cta-side-proof span {
  display: block;
  font-size: 11px;
  color: rgba(255, 255, 255, 0.55);
  font-weight: 500;
}

/* ----- 4 ▸ Categories widget ----- */
.sbp-cat-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.sbp-cat-list a {
  display: grid;
  grid-template-columns: 36px 1fr auto;
  align-items: center;
  gap: 12px;
  padding: 10px 10px;
  border-radius: 10px;
  text-decoration: none;
  transition: all 0.2s ease;
}

.sbp-cat-list a:hover {
  background: rgba(122, 204, 13, 0.08);
  transform: translateX(3px);
}

.sbp-cat-icon {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  color: #fff;
  flex-shrink: 0;
}

.sbp-cat-ai {
  background: linear-gradient(135deg, #7ACC0D, #5aa00a);
  color: #09102e;
}

.sbp-cat-web {
  background: linear-gradient(135deg, #3b82f6, #2563eb);
}

.sbp-cat-design {
  background: linear-gradient(135deg, #ec4899, #be185d);
}

.sbp-cat-seo {
  background: linear-gradient(135deg, #f59e0b, #d97706);
}

.sbp-cat-auto {
  background: linear-gradient(135deg, #8b5cf6, #6d28d9);
}

.sbp-cat-saas {
  background: linear-gradient(135deg, #ef4444, #b91c1c);
}

.sbp-cat-name {
  font-size: 14px;
  font-weight: 600;
  color: #09102e;
}

.sbp-cat-count {
  font-size: 12px;
  font-weight: 700;
  color: #6b7186;
  background: rgba(9, 16, 46, 0.05);
  padding: 4px 10px;
  border-radius: 999px;
  transition: all 0.2s ease;
}

.sbp-cat-list a:hover .sbp-cat-count {
  background: #7ACC0D;
  color: #09102e;
}

/* ----- 5 ▸ Recent posts (with thumbs) ----- */
.sbp-recent-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.sbp-recent-list a {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 12px;
  padding: 10px 4px;
  border-bottom: 1px solid rgba(9, 16, 46, 0.06);
  text-decoration: none;
  transition: all 0.2s ease;
}

.sbp-recent-list li:last-child a {
  border-bottom: none;
}

.sbp-recent-list a:hover h5 {
  color: #7ACC0D;
}

.sbp-recent-thumb {
  width: 72px;
  height: 72px;
  border-radius: 10px;
  overflow: hidden;
  flex-shrink: 0;
  position: relative;
}

.sbp-recent-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.sbp-recent-list a:hover .sbp-recent-thumb img {
  transform: scale(1.08);
}

.sbp-recent-body {
  min-width: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.sbp-recent-body h5 {
  font-size: 13px;
  font-weight: 600;
  color: #09102e;
  line-height: 1.4;
  margin: 0 0 6px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  transition: color 0.2s ease;
}

.sbp-recent-body span {
  font-size: 11px;
  color: #6b7186;
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

.sbp-recent-body span i {
  color: #7ACC0D;
  font-size: 12px;
}

/* ----- 8 ▸ Advertisement banner ----- */
.sbp-ad {
  position: relative;
  background: linear-gradient(155deg, #7ACC0D 0%, #5aa00a 100%) !important;
  color: #09102e;
  padding: 26px 24px !important;
  overflow: hidden;
}

.sbp-ad-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.sbp-ad-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(32px);
}

.sbp-ad-orb-a {
  width: 160px;
  height: 160px;
  top: -30%;
  right: -20%;
  background: rgba(255, 255, 255, 0.3);
}

.sbp-ad-orb-b {
  width: 140px;
  height: 140px;
  bottom: -30%;
  left: -20%;
  background: rgba(9, 16, 46, 0.15);
}

.sbp-ad-label {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 10px;
  font-weight: 700;
  color: rgba(9, 16, 46, 0.7);
  letter-spacing: 1.92px;
  text-transform: uppercase;
}

.sbp-ad-label i {
  font-size: 11px;
}

.sbp-ad-pill {
  position: absolute;
  top: 20px;
  right: 20px;
  z-index: 2;
  padding: 5px 12px;
  border-radius: 999px;
  background: #09102e;
  color: #7ACC0D;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.96px;
  text-transform: uppercase;
  box-shadow: 0 6px 14px -4px rgba(9, 16, 46, 0.3);
}

.sbp-ad-title {
  position: relative;
  z-index: 1;
  font-family: 'Publico Banner', 'Fraunces', serif;
  font-weight: 700;
  font-size: 22px;
  line-height: 1.2;
  color: #09102e;
  margin: 10px 0 10px;
  letter-spacing: -0.16px;
}

.sbp-ad-title span {
  background: rgba(9, 16, 46, 0.08);
  padding: 0 6px;
  border-radius: 6px;
}

.sbp-ad-sub {
  position: relative;
  z-index: 1;
  font-size: 13px;
  line-height: 1.5;
  color: rgba(9, 16, 46, 0.75);
  margin: 0 0 14px;
}

.sbp-ad-list {
  position: relative;
  z-index: 1;
  list-style: none;
  padding: 0;
  margin: 0 0 16px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.sbp-ad-list li {
  font-size: 12px !important;
  font-weight: 600;
  color: #09102e !important;
  display: flex;
  align-items: center;
  gap: 8px;
  line-height: 1.4 !important;
  border: none !important;
  padding: 0 !important;
}

.sbp-ad-list li i {
  color: #09102e;
  font-size: 14px;
}

.sbp-ad-btn {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 20px;
  width: 100%;
  border-radius: 10px;
  background: #09102e;
  color: #7ACC0D;
  font-weight: 700;
  font-size: 13px;
  text-decoration: none;
  transition: all 0.2s ease;
}

.sbp-ad-btn:hover {
  background: #fff;
  color: #09102e;
  transform: translateY(-1px);
}

.sbp-ad-btn i {
  transition: transform 0.2s ease;
}

.sbp-ad-btn:hover i {
  transform: translateX(3px);
}

/* ----- 9 ▸ Social media follow ----- */
.sbp-social-grid {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.sbp-social-btn {
  display: grid;
  grid-template-columns: 38px 1fr;
  align-items: center;
  gap: 12px;
  padding: 10px 12px;
  border-radius: 10px;
  background: rgba(9, 16, 46, 0.04);
  text-decoration: none;
  transition: all 0.2s ease;
}

.sbp-social-btn:hover {
  background: #09102e;
  transform: translateX(3px);
}

.sbp-social-btn>i {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  color: #fff;
  transition: all 0.2s ease;
}

.sbp-social-linkedin>i {
  background: #0a66c2;
}

.sbp-social-yt>i {
  background: #ff0000;
}

.sbp-social-ig>i {
  background: linear-gradient(135deg, #833ab4, #fd1d1d, #fcb045);
}

.sbp-social-fb>i {
  background: #1877f2;
}

.sbp-social-x>i {
  background: #000;
}

.sbp-social-btn strong {
  display: block;
  font-size: 13px;
  font-weight: 700;
  color: #09102e;
  transition: color 0.2s ease;
}

.sbp-social-btn span {
  display: block;
  font-size: 11px;
  color: #6b7186;
  font-weight: 500;
  transition: color 0.2s ease;
}

.sbp-social-btn:hover strong {
  color: #7ACC0D;
}

.sbp-social-btn:hover span {
  color: rgba(255, 255, 255, 0.7);
}

/* Tags cloud */
.sbp-side-tags-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.sbp-side-tag {
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(9, 16, 46, 0.05);
  color: #09102e;
  font-size: 12px;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.2s ease;
}

.sbp-side-tag:hover {
  background: #7ACC0D;
  color: #09102e;
  transform: translateY(-1px);
}

/* ========================================================== RELATED POSTS SECTION ========================================================== */
.sbp-related {
  padding: var(--sec-py-lg) 0;
  background: #fff;
  position: relative;
}

.sbp-related-head {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 56px;
}

.sbp-related-eyebrow {
  display: inline-block;
  padding: 7px 16px;
  border-radius: 999px;
  background: rgba(122, 204, 13, 0.12);
  color: #7ACC0D;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.6px;
  text-transform: uppercase;
  margin-bottom: 18px;
}

.sbp-related-title {
  font-family: 'Publico Banner', 'Fraunces', serif;
  font-weight: 700;
  font-size: clamp(32px, 3.6vw, 48px);
  line-height: 1.15;
  color: #09102e;
  letter-spacing: -0.32px;
  margin: 0 0 14px;
}

.sbp-related-sub {
  font-size: 17px;
  color: #4a5070;
  line-height: 1.6;
  margin: 0;
}

.sbp-related-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
  margin-bottom: 48px;
}

.sbp-related-more {
  text-align: center;
}

.sbp-related-more-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 30px;
  border-radius: 999px;
  background: #09102e;
  color: #fff;
  font-weight: 700;
  font-size: 15px;
  text-decoration: none;
  transition: all 0.25s ease;
  box-shadow: 0 12px 30px -10px rgba(9, 16, 46, 0.4);
}

.sbp-related-more-btn:hover {
  background: #7ACC0D;
  color: #09102e;
  transform: translateY(-2px);
}

.sbp-related-more-btn i {
  transition: transform 0.25s ease;
}

.sbp-related-more-btn:hover i {
  transform: translateX(4px);
}

@media (max-width: 1199px) {
  .sbp-grid {
    gap: 30px;
  }
.sbp-article {
    padding: 30px 34px;
}
section.sbp-layout .sbp-side-tags-grid {
    gap: 6px !important;
}


}

@media (max-width: 991px) {
  .sbp-layout {
    padding: var(--sec-py-md) 0;
  }

  .sbp-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .sbp-sticky {
    position: static;
    top: auto;
  }

  .sbp-article {
    padding: 40px 36px;
  }

  .sbp-stats {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px 0;
  }

  .sbp-stat:nth-child(2) {
    border-right: none;
  }

  .sbp-stat:nth-child(-n+2) {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 20px;
  }

  .sbp-stat:nth-child(n+3) {
    padding-top: 20px;
  }

  .sbp-related {
    padding: var(--sec-py-lg) 0;
  }

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

@media (max-width: 767px) {
  .sbp-article {
    padding: 32px 24px;
    border-radius: 20px;
  }

  .sbp-article p,
  .sbp-article li {
    font-size: 16px;
  }

  .sbp-featured {
    margin-bottom: 32px;
  }

  .sbp-featured-img {
    border-radius: 16px;
  }

  .sbp-featured-badge {
    top: 12px;
    left: 12px;
    padding: 6px 12px;
    font-size: 10px;
  }

  .sbp-featured-cat {
    padding: 7px 14px;
    font-size: 11px;
  }

  .sbp-featured-dot {
    display: none;
  }

  .sbp-lead {
    font-size: 18px !important;
  }

  .sbp-h2 {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    margin: 40px 0 18px;
  }

  .sbp-stats {
    padding: 22px 16px;
  }

  .sbp-quote {
    margin: 30px -8px;
    padding: 28px 26px 24px;
  }

  .sbp-quote-mark {
    top: 10px;
    left: 16px;
    font-size: 54px;
  }

  .sbp-result-grid {
    grid-template-columns: 1fr;
  }

  .sbp-cta-box {
    padding: 36px 28px;
    margin: 40px 0 32px;
  }

  .sbp-footer-bar {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }

  .sbp-author-card {
    grid-template-columns: 80px 1fr;
    gap: 18px;
    padding: 24px;
  }

  .sbp-author-avatar {
    width: 80px;
    height: 80px;
    font-size: 38px;
    border-radius: 18px;
  }

  .sbp-author-name {
    font-size: 22px;
  }

  .sbp-related-grid {
    grid-template-columns: 1fr;
  }

  .sbp-numbered-list li {
    padding: 16px 0 16px 52px;
  }

  .sbp-numbered-list li::before {
    width: 38px;
    height: 38px;
    top: 14px;
    font-size: 14px;
  }
}

@media (max-width: 575px) {
  .sbp-article {
    padding: 26px 18px;
  }

  .sbp-stats {
    grid-template-columns: 1fr;
    gap: 14px 0;
  }

  .sbp-stat {
    border-right: none !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding: 14px 0;
  }

  .sbp-stat:last-child {
    border-bottom: none;
  }

  .sbp-callout {
    flex-direction: column;
    padding: 18px 20px;
  }

  .sbp-cta-box {
    padding: 30px 20px;
  }
}

/* ========================================================== SINGLE-BLOG — INLINE TOC (between intro and main sections) ========================================================== */
.sbp-toc-inline {
  margin: 32px 0 36px;
  padding: 24px 26px;
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(122, 204, 13, 0.06) 0%, rgba(9, 16, 46, 0.03) 100%);
  border: 1px solid rgba(9, 16, 46, 0.08);
  border-left: 4px solid #7ACC0D;
}

.sbp-toc-inline-head {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-bottom: 18px;
  margin-bottom: 18px;
  border-bottom: 1px dashed rgba(9, 16, 46, 0.12);
}

.sbp-toc-inline-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: linear-gradient(135deg, #7ACC0D 0%, #5aa00a 100%);
  color: #09102e;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
}

.sbp-toc-inline-head>div {
  display: flex;
  flex-direction: column;
  flex: 1;
}

.sbp-toc-inline-eyebrow {
  font-family: 'Publico Banner', 'Fraunces', serif !important;
  font-weight: 700;
  font-size: 19px;
  color: #09102e;
  line-height: 1.2;
}

.sbp-toc-inline-sub {
  font-size: 13px;
  color: #6b7186;
  margin-top: 2px;
}

.sbp-toc-inline-toggle {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(9, 16, 46, 0.05);
  border: none;
  color: #09102e;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all 0.25s ease;
  flex-shrink: 0;
}

.sbp-toc-inline-toggle:hover {
  background: #7ACC0D;
  transform: rotate(180deg);
}

.sbp-toc-inline-list {
  list-style: none;
  padding: 0;
  margin: 0;
  counter-reset: none;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.sbp-toc-inline-list li {
  padding: 0 !important;
  border: none !important;
  font-size: 15px !important;
}

.sbp-toc-inline-list a {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 10px 12px;
  border-radius: 10px;
  color: #09102e;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.2s ease;
  position: relative;
}

.sbp-toc-inline-list a::after {
  content: '\F138';
  font-family: 'bootstrap-icons';
  position: absolute;
  right: 14px;
  opacity: 0;
  transform: translateX(-6px);
  transition: all 0.25s ease;
  color: #7ACC0D;
  font-size: 18px;
}

.sbp-toc-inline-list a:hover {
  background: #fff;
  color: #09102e;
  box-shadow: 0 6px 18px -10px rgba(9, 16, 46, 0.15);
  padding-right: 36px;
}

.sbp-toc-inline-list a:hover::after {
  opacity: 1;
  transform: translateX(0);
}

.sbp-toc-inline-num {
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 700;
  color: #7ACC0D;
  background: rgba(122, 204, 13, 0.12);
  padding: 4px 9px;
  border-radius: 6px;
  letter-spacing: 0.64px;
  flex-shrink: 0;
}

/* ========================================================== INTERNAL LINKS (inline within article) ========================================================== */
.sbp-inline-link {
  color: #09102e;
  font-weight: 600;
  text-decoration: none;
  background-image: linear-gradient(#7ACC0D, #7ACC0D);
  background-repeat: no-repeat;
  background-size: 100% 2px;
  background-position: 0 100%;
  padding-bottom: 1px;
  transition: all 0.2s ease;
}

.sbp-inline-link i {
  font-size: 13.6px;
  margin-left: 2px;
  color: #7ACC0D;
}

.sbp-inline-link:hover {
  color: #09102e;
  background-size: 100% 100%;
  background-image: linear-gradient(rgba(122, 204, 13, 0.25), rgba(122, 204, 13, 0.25));
}

/* ========================================================== EXTERNAL REFERENCES ========================================================== */
.sbp-refs {
  margin: 36px 0 36px;
  padding: 26px 28px;
  border-radius: 18px;
  background: #f7f8fb;
  border: 1px solid rgba(9, 16, 46, 0.06);
}

.sbp-refs-head {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 18px;
}

.sbp-refs-icon {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: #09102e;
  color: #7ACC0D;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
}

.sbp-refs-title {
  font-family: 'Publico Banner', 'Fraunces', serif;
  font-weight: 700;
  font-size: 20px;
  color: #09102e;
  margin: 0 0 3px;
  line-height: 1.2;
}

.sbp-refs-sub {
  font-size: 13px !important;
  color: #6b7186 !important;
  margin: 0 !important;
  line-height: 1.4 !important;
}

.sbp-refs-list {
  list-style: none;
  padding: 0;
  margin: 0;
  counter-reset: none;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.sbp-refs-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 8px !important;
  border: none !important;
  border-bottom: 1px solid rgba(9, 16, 46, 0.06) !important;
  font-size: 14px !important;
}

.sbp-refs-list li:last-child {
  border-bottom: none !important;
}

.sbp-ref-num {
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  font-weight: 700;
  color: #7ACC0D;
  letter-spacing: 0.64px;
  flex-shrink: 0;
  min-width: 28px;
}

.sbp-refs-list a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #09102e;
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  transition: color 0.2s ease;
  line-height: 1.45;
}

.sbp-refs-list a i {
  font-size: 13px;
  color: #7ACC0D;
  transition: transform 0.2s ease;
}

.sbp-refs-list a:hover {
  color: #7ACC0D;
}

.sbp-refs-list a:hover i {
  transform: translate(2px, -2px);
}

/* ========================================================== POST NAVIGATION (Previous / Next) ========================================================== */
.sbp-post-nav {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin: 40px 0 0;
}

.sbp-post-nav-card {
  display: grid;
  align-items: center;
  gap: 16px;
  padding: 18px;
  border-radius: 16px;
  background: #fff;
  border: 1px solid rgba(9, 16, 46, 0.08);
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.22, 0.61, 0.36, 1);
  overflow: hidden;
}

.sbp-post-prev {
  grid-template-columns: 80px 1fr;
  text-align: left;
}

.sbp-post-next {
  grid-template-columns: 1fr 80px;
  text-align: right;
}

.sbp-post-nav-card:hover {
  border-color: #7ACC0D;
  transform: translateY(-3px);
  box-shadow: 0 20px 44px -18px rgba(9, 16, 46, 0.2);
}

.sbp-post-nav-thumb {
  width: 80px;
  height: 80px;
  border-radius: 12px;
  overflow: hidden;
  flex-shrink: 0;
  position: relative;
}

.sbp-post-nav-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.sbp-post-nav-card:hover .sbp-post-nav-thumb img {
  transform: scale(1.08);
}

.sbp-post-nav-body {
  min-width: 0;
}

.sbp-post-nav-label {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  font-weight: 700;
  color: #7ACC0D;
  letter-spacing: 1.6px;
  text-transform: uppercase;
  margin-bottom: 6px;
}

.sbp-post-next .sbp-post-nav-label {
  justify-content: flex-end;
}

.sbp-post-nav-body h5 {
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  font-weight: 600;
  line-height: 1.4;
  color: #09102e;
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  transition: color 0.2s ease;
}

.sbp-post-nav-card:hover .sbp-post-nav-body h5 {
  color: #7ACC0D;
}

/* ========================================================== COMMENTS SECTION ========================================================== */
.sbp-comments {
  margin: 48px 0 0;
  padding-top: 44px;
  border-top: 1px solid rgba(9, 16, 46, 0.1);
}

.sbp-comments-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 28px;
}

.sbp-comments-title {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: 'Publico Banner', 'Fraunces', serif;
  font-weight: 700;
  font-size: clamp(22px, 2.3vw, 28px);
  color: #09102e;
  margin: 0;
  line-height: 1.2;
}

.sbp-comments-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: linear-gradient(135deg, #7ACC0D 0%, #5aa00a 100%);
  color: #09102e;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
}

.sbp-comments-count {
  font-size: 13px;
  color: #6b7186;
  padding: 7px 14px;
  border-radius: 999px;
  background: rgba(9, 16, 46, 0.05);
  font-weight: 500;
}

.sbp-comments-count strong {
  color: #09102e;
  font-weight: 700;
}

/* ----- comment form ----- */
.sbp-comment-form {
  padding: 26px 28px;
  border-radius: 18px;
  background: #f7f8fb;
  border: 1px solid rgba(9, 16, 46, 0.06);
  margin-bottom: 36px;
}

.sbp-comment-form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 14px;
}

.sbp-cf-field {
  display: flex;
  flex-direction: column;
  margin-bottom: 14px;
}

.sbp-comment-form-grid .sbp-cf-field {
  margin-bottom: 0;
}

.sbp-cf-field label {
  font-size: 13px;
  font-weight: 600;
  color: #09102e;
  margin-bottom: 8px;
}

.sbp-cf-field label span {
  font-weight: 400;
  color: #6b7186;
  font-size: 12px;
}

.sbp-cf-req {
  color: #7ACC0D !important;
  font-weight: 700 !important;
}

.sbp-cf-input-wrap {
  position: relative;
  display: flex;
  align-items: center;
}

.sbp-cf-input-wrap i {
  position: absolute;
  left: 14px;
  color: #6b7186;
  font-size: 15px;
  pointer-events: none;
}

.sbp-cf-input-wrap input,
.sbp-cf-field textarea,
.sbp-cf-field input {
  width: 100%;
  padding: 12px 14px;
  border-radius: 10px;
  border: 1px solid rgba(9, 16, 46, 0.12);
  background: #fff;
  color: #09102e;
  font-size: 14px;
  font-family: inherit;
  outline: none;
  transition: all 0.2s ease;
}

.sbp-cf-input-wrap input {
  padding-left: 40px;
}

.sbp-cf-field textarea {
  resize: vertical;
  min-height: 110px;
  line-height: 1.6;
}

.sbp-cf-input-wrap input::placeholder,
.sbp-cf-field textarea::placeholder {
  color: #8f95a8;
}

.sbp-cf-input-wrap input:focus,
.sbp-cf-field textarea:focus,
.sbp-cf-field input:focus {
  border-color: #7ACC0D;
  background: #fff;
  box-shadow: 0 0 0 4px rgba(122, 204, 13, 0.12);
}

.sbp-cf-input-wrap:focus-within i {
  color: #7ACC0D;
}

.sbp-cf-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
  padding-top: 14px;
  border-top: 1px solid rgba(9, 16, 46, 0.08);
}

.sbp-cf-check {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: #4a5070;
  cursor: pointer;
}

.sbp-cf-check input {
  width: 18px;
  height: 18px;
  accent-color: #7ACC0D;
  cursor: pointer;
  margin: 0;
  flex-shrink: 0;
}

.sbp-cf-submit {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 24px;
  border-radius: 999px;
  background: #09102e;
  color: #fff;
  border: none;
  font-weight: 700;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.25s ease;
  box-shadow: 0 10px 24px -10px rgba(9, 16, 46, 0.45);
}

.sbp-cf-submit:hover {
  background: #7ACC0D;
  color: #09102e;
  transform: translateY(-1px);
}

.sbp-cf-submit i {
  transition: transform 0.25s ease;
}

.sbp-cf-submit:hover i {
  transform: translateX(4px);
}

/* ----- comment list ----- */
.sbp-comment-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.sbp-comment-list-nested {
  margin-top: 18px !important;
  margin-left: 32px !important;
  padding-left: 22px !important;
  border-left: 2px solid rgba(122, 204, 13, 0.2) !important;
}

.sbp-comment-item {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 16px;
  padding: 0 !important;
  border: none !important;
  font-size: 15px !important;
}

.sbp-comment-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, #7ACC0D 0%, #5aa00a 100%);
  color: #09102e;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  flex-shrink: 0;
}

.sbp-comment-avatar-author {
  background: linear-gradient(135deg, #09102e 0%, #0b1436 100%) !important;
  color: #7ACC0D;
  box-shadow: 0 0 0 3px rgba(122, 204, 13, 0.3);
}

.sbp-comment-body {
  min-width: 0;
}

.sbp-comment-head {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 6px;
}

.sbp-comment-head strong {
  font-size: 14px;
  font-weight: 700;
  color: #09102e;
}

.sbp-comment-badge {
  display: inline-block;
  padding: 2px 8px;
  border-radius: 6px;
  background: #7ACC0D;
  color: #09102e;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 1.6px;
  vertical-align: middle;
  margin-left: 4px;
}

.sbp-comment-date {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 12px;
  color: #6b7186;
  font-weight: 500;
}

.sbp-comment-date i {
  color: #7ACC0D;
  font-size: 13px;
}

.sbp-comment-body p {
  font-size: 14.5px !important;
  line-height: 1.65 !important;
  color: #2d3452 !important;
  margin: 0 0 10px !important;
}

.sbp-comment-actions {
  display: flex;
  align-items: center;
  gap: 14px;
}

.sbp-comment-actions button {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 5px 10px;
  border-radius: 6px;
  background: transparent;
  border: none;
  color: #6b7186;
  font-size: 12px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
}

.sbp-comment-actions button:hover {
  background: rgba(122, 204, 13, 0.1);
  color: #09102e;
}

.sbp-comment-actions button:hover i {
  color: #7ACC0D;
}

.sbp-comment-like i,
.sbp-comment-reply i {
  font-size: 13px;
}

.sbp-comment-like:hover i {
  color: #ef4444 !important;
}

/* ----- load more ----- */
.sbp-comment-more {
  text-align: center;
  margin-top: 32px;
}

.sbp-comment-more-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 22px;
  border-radius: 999px;
  background: #fff;
  border: 1px solid rgba(9, 16, 46, 0.12);
  color: #09102e;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.25s ease;
}

.sbp-comment-more-btn:hover {
  background: #09102e;
  color: #7ACC0D;
  border-color: #09102e;
}

.sbp-comment-more-btn i {
  transition: transform 0.25s ease;
}

.sbp-comment-more-btn:hover i {
  transform: translateY(2px);
  color: #7ACC0D;
}

@media (max-width: 575px) {
  .sbp-toc-inline-head {
    flex-wrap: wrap;
    gap: 10px;
  }

  .sbp-toc-inline-toggle {
    order: 2;
    margin-left: auto;
  }

  .sbp-refs-head {
    flex-direction: column;
    gap: 10px;
  }

  .sbp-refs-icon {
    width: 36px;
    height: 36px;
    font-size: 15px;
  }

  .sbp-refs-list a {
    font-size: 13px !important;
  }

  /* Stack prev/next vertically on phones — side-by-side made each card ~150px wide which truncated the title and wrapped "PREVIOUS POST" awkwardly to "PREVI POST". */
  .sbp-post-nav {
    grid-template-columns: 1fr !important;
    gap: 12px !important;
  }

  .sbp-post-nav-card {
    padding: 14px !important;
  }

  .sbp-post-nav-thumb {
    width: 64px;
    height: 64px;
  }

  .sbp-post-prev,
  .sbp-post-next {
    grid-template-columns: 64px 1fr !important;
    text-align: left !important;
  }

  .sbp-post-next .sbp-post-nav-label {
    justify-content: flex-start !important;
  }

  .sbp-post-nav-label {
    font-size: 11px !important;
    letter-spacing: 1px !important;
  }

  .sbp-post-nav-body h5 {
    font-size: 14px !important;
    line-height: 1.3 !important;
    margin: 4px 0 0 !important;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }

  .sbp-comment-head {
    gap: 8px;
  }

  .sbp-comments-count {
    font-size: 12px;
    padding: 5px 11px;
  }
}

/* ============================================================ SOCIAL CARDS — sidebar "Follow us" widget (5 brand-coloured horizontal pills, each with circular icon + name + follower count). ============================================================ */
.sbp-soc-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.sbp-soc-card {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 12px 14px;
  background: #f4f5f7;
  border-radius: 14px;
  text-decoration: none;
  color: inherit;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}

.sbp-soc-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.07);
  background: #eef0f4;
  color: inherit;
  text-decoration: none;
}

.sbp-soc-icon {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 20px;
  line-height: 1;
}

.sbp-soc-meta {
  display: flex;
  flex-direction: column;
  line-height: 1.3;
  min-width: 0;
}

.sbp-soc-meta strong {
  font-weight: 700;
  color: #09102e;
  font-size: 15px;
}

.sbp-soc-meta span {
  color: #5b6478;
  font-size: 13px;
}

/* Per-brand icon backgrounds */
.sbp-soc-linkedin .sbp-soc-icon {
  background: #0A66C2;
}

.sbp-soc-youtube .sbp-soc-icon {
  background: #FF0000;
}

.sbp-soc-instagram .sbp-soc-icon {
  background: linear-gradient(45deg, #f9ce34 0%, #ee2a7b 50%, #6228d7 100%);
}

.sbp-soc-facebook .sbp-soc-icon {
  background: #1877F2;
}

.sbp-soc-x .sbp-soc-icon {
  background: #000000;
}

/* Tail to balance the closing brace block above. */
.sbp-soc-card:focus-visible {
  outline: 2px solid #7ACC0D;
  outline-offset: 2px;
}