  .blog-article-page {
    background: #fff;
  }

  .blog-article-main {
    overflow: visible;
    max-width: 100% !important;
    width: 100% !important;
  }

  .blog-article-shell {
    width: calc(100% - 200px);
    margin: 0 auto;
    padding: 4rem 0;
  }

  .blog-article-body {
    background: #fff;
    border: 1px solid #e5ecf6;
    border-radius: 20px;
    box-shadow: 0 16px 38px rgba(15, 23, 42, 0.05);
  }

  .blog-article-header {
    background: none;
    border: none;
    border-radius: 0;
    box-shadow: none;
    padding: 0;
  }

  .blog-article-header__content {
    padding: clamp(20px, 3vw, 32px);
  }

  .blog-article-breadcrumbs {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
    margin-bottom: 12px;
    padding: 16px clamp(20px, 3vw, 36px) 0;
    font-size: 0.9rem;
    color: #64748b;
  }

  .blog-article-breadcrumbs a {
    color: #2563eb;
    text-decoration: none;
    font-weight: 600;
  }

  .blog-article-kicker {
    display: inline-flex;
    align-items: center;
    padding: 5px 14px;
    border-radius: 999px;
    border: none;
    background: #06b6d4;
    color: #ffffff !important;
    text-decoration: none;
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.01em;
    transition: filter 0.15s;
  }

  .blog-article-kicker:hover {
    filter: brightness(0.82);
    color: #ffffff !important;
  }

  .blog-article-kicker--blue {
    background: #2563eb;
    color: #ffffff !important;
  }

  .blog-article-kicker--indigo {
    background: #4338ca;
    color: #ffffff !important;
  }

  .blog-article-kicker--cobalt {
    background: #1d4ed8;
    color: #ffffff !important;
  }

  .blog-article-kicker--green {
    background: #16a34a;
    color: #ffffff !important;
  }

  .blog-article-kicker--olive {
    background: #65a30d;
    color: #ffffff !important;
  }

  .blog-article-kicker--purple {
    background: #7c3aed;
    color: #ffffff !important;
  }

  .blog-article-kicker--pink {
    background: #db2777;
    color: #ffffff !important;
  }

  .blog-article-kicker--teal {
    background: #2b70e4;
    color: #ffffff !important;
  }

  .blog-article-kicker--orange {
    background: #ea580c;
    color: #ffffff !important;
  }

  .blog-article-kicker--amber {
    background: #d97706;
    color: #ffffff;
  }

  .blog-article-kicker::before {
    display: none;
  }

  .blog-article-title {
    margin: 14px 0 0;
    color: #0f172a;
    font-size: 2.1rem !important;
    line-height: 1.16;
    letter-spacing: -0.03em;
    font-weight: 800;
    max-width: none;
  }

  .blog-article-summary {
    max-width: none;
    color: #475569;
    font-size: 1.05rem !important;
    line-height: 1.8;
  }

  .blog-header-topline {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap;
  }

  .blog-header-date {
    font-size: 1rem;
    color: #64748b;
  }

  .blog-header-share-icons {
    display: flex;
    align-items: center;
    gap: 6px;
  }

  .blog-header-share-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 8px;
    border: 1px solid #e2e8f0;
    background: transparent;
    color: #475569;
    text-decoration: none;
    cursor: pointer;
    transition: background 0.15s, color 0.15s, border-color 0.15s;
    padding: 0;
    line-height: 1;
    flex-shrink: 0;
  }

  .blog-header-share-icon:hover {
    background: #f1f5f9;
    border-color: #cbd5e1;
    color: #0f172a;
  }

  .blog-header-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 16px;
  }

  .blog-header-tag {
    display: inline-flex;
    align-items: center;
    padding: 5px 13px;
    border: none;
    border-radius: 6px;
    background: rgb(227, 232, 244);
    color: #3d4552 !important;
    font-size: 0.82rem;
    text-decoration: none;
    font-weight: 500;
    transition: background 0.15s;
  }

  .blog-header-tag:hover {
    background: #1d4ed8;
    color: #ffffff !important;
  }

  .blog-header-author {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 16px;
  }

  .blog-article-meta {
    margin-top: 20px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 16px;
  }

  .blog-author-card {
    display: flex;
    align-items: center;
    gap: 10px;
  }

  .blog-author-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    overflow: hidden;
    background: #2563eb;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
  }

  .blog-author-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .blog-author-avatar span {
    color: #fff;
    font-size: 0.88rem;
    font-weight: 700;
    line-height: 1;
  }

  .blog-author-info {
    display: flex;
    flex-direction: column;
    gap: 2px;
  }

  .blog-author-name {
    font-size: 1rem;
    font-weight: 600;
    color: #0f172a;
    line-height: 1.2;
  }

  .blog-author-role {
    font-size: 0.9rem;
    color: #64748b;
    line-height: 1.2;
  }

  .blog-meta-divider {
    width: 1px;
    height: 28px;
    background: #d1dae8;
    flex-shrink: 0;
  }

  .blog-meta-item {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 0.85rem;
    color: #64748b;
  }

  .blog-meta-item .material-symbols-outlined {
    font-size: 16px;
    color: #94a3b8;
  }

  .blog-article-feature {
    margin: 0 clamp(20px, 3vw, 36px);
  }

  .blog-article-feature img {
    display: block;
    width: 100%;
    height: auto;
    border-radius: 14px;
  }

  .blog-article-feature__caption {
    display: block;
    padding: 10px clamp(20px, 3vw, 36px) 0;
    color: #64748b;
    font-size: 0.88rem;
  }

  .blog-article-layout {
    display: grid;
    grid-template-columns: 260px minmax(0, 1fr) 240px;
    gap: 0;
    align-items: start;
  }

  .blog-article-sidebar {
    position: sticky;
    top: 96px;
    display: grid;
    gap: 14px;
    padding: clamp(12px, 1.5vw, 16px);
  }

  .blog-article-center {
    min-width: 0;
    border-left: 1px solid #e5ecf6;
    border-right: 1px solid #e5ecf6;
  }

  .blog-article-sidebar-right {
    position: sticky;
    top: 96px;
    display: grid;
    gap: 14px;
    padding: clamp(12px, 1.5vw, 16px);
  }

  .blog-side-card {
    background: #fff;
    border: none;
    border-radius: 16px;
    padding: 16px;
    padding-right: 0;
  }

  .blog-side-card h2,
  .blog-side-card h3 {
    margin: 0 0 10px;
    font-size: 0.8rem;
    color: #0f172a;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
  }

  .blog-side-list {
    display: grid;
    gap: 9px;
  }

  .blog-side-item {
    display: grid;
    gap: 3px;
  }

  .blog-side-item span {
    color: #64748b;
    font-size: 0.73rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    font-weight: 700;
  }

  .blog-side-item strong {
    font-size: 0.93rem;
    line-height: 1.45;
    color: #1e293b;
    font-weight: 600;
  }

  .blog-side-link {
    color: #2563eb;
    text-decoration: none;
    font-weight: 600;
  }

  .blog-side-link:hover,
  .blog-side-link:focus {
    text-decoration: none;
  }

  .blog-explore-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    padding: 10px 12px;
    border: 1px solid #dbe7fb;
    border-radius: 12px;
    background: #f8fbff;
    font-size: 1rem;
    transition: background-color 0.15s ease, border-color 0.15s ease, transform 0.15s ease;
  }

  .blog-explore-link:hover {
    background: #eff6ff;
    border-color: #bfd8fb;
    transform: translateY(-1px);
  }

  .blog-explore-link .material-symbols-outlined {
    font-size: 14px;
    color: #1d4ed8;
  }

  .blog-trial-card {
    background: linear-gradient(135deg, #1d4ed8 0%, #2563eb 100%);
    border-radius: 14px;
    padding: 20px 16px;
    text-align: left;
    color: #fff;
  }

  .blog-trial-card__icon {
    font-size: 2.5rem;
    margin-bottom: 8px;
    color: #bfdbfe;
  }

  .blog-trial-card__heading {
    font-size: 1rem;
    font-weight: 700;
    line-height: 1.3;
    margin: 0 0 6px;
    color: #fff;
  }

  .blog-trial-card__sub {
    font-size: 0.78rem;
    color: #bfdbfe;
    margin: 0 0 16px;
    line-height: 1.4;
  }

  .blog-trial-card__btn {
    display: inline-block;
    padding: 9px 18px;
    background: #fff;
    color: #1d4ed8;
    border-radius: 8px;
    font-size: 0.82rem;
    font-weight: 700;
    text-decoration: none !important;
    transition: background 0.15s, color 0.15s;
  }

  .blog-trial-card__btn:hover {
    background: #eff6ff;
    color: #1e40af;
  }

  /* ── Inline CTA cards ── */
  .blog-inline-cta {
    margin: 32px 0;
    border-radius: 14px;
  }

  /* Teal — center-aligned */
  .blog-inline-cta--teal {
    background: #2b70e4;
    padding: 22px 32px 20px;
    text-align: center;
    color: #fff;
  }

  .blog-inline-cta--teal .blog-inline-cta__badge {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    background: rgba(255,255,255,0.18);
    border: 1px solid rgba(255,255,255,0.3);
    border-radius: 999px;
    padding: 3px 11px;
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: #dbeafe;
    margin-bottom: 12px;
  }

  .blog-inline-cta--teal .blog-inline-cta__badge .material-symbols-outlined {
    font-size: 0.85rem;
  }

  .blog-inline-cta--teal .blog-inline-cta__icon {
    display: block;
    font-size: 2.4rem;
    color: #bfdbfe;
    margin-bottom: 8px;
  }

  .blog-inline-cta--teal .blog-inline-cta__heading {
    font-size: 1.1rem;
    font-weight: 800;
    line-height: 1.25;
    margin: 0 0 6px;
    color: #fff;
  }

  .blog-inline-cta--teal .blog-inline-cta__sub {
    font-size: 0.85rem;
    color: #dbeafe;
    margin: 0 auto 16px;
    line-height: 1.55;
  }

  .blog-inline-cta--teal .blog-inline-cta__btn {
    display: inline-block;
    padding: 9px 22px;
    background: #fff;
    color: #2b70e4;
    border-radius: 999px;
    font-size: 0.875rem;
    font-weight: 700;
    text-decoration: none !important;
    transition: background 0.15s;
  }

  .blog-inline-cta--teal .blog-inline-cta__btn:hover {
    background: #eff6ff;
  }

  .blog-inline-cta--teal .blog-inline-cta__note {
    display: block;
    margin-top: 8px;
    font-size: 0.72rem;
    color: #bfdbfe;
  }

  /* Green — horizontal banner */
  .blog-inline-cta--green {
    display: flex;
    align-items: center;
    gap: 16px;
    background: #f0fdf4;
    border: 1px solid #86efac;
    padding: 20px 24px;
  }

  .blog-inline-cta--green .blog-inline-cta__icon {
    font-size: 2.4rem;
    color: #16a34a;
    flex-shrink: 0;
  }

  .blog-inline-cta--green .blog-inline-cta__body {
    flex: 1;
    min-width: 0;
  }

  .blog-inline-cta--green .blog-inline-cta__heading {
    font-size: 1rem;
    font-weight: 700;
    color: #14532d;
    margin: 0 0 4px;
  }

  .blog-inline-cta--green .blog-inline-cta__sub {
    font-size: 0.82rem;
    color: #166534;
    margin: 0;
    line-height: 1.5;
  }

  .blog-inline-cta--green .blog-inline-cta__btn {
    display: inline-block;
    padding: 9px 18px;
    background: #16a34a;
    color: #fff;
    border-radius: 8px;
    font-size: 0.875rem;
    font-weight: 700;
    flex-shrink: 0;
    white-space: nowrap;
    text-decoration: none !important;
    transition: background 0.15s;
  }

  .blog-inline-cta--green .blog-inline-cta__btn:hover {
    background: #15803d;
  }

  /* theme.css sets text-decoration:underline on .page-content a — remove globally for this page */
  .page-content a { text-decoration: none !important; }

  .blog-side-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
  }

  .blog-tag {
    display: inline-flex;
    align-items: center;
    padding: 4px 10px;
    border: 1px solid #dbe7fb;
    border-radius: 999px;
    background: #eff6ff;
    color: #1d4ed8;
    font-size: 0.78rem;
    text-decoration: none;
    font-weight: 600;
  }

  .blog-toc-section-title {
    font-size: 1.15rem;
    font-weight: 800;
    letter-spacing: -0.02em;
    margin: 0 0 12px;
  }

  .blog-toc {
    display: grid;
    gap: 3px;
    max-height: 520px;
    overflow-y: auto;
    scrollbar-gutter: stable;
    scrollbar-width: thin;
    scrollbar-color: #cbd5e1 transparent;
  }

  .blog-toc::-webkit-scrollbar {
    width: 2px;
  }

  .blog-toc::-webkit-scrollbar-track {
    background: transparent;
  }

  .blog-toc::-webkit-scrollbar-thumb {
    background: #cbd5e1;
    border-radius: 999px;
  }

  .blog-toc a {
    display: block;
    color: #334155;
    text-decoration: none;
    font-size: 0.9rem;
    line-height: 1.55;
    border-radius: 10px;
    padding: 8px 10px;
  }

  .blog-toc a:hover {
    background: #f1f5f9;
    color: #0f172a;
  }

  .blog-article-card {
    background: none;
    border: none;
    border-radius: 0;
    box-shadow: none;
    padding: clamp(20px, 3vw, 36px);
  }

  .blog-article-prose > :first-child {
    margin-top: 0 !important;
  }

  .blog-article-prose > p:first-of-type {
    margin-top: 0 !important;
    clear: both;
    position: static !important;
    top: auto !important;
    transform: none !important;
  }

  .blog-article-prose h1,
  .blog-article-prose h2,
  .blog-article-prose h3,
  .blog-article-prose h4,
  .blog-article-prose h5,
  .blog-article-prose h6 {
    scroll-margin-top: 96px;
    margin-bottom: 0.8em;
    line-height: 1.25;
    letter-spacing: -0.015em;
    color: #0f172a;
  }

  .blog-article-prose h1 { font-size: 1.75rem; }
  .blog-article-prose h2 { font-size: 1.5rem; }
  .blog-article-prose h3 { font-size: 1.25rem; }
  .blog-article-prose h4 { font-size: 1.1rem; }
  .blog-article-prose h5 { font-size: 1rem; }
  .blog-article-prose h6 { font-size: 0.9rem; }

  .blog-article-prose p,
  .blog-article-prose li {
    color: #334155;
    font-size: 1.03rem;
    line-height: 1.86;
  }

  .blog-article-prose blockquote {
    margin: 2rem 0;
    border-left: 4px solid #2563eb;
    padding: 14px 18px;
    border-radius: 0 12px 12px 0;
    background: #f8fbff;
  }

  .blog-article-prose img {
    width: 100%;
    max-width: 100%;
    height: auto;
    border-radius: 14px;
  }

  .blog-article-prose iframe {
    display: block;
    width: 100% !important;
    height: auto !important;
    aspect-ratio: 16 / 9;
    border: 0;
    border-radius: 10px;
    margin: 1.5em 0;
  }

  .blog-article-prose a {
    color: #1d4ed8;
  }

  .blog-article-footer {
    margin-top: 30px;
    padding-top: 16px;
    border-top: 1px solid #e5ecf6;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    flex-wrap: wrap;
  }

  .blog-article-footer a {
    color: #2563eb;
    font-weight: 700;
    text-decoration: none;
  }

  .blog-related {
    margin-top: 30px;
  }

  .blog-related__head {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 14px;
    margin-bottom: 14px;
  }

  .blog-related__head h2 {
    margin: 0;
    font-size: clamp(1.45rem, 2.4vw, 2rem);
    line-height: 1.15;
    color: #0f172a;
    letter-spacing: -0.02em;
  }

  .blog-related__head p {
    margin: 6px 0 0;
    color: #64748b;
    font-size: 0.94rem;
  }

  .blog-related__head a {
    color: #2563eb;
    text-decoration: none;
    font-weight: 600;
    white-space: nowrap;
  }

  .blog-related-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
  }

  .blog-related-card {
    display: grid;
    gap: 10px;
    background: #fff;
    border: 1px solid #e5ecf6;
    border-radius: 14px;
    padding: 12px;
    text-decoration: none;
    color: inherit;
    overflow: hidden;
    transition: box-shadow 0.18s ease, transform 0.18s ease, border-color 0.18s ease;
  }

  .blog-related-card:hover {
    box-shadow: 0 12px 32px rgba(15, 23, 42, 0.09);
    border-color: #c7d8f0;
    transform: translateY(-3px);
  }

  .blog-related-card__thumb {
    overflow: hidden;
    border-radius: 10px;
    line-height: 0;
  }

  .blog-related-card img,
  .blog-related-fallback {
    width: 100%;
    aspect-ratio: 16 / 9;
    border-radius: 10px;
    object-fit: cover;
    display: block;
    background: #eef2ff;
    transition: transform 0.4s ease;
  }

  .blog-related-card:hover img {
    transform: scale(1.04);
  }

  .blog-related-fallback {
    display: grid;
    place-items: center;
    color: #64748b;
  }

  .blog-related-card time {
    color: #64748b;
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-weight: 700;
  }

  .blog-related-card h3 {
    margin: 0;
    font-size: 1rem;
    line-height: 1.42;
    color: #0f172a;
    transition: color 0.15s;
  }

  .blog-related-card:hover h3 {
    color: #2563eb;
  }

  .blog-related-card p {
    margin: 0;
    color: #64748b;
    font-size: 0.9rem;
    line-height: 1.6;
  }

  @media (max-width: 1100px) {
    .blog-article-layout {
      grid-template-columns: 240px minmax(0, 1fr);
    }
    .blog-article-center {
      border-right: none;
    }
    .blog-article-sidebar-right {
      display: none;
    }
  }

  @media (max-width: 820px) {
    .blog-related-grid {
      grid-template-columns: 1fr;
    }
  }

  @media (max-width: 700px) {
    .blog-article-layout {
      grid-template-columns: 1fr;
    }
    .blog-article-sidebar {
      display: none;
    }
    .blog-article-center {
      border-left: none;
    }
    .blog-article-shell {
      width: calc(100% - 32px);
      padding-top: 18px;
    }
    .blog-article-title {
      font-size: 1.72rem !important;
      line-height: 1.22;
    }

    /* Match feature-page gutters (members/finances): the 16px shell edge
       only, drop the extra inner inset that doubled the side spacing */
    .blog-article-breadcrumbs,
    .blog-article-header__content,
    .blog-article-card {
      padding-left: 0;
      padding-right: 0;
    }
    .blog-article-feature {
      margin-left: 0;
      margin-right: 0;
    }
    .blog-article-feature__caption {
      padding-left: 0;
      padding-right: 0;
    }

    /* "Launch your church into the future" CTA: tighter side padding */
    .blog-inline-cta--teal {
      padding-left: 18px;
      padding-right: 18px;
    }
  }

  /* ── Reading progress bar ── */
  #reading-progress {
    position: fixed;
    top: 0;
    left: 0;
    width: 0%;
    height: 6px;
    background: linear-gradient(90deg, #2b70e4, #38bdf8);
    z-index: 9999;
    border-radius: 0 2px 2px 0;
    pointer-events: none;
    transition: width 0.08s linear;
  }

  /* ── TOC scroll-spy ── */
  .blog-toc a.is-active {
    background: #eff6ff;
    color: #1d4ed8;
    font-weight: 600;
  }

  /* ── Back-to-top ── */
  #back-to-top {
    position: fixed;
    bottom: 32px;
    right: 28px;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: #2b70e4;
    color: #fff;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 18px rgba(43,112,228,0.38);
    opacity: 0;
    transform: translateY(12px);
    transition: opacity 0.22s, transform 0.22s, background 0.15s;
    pointer-events: none;
    z-index: 998;
  }

  #back-to-top.visible {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
  }

  #back-to-top:hover { background: #1d5ec7; }

  @media (max-width: 500px) {
    #back-to-top { bottom: 20px; right: 16px; }
  }

  /* ── Share bar ── */
  .blog-share-bar {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
  }

  .blog-share-label {
    font-size: 0.8rem;
    font-weight: 700;
    color: #64748b;
    text-transform: uppercase;
    letter-spacing: 0.07em;
  }

  .blog-share-btn {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 6px 13px;
    border: 1px solid #dbe7fb;
    border-radius: 999px;
    background: #f8fbff;
    color: #1e293b;
    font-size: 0.82rem;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    line-height: 1;
    transition: background 0.15s, border-color 0.15s;
  }

  .blog-share-btn:hover {
    background: #eff6ff;
    border-color: #bfd8fb;
  }

  .blog-share-btn .material-symbols-outlined {
    font-size: 15px;
    color: #2563eb;
  }

  /* ── Sidebar CTA card ── */
  .blog-side-cta {
    background: linear-gradient(145deg, #1e3a6e 0%, #2b70e4 100%);
    border-color: transparent;
  }

  .blog-side-cta__label {
    margin: 0 0 5px;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 700;
    color: rgba(255,255,255,0.6);
  }

  .blog-side-cta__heading {
    margin: 0 0 14px;
    font-size: 1rem;
    font-weight: 800;
    color: #fff;
    line-height: 1.3;
  }

  .blog-side-cta__btn {
    display: inline-block;
    padding: 8px 16px;
    background: #fff;
    color: #1d4ed8;
    border-radius: 8px;
    font-size: 0.88rem;
    font-weight: 700;
    text-decoration: none;
    transition: background 0.15s, transform 0.15s;
  }

  .blog-side-cta__btn:hover {
    background: #eff6ff;
    transform: translateY(-1px);
  }

  /* ── Prose: code, pre, table, lists ── */
  .blog-article-prose pre {
    background: #0f172a;
    color: #e2e8f0;
    border-radius: 10px;
    padding: 18px 20px;
    overflow-x: auto;
    font-size: 0.9rem;
    line-height: 1.65;
    margin: 1.5em 0;
  }

  .blog-article-prose :not(pre) > code {
    font-size: 0.87em;
    background: #f1f5f9;
    color: #0f172a;
    padding: 2px 6px;
    border-radius: 5px;
    border: 1px solid #e2e8f0;
  }

  .blog-article-prose pre code {
    background: none;
    border: none;
    padding: 0;
    color: inherit;
    font-size: inherit;
  }

  .blog-article-prose table {
    width: 100%;
    border-collapse: collapse;
    margin: 1.5em 0;
    font-size: 0.94rem;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 0 0 1px #e2e8f0;
  }

  .blog-article-prose th {
    background: #f8fafc;
    padding: 10px 14px;
    text-align: left;
    font-weight: 700;
    color: #0f172a;
    border-bottom: 2px solid #e2e8f0;
    font-size: 0.88rem;
    letter-spacing: 0.03em;
  }

  .blog-article-prose td {
    padding: 9px 14px;
    border-bottom: 1px solid #f0f4f8;
    color: #334155;
    vertical-align: top;
  }

  .blog-article-prose tr:last-child td { border-bottom: none; }

  .blog-article-prose ul,
  .blog-article-prose ol {
    padding-left: 1.5rem;
    margin: 0.75em 0;
  }

  .blog-article-prose li { margin-bottom: 0.45em; }

  .blog-article-prose hr {
    border: none;
    border-top: 1px solid #e5ecf6;
    margin: 2.5em 0;
  }

  /* ── Newsletter section ── */
  .blog-newsletter {
    margin-top: 30px;
    background-color: #0f172a;
    background-image: radial-gradient(circle, rgba(255,255,255,0.12) 1px, transparent 1px);
    background-size: 28px 28px;
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    padding: clamp(48px, 7vw, 80px) clamp(24px, 5vw, 64px);
    text-align: center;
  }

  .blog-newsletter::before {
    content: '';
    position: absolute;
    width: 380px;
    height: 380px;
    border: 2px solid rgba(255,255,255,0.22);
    border-radius: 50%;
    top: -160px;
    right: -80px;
    box-shadow:
      0 0 0 56px rgba(255,255,255,0.07),
      0 0 0 112px rgba(255,255,255,0.04);
    pointer-events: none;
  }

  .blog-newsletter::after {
    content: '';
    position: absolute;
    width: 260px;
    height: 260px;
    border: 2px solid rgba(255,255,255,0.18);
    transform: rotate(45deg);
    bottom: -110px;
    left: 10%;
    pointer-events: none;
  }

  .blog-newsletter__inner {
    position: relative;
    z-index: 1;
  }

  .blog-newsletter__eyebrow {
    margin: 0 0 12px;
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    font-weight: 700;
    color: rgba(255,255,255,0.55);
  }

  .blog-newsletter__heading {
    margin: 0 0 12px;
    font-size: clamp(1.45rem, 2.5vw, 2.25rem);
    font-weight: 800;
    color: #fff !important;
    line-height: 1.2;
    letter-spacing: -0.02em;
  }

  .blog-newsletter__sub {
    margin: 0 0 28px;
    color: rgba(255,255,255,0.72);
    font-size: 1rem;
    line-height: 1.65;
  }

  .blog-newsletter .blog-subscribe__form {
    width: min(520px, 100%);
    margin: 0 auto;
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 10px;
  }

  .blog-newsletter .blog-subscribe__input {
    min-width: 0;
    height: 52px;
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 12px;
    padding: 0 16px;
    font-size: 0.97rem;
    color: #0f172a;
    background: rgba(255,255,255,0.97);
  }

  .blog-newsletter .blog-subscribe__input::placeholder {
    color: #8b9bb5;
  }

  .blog-newsletter .blog-subscribe__button {
    height: 52px;
    border: 0;
    border-radius: 12px;
    padding: 0 26px;
    font-size: 0.95rem;
    font-weight: 600;
    color: #1e3a8a;
    background: #fff;
    cursor: pointer;
    white-space: nowrap;
    transition: transform 0.18s, box-shadow 0.18s;
  }

  .blog-newsletter .blog-subscribe__button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(0,0,0,0.18);
  }

  .blog-newsletter .blog-subscribe__success {
    color: #86efac;
    font-weight: 600;
    font-size: 0.95rem;
    margin-top: 14px;
  }

  .blog-newsletter .blog-messages {
    width: min(520px, 100%);
    margin: 0 auto 12px;
    color: #fca5a5;
    font-size: 0.9rem;
    font-weight: 600;
  }

  @media (max-width: 500px) {
    .blog-newsletter .blog-subscribe__form {
      grid-template-columns: 1fr;
    }

    .blog-newsletter .blog-subscribe__button {
      width: 100%;
    }
  }
