/* RA Blog Styles - matches service page design */

/* ── CSS VARIABLES ── */
.ra-blog-page {
    --hero-bg: #1a1432;
    --dark-section: #1e1a35;
    --purple: #7141B1;
    --purple-hover: #5c2fa0;
    --purple-light: rgba(113,65,177,0.15);
    --light-bg: #f8f6fc;
    --white: #ffffff;
    --ink: #1B1D21;
    --body-text: #555;
    --muted: #888;
    --border: rgba(0,0,0,0.08);
    font-family: 'Nunito Sans', sans-serif;
    color: var(--ink);
    line-height: 1.7;
}

/* ── KILL THEME GAPS ── */
.ra-blog-page .content-product-wrapper {
    padding-top: 0 !important;
}

/* ── CONTAINER ── */
.ra-blog-container {
    max-width: 1170px !important;
    margin: 0 auto !important;
    padding: 0 20px !important;
}

/* ════════════════════════════════════════════════
   MAKE DEVICE PAGE CSS APPLY TO BLOG POSTS
   device-page-styles.css scopes with body.single-device
   We duplicate the key selectors for body.single-blog-post
   ════════════════════════════════════════════════ */

/* Variables */
body.single-blog-post {
    --hero-bg: #1a1432 !important;
    --dark-section: #1e1a35 !important;
    --purple: #7141B1 !important;
    --purple-hover: #5c2fa0 !important;
    --light-bg: #f8f6fc !important;
    --white: #ffffff !important;
    --ink: #1B1D21 !important;
    --body-text: #555 !important;
    --muted: #888 !important;
    --border: rgba(0,0,0,0.08) !important;
    --accent-blue: #5EBBFE !important;
    font-family: 'Nunito Sans', sans-serif !important;
    color: var(--ink) !important;
    line-height: 1.7 !important;
    background: var(--white) !important;
    -webkit-font-smoothing: antialiased !important;
}

/* Container resets */
body.single-blog-post .sp-hero .container,
body.single-blog-post .sp-content-wrap,
body.single-blog-post .sp-faq .container,
body.single-blog-post .sp-cta-final .container,
body.single-blog-post .sp-related .container,
body.single-blog-post .sp-reviews .container,
.ra-blog-page .sp-cta-final .container {
    float: none !important;
    width: auto !important;
    max-width: 1170px !important;
    margin-left: auto !important;
    margin-right: auto !important;
    padding-left: 20px !important;
    padding-right: 20px !important;
}

/* Hero - single column for blog (no device image) */
body.single-blog-post .sp-hero {
    background: var(--hero-bg) !important;
    padding: 70px 0 60px !important;
    position: relative !important;
    overflow: hidden !important;
}
body.single-blog-post .sp-hero::before {
    content: '' !important;
    position: absolute !important;
    inset: 0 !important;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' xmlns='http://www.w3.org/2000/svg'%3E%3Crect x='0' y='0' width='60' height='60' fill='none' stroke='%237141B1' stroke-width='.3' opacity='.08'/%3E%3C/svg%3E") !important;
    pointer-events: none !important;
}
body.single-blog-post .sp-hero .container {
    display: block !important;
    position: relative !important;
    z-index: 1 !important;
    max-width: 900px !important;
}
body.single-blog-post .sp-hero-label {
    font-family: 'Montserrat', sans-serif !important;
    font-size: 13px !important;
    font-weight: 600 !important;
    letter-spacing: 2px !important;
    text-transform: uppercase !important;
    color: #9b7fd4 !important;
    margin-bottom: 8px !important;
}
body.single-blog-post .sp-hero h1 {
    font-family: 'Montserrat', sans-serif !important;
    font-size: 36px !important;
    font-weight: 800 !important;
    color: #fff !important;
    line-height: 1.2 !important;
    margin-bottom: 14px !important;
    padding: 0 !important;
    border: none !important;
}
body.single-blog-post .sp-hero .goal-text {
    font-size: 17px !important;
    color: rgba(255,255,255,.7) !important;
    line-height: 1.7 !important;
    margin-bottom: 20px !important;
}

/* Hero meta row */
body.single-blog-post .sp-hero-meta {
    display: flex !important;
    align-items: center !important;
    gap: 20px !important;
    margin-bottom: 20px !important;
}
body.single-blog-post .sp-hero-meta-item {
    display: flex !important;
    align-items: center !important;
    gap: 6px !important;
    font-family: 'Nunito Sans', sans-serif !important;
    font-size: 13px !important;
    font-weight: 600 !important;
    color: rgba(255,255,255,0.5) !important;
}
body.single-blog-post .sp-hero-meta-item svg {
    opacity: 0.5 !important;
    stroke: #fff !important;
}

/* Trust badges */
body.single-blog-post .sp-hero-trust {
    display: flex !important;
    gap: 20px !important;
    margin-bottom: 28px !important;
    flex-wrap: wrap !important;
}
body.single-blog-post .trust-item {
    display: flex !important;
    align-items: center !important;
    gap: 8px !important;
}
body.single-blog-post .trust-icon {
    width: 36px !important;
    height: 36px !important;
    border-radius: 8px !important;
    background: rgba(113,65,177,0.15) !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    flex-shrink: 0 !important;
}
body.single-blog-post .trust-icon svg {
    width: 18px !important;
    height: 18px !important;
    stroke: #9b7fd4 !important;
    fill: none !important;
    stroke-width: 1.8 !important;
    stroke-linecap: round !important;
    stroke-linejoin: round !important;
}
body.single-blog-post .trust-text {
    font-family: 'Montserrat', sans-serif !important;
    font-size: 12px !important;
    font-weight: 700 !important;
    color: rgba(255,255,255,.85) !important;
    line-height: 1.3 !important;
}
body.single-blog-post .trust-text small {
    display: block !important;
    font-weight: 500 !important;
    font-size: 10px !important;
    color: rgba(255,255,255,.4) !important;
    text-transform: uppercase !important;
    letter-spacing: .5px !important;
}

/* Hero buttons */
body.single-blog-post .sp-hero-buttons {
    display: flex !important;
    gap: 12px !important;
    flex-wrap: wrap !important;
}
body.single-blog-post .sp-btn-primary {
    display: inline-flex !important;
    align-items: center !important;
    gap: 8px !important;
    padding: 14px 28px !important;
    background: #7141B1 !important;
    color: #fff !important;
    font-family: 'Nunito Sans', sans-serif !important;
    font-size: 15px !important;
    font-weight: 700 !important;
    text-decoration: none !important;
    border-radius: 10px !important;
    transition: all .3s !important;
    border: none !important;
}
body.single-blog-post .sp-btn-primary:hover {
    background: #5c2fa0 !important;
    transform: translateY(-2px) !important;
    color: #fff !important;
}
body.single-blog-post .sp-btn-outline {
    display: inline-flex !important;
    align-items: center !important;
    gap: 8px !important;
    padding: 14px 28px !important;
    background: transparent !important;
    color: #fff !important;
    font-family: 'Nunito Sans', sans-serif !important;
    font-size: 15px !important;
    font-weight: 700 !important;
    text-decoration: none !important;
    border-radius: 10px !important;
    border: 2px solid rgba(255,255,255,.35) !important;
    transition: all .3s !important;
}
body.single-blog-post .sp-btn-outline:hover {
    border-color: #fff !important;
    background: rgba(255,255,255,.06) !important;
    color: #fff !important;
}

/* Reviews */
body.single-blog-post .sp-reviews {
    padding: 50px 0 !important;
    background: #fff !important;
}

/* Content layout (TOC + Main) */
body.single-blog-post .sp-content-wrap {
    max-width: 1170px !important;
    margin: 0 auto !important;
    padding: 50px 20px !important;
    display: grid !important;
    grid-template-columns: 260px 1fr !important;
    gap: 40px !important;
    align-items: start !important;
    float: none !important;
    width: auto !important;
    overflow: visible !important;
}

/* TOC sidebar */
body.single-blog-post .sp-toc {
    position: -webkit-sticky !important;
    position: sticky !important;
    top: 80px !important;
    background: var(--light-bg) !important;
    border-radius: 10px !important;
    padding: 24px !important;
    border-left: 3px solid var(--purple) !important;
    max-height: calc(100vh - 100px) !important;
    overflow-y: auto !important;
    grid-column: 1 !important;
    width: 260px !important;
    min-width: 260px !important;
}
body.single-blog-post .sp-toc h4 {
    font-family: 'Montserrat', sans-serif !important;
    font-size: 14px !important;
    font-weight: 700 !important;
    color: var(--ink) !important;
    margin-bottom: 14px !important;
    text-transform: uppercase !important;
    letter-spacing: 1px !important;
}
body.single-blog-post .sp-toc ul {
    list-style: none !important;
    padding: 0 !important;
    margin: 0 !important;
}
body.single-blog-post .sp-toc li {
    margin-bottom: 8px !important;
    list-style: none !important;
}
body.single-blog-post .sp-toc li::before {
    display: none !important;
    content: none !important;
}
body.single-blog-post .sp-toc a {
    font-size: 13px !important;
    color: #666 !important;
    text-decoration: none !important;
    display: block !important;
    padding: 4px 0 !important;
    border-left: 2px solid transparent !important;
    padding-left: 12px !important;
    transition: all .2s !important;
    line-height: 1.4 !important;
}
body.single-blog-post .sp-toc a:hover,
body.single-blog-post .sp-toc a.active {
    color: var(--purple) !important;
    border-left-color: var(--purple) !important;
}

/* Read aloud button in TOC */
body.single-blog-post .sp-toc-listen {
    display: flex !important;
    align-items: center !important;
    gap: 8px !important;
    margin-top: 16px !important;
    padding: 10px 16px !important;
    background: none !important;
    border: 1px solid #e0e0e0 !important;
    border-radius: 8px !important;
    cursor: pointer !important;
    font-family: 'Nunito Sans', sans-serif !important;
    font-size: 13px !important;
    font-weight: 600 !important;
    color: var(--purple) !important;
    transition: all 0.2s ease !important;
    width: 100% !important;
    justify-content: center !important;
}
body.single-blog-post .sp-toc-listen:hover {
    background: var(--purple) !important;
    color: #fff !important;
    border-color: var(--purple) !important;
}
body.single-blog-post .sp-toc-listen:hover svg {
    stroke: #fff !important;
}
body.single-blog-post .sp-toc-listen svg {
    stroke: var(--purple) !important;
    flex-shrink: 0 !important;
}

/* Share button in hero meta */
body.single-blog-post .sp-hero-meta-share:hover {
    color: rgba(255,255,255,0.8) !important;
}

/* Main content */
body.single-blog-post .sp-main {
    grid-column: 2 !important;
    width: auto !important;
    min-width: 0 !important;
}
body.single-blog-post .sp-main h2 {
    font-family: 'Montserrat', sans-serif !important;
    font-size: 26px !important;
    font-weight: 800 !important;
    color: var(--ink) !important;
    margin: 40px 0 16px !important;
    line-height: 1.3 !important;
    border: none !important;
    padding: 0 !important;
}
body.single-blog-post .sp-main h2:first-child { margin-top: 0 !important; }
body.single-blog-post .sp-main h3 {
    font-family: 'Montserrat', sans-serif !important;
    font-size: 20px !important;
    font-weight: 700 !important;
    color: var(--ink) !important;
    margin: 30px 0 12px !important;
    border: none !important;
    padding: 0 !important;
}
body.single-blog-post .sp-main p {
    font-size: 16px !important;
    line-height: 1.85 !important;
    color: var(--body-text) !important;
    margin-bottom: 16px !important;
}
body.single-blog-post .sp-main a {
    color: var(--purple) !important;
    font-weight: 600 !important;
    text-decoration: none !important;
}
body.single-blog-post .sp-main a:hover { text-decoration: underline !important; }
body.single-blog-post .sp-main ul,
body.single-blog-post .sp-main ol {
    margin: 0 0 16px 24px !important;
    padding: 0 !important;
}
body.single-blog-post .sp-main li {
    font-size: 16px !important;
    line-height: 1.8 !important;
    color: var(--body-text) !important;
    margin-bottom: 6px !important;
}
body.single-blog-post .sp-main li::before {
    display: none !important;
    content: none !important;
}

/* FAQ */
body.single-blog-post .sp-faq {
    background: var(--light-bg) !important;
    padding: 60px 0 !important;
}
body.single-blog-post .sp-faq .container { max-width: 820px !important; }
body.single-blog-post .sp-faq-heading {
    text-align: center !important;
    margin-bottom: 40px !important;
}
body.single-blog-post .sp-faq-heading span {
    display: block !important;
    font-family: 'Montserrat', sans-serif !important;
    font-size: 14px !important;
    font-weight: 600 !important;
    letter-spacing: 2px !important;
    text-transform: uppercase !important;
    color: var(--purple) !important;
    margin-bottom: 8px !important;
}
body.single-blog-post .sp-faq-heading h2 {
    font-family: 'Montserrat', sans-serif !important;
    font-size: 30px !important;
    font-weight: 800 !important;
    color: var(--ink) !important;
    border: none !important;
    padding: 0 !important;
    margin: 0 !important;
}
body.single-blog-post .sp-faq-item {
    padding: 24px 28px !important;
    margin-bottom: 14px !important;
    background: #fff !important;
    border-left: 4px solid var(--purple) !important;
    border-radius: 0 10px 10px 0 !important;
}
body.single-blog-post .sp-faq-item h3 {
    font-family: 'Montserrat', sans-serif !important;
    font-size: 17px !important;
    font-weight: 700 !important;
    color: var(--ink) !important;
    margin-bottom: 10px !important;
    margin-top: 0 !important;
    border: none !important;
    padding: 0 !important;
}
body.single-blog-post .sp-faq-item p {
    font-size: 15px !important;
    line-height: 1.8 !important;
    color: #666 !important;
    margin: 0 0 8px !important;
}
body.single-blog-post .sp-faq-item p:last-child { margin-bottom: 0 !important; }

/* CTA final (applies to both single post and archive) */
body.single-blog-post .sp-cta-final,
.ra-blog-page .sp-cta-final {
    background: var(--dark-section) !important;
    padding: 60px 0 !important;
    text-align: center !important;
}
body.single-blog-post .sp-cta-final .container,
.ra-blog-page .sp-cta-final .container { max-width: 900px !important; }
body.single-blog-post .sp-cta-final h2,
.ra-blog-page .sp-cta-final h2 {
    font-family: 'Montserrat', sans-serif !important;
    font-size: 32px !important;
    font-weight: 900 !important;
    color: #fff !important;
    line-height: 1.2 !important;
    margin-bottom: 6px !important;
    border: none !important;
    padding: 0 !important;
}
body.single-blog-post .sp-cta-sub,
.ra-blog-page .sp-cta-sub {
    font-size: 16px !important;
    color: rgba(255,255,255,.45) !important;
    margin-bottom: 30px !important;
}
body.single-blog-post .sp-cta-phone,
.ra-blog-page .sp-cta-phone {
    display: inline-flex !important;
    align-items: center !important;
    gap: 14px !important;
    margin-bottom: 24px !important;
}
body.single-blog-post .sp-cta-phone a,
.ra-blog-page .sp-cta-phone a {
    font-family: 'Montserrat', sans-serif !important;
    font-size: 38px !important;
    font-weight: 900 !important;
    color: #fff !important;
    text-decoration: none !important;
}
body.single-blog-post .sp-cta-phone a:hover,
.ra-blog-page .sp-cta-phone a:hover { color: #9b7fd4 !important; }
body.single-blog-post .sp-cta-phone-icon,
.ra-blog-page .sp-cta-phone-icon {
    width: 56px !important;
    height: 56px !important;
    background: var(--purple) !important;
    border-radius: 50% !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
}
body.single-blog-post .sp-cta-details,
.ra-blog-page .sp-cta-details {
    display: flex !important;
    justify-content: center !important;
    gap: 30px !important;
    margin-bottom: 28px !important;
    flex-wrap: wrap !important;
}
body.single-blog-post .sp-cta-detail,
.ra-blog-page .sp-cta-detail {
    display: flex !important;
    align-items: center !important;
    gap: 8px !important;
    font-family: 'Nunito Sans', sans-serif !important;
    font-size: 14px !important;
    color: rgba(255,255,255,.6) !important;
}
body.single-blog-post .sp-cta-actions,
.ra-blog-page .sp-cta-actions {
    display: flex !important;
    justify-content: center !important;
    gap: 12px !important;
    margin-bottom: 30px !important;
    flex-wrap: wrap !important;
}
body.single-blog-post .sp-cta-btn-fill,
.ra-blog-page .sp-cta-btn-fill {
    display: inline-flex !important;
    align-items: center !important;
    gap: 8px !important;
    padding: 14px 32px !important;
    background: var(--purple) !important;
    color: #fff !important;
    font-family: 'Nunito Sans', sans-serif !important;
    font-size: 15px !important;
    font-weight: 700 !important;
    border-radius: 10px !important;
    text-decoration: none !important;
    transition: all .3s !important;
}
body.single-blog-post .sp-cta-btn-fill:hover,
.ra-blog-page .sp-cta-btn-fill:hover {
    background: var(--purple-hover) !important;
    color: #fff !important;
}
body.single-blog-post .sp-cta-btn-ghost,
.ra-blog-page .sp-cta-btn-ghost {
    display: inline-flex !important;
    align-items: center !important;
    gap: 8px !important;
    padding: 14px 32px !important;
    background: transparent !important;
    color: #fff !important;
    border: 2px solid rgba(255,255,255,.25) !important;
    font-family: 'Nunito Sans', sans-serif !important;
    font-size: 15px !important;
    font-weight: 700 !important;
    border-radius: 10px !important;
    text-decoration: none !important;
    transition: all .3s !important;
}
body.single-blog-post .sp-cta-btn-ghost:hover,
.ra-blog-page .sp-cta-btn-ghost:hover {
    border-color: #fff !important;
    color: #fff !important;
}
body.single-blog-post .sp-cta-map,
.ra-blog-page .sp-cta-map {
    border-radius: 12px !important;
    overflow: hidden !important;
    margin-top: 10px !important;
}
body.single-blog-post .sp-cta-map iframe,
.ra-blog-page .sp-cta-map iframe {
    width: 100% !important;
    height: 300px !important;
    border: none !important;
}

/* Related services (matches device-page-styles.css exactly) */
body.single-blog-post .sp-related {
    padding: 50px 0 !important;
    background: #fff !important;
}
body.single-blog-post .sp-related h3 {
    font-family: 'Montserrat', sans-serif !important;
    font-size: 18px !important;
    font-weight: 700 !important;
    color: var(--ink) !important;
    margin-bottom: 20px !important;
    text-align: center !important;
    border: none !important;
    padding: 0 !important;
}
body.single-blog-post .sp-related-grid {
    display: grid !important;
    grid-template-columns: repeat(5, 1fr) !important;
    gap: 14px !important;
}
body.single-blog-post .sp-related-link {
    display: block !important;
    padding: 16px 18px !important;
    background: var(--light-bg) !important;
    border-radius: 10px !important;
    text-decoration: none !important;
    font-family: 'Montserrat', sans-serif !important;
    font-size: 14px !important;
    font-weight: 600 !important;
    color: var(--ink) !important;
    text-align: center !important;
    transition: all .2s !important;
    border: 1px solid transparent !important;
    float: none !important;
    width: auto !important;
}
body.single-blog-post .sp-related-link:hover {
    border-color: var(--purple) !important;
    color: var(--purple) !important;
    transform: translateY(-2px) !important;
}

/* Share section */
body.single-blog-post .ra-blog-share {
    margin-top: 40px !important;
    padding-top: 24px !important;
    border-top: 1px solid #e8ecf0 !important;
    display: flex !important;
    align-items: center !important;
    gap: 16px !important;
}
body.single-blog-post .ra-blog-share > span {
    font-family: 'Montserrat', sans-serif !important;
    font-size: 13px !important;
    font-weight: 600 !important;
    color: var(--muted) !important;
}
body.single-blog-post .ra-blog-share-links {
    display: flex !important;
    gap: 8px !important;
}
body.single-blog-post .ra-blog-share-links a {
    width: 36px !important;
    height: 36px !important;
    border-radius: 50% !important;
    background: var(--light-bg) !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    color: var(--muted) !important;
    text-decoration: none !important;
    transition: all 0.2s ease !important;
}
body.single-blog-post .ra-blog-share-links a:hover {
    background: var(--purple) !important;
    color: #fff !important;
}

/* Overflow visible for sticky TOC */
body.single-blog-post,
body.single-blog-post .ra-blog-page,
body.single-blog-post .sp-content-wrap {
    overflow: visible !important;
}

/* ════════════════════════════════════════════════
   BLOG ARCHIVE - unchanged
   ════════════════════════════════════════════════ */
.ra-blog-hero {
    position: relative;
}
.ra-blog-hero-inner {
    background: #1a1432 !important;
    padding: 48px 0 40px !important;
    position: relative !important;
    overflow: hidden !important;
}
.ra-blog-hero-inner::before {
    content: '' !important;
    position: absolute !important;
    inset: 0 !important;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' xmlns='http://www.w3.org/2000/svg'%3E%3Crect x='0' y='0' width='60' height='60' fill='none' stroke='%237141B1' stroke-width='.3' opacity='.08'/%3E%3C/svg%3E") !important;
    pointer-events: none !important;
}
.ra-blog-hero-inner .ra-blog-container {
    position: relative !important;
    z-index: 1 !important;
}
.ra-blog-hero h1 {
    font-family: 'Montserrat', sans-serif !important;
    font-size: 32px !important;
    font-weight: 800 !important;
    color: #fff !important;
    margin: 0 0 10px !important;
    line-height: 1.2 !important;
}
.ra-blog-breadcrumb {
    font-family: 'Montserrat', sans-serif !important;
    font-size: 14px !important;
    color: rgba(255,255,255,0.4) !important;
    margin: 0 0 14px !important;
}
.ra-blog-breadcrumb a {
    color: rgba(255,255,255,0.6) !important;
    text-decoration: none !important;
    transition: color 0.2s ease !important;
}
.ra-blog-breadcrumb a:hover { color: #fff !important; }
.ra-blog-hero-desc-text {
    font-family: 'Nunito Sans', sans-serif !important;
    font-size: 15px !important;
    color: rgba(255,255,255,0.55) !important;
    margin: 0 !important;
    max-width: 600px !important;
    display: inline-block !important;
}

/* Post Grid */
.ra-blog-grid-section {
    padding: 50px 0 60px !important;
    background: #fff !important;
}
.ra-blog-grid {
    display: grid !important;
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 24px !important;
}
.ra-blog-card {
    background: #fff !important;
    border: 1px solid #e8ecf0 !important;
    border-radius: 10px !important;
    padding: 28px 28px 24px !important;
    transition: transform 0.25s ease, box-shadow 0.25s ease !important;
}
.ra-blog-card:hover {
    transform: translateY(-2px) !important;
    box-shadow: 0 6px 24px rgba(0,0,0,0.1) !important;
}
.ra-blog-card-date {
    font-family: 'Montserrat', sans-serif !important;
    font-size: 12px !important;
    font-weight: 700 !important;
    color: #7141B1 !important;
    text-transform: uppercase !important;
    letter-spacing: 1px !important;
}
.ra-blog-card h2 {
    font-family: 'Montserrat', sans-serif !important;
    font-size: 18px !important;
    font-weight: 700 !important;
    color: #1B1D21 !important;
    margin: 10px 0 12px !important;
    line-height: 1.35 !important;
}
.ra-blog-card h2 a {
    color: inherit !important;
    text-decoration: none !important;
}
.ra-blog-card h2 a:hover { color: #7141B1 !important; }
.ra-blog-card > p {
    font-family: 'Nunito Sans', sans-serif !important;
    font-size: 14px !important;
    color: #555 !important;
    line-height: 1.65 !important;
    margin: 0 0 16px !important;
}
.ra-blog-read-more {
    font-family: 'Montserrat', sans-serif !important;
    font-size: 13px !important;
    font-weight: 700 !important;
    color: #7141B1 !important;
    text-decoration: none !important;
    display: inline-flex !important;
    align-items: center !important;
    gap: 6px !important;
    transition: gap 0.2s ease !important;
}
.ra-blog-read-more:hover {
    gap: 10px !important;
    color: #5c2fa0 !important;
}

/* Pagination */
.ra-blog-pagination {
    margin-top: 40px !important;
    display: flex !important;
    justify-content: center !important;
}
.ra-blog-pagination .page-numbers {
    list-style: none !important;
    display: flex !important;
    gap: 6px !important;
    padding: 0 !important;
    margin: 0 !important;
}
.ra-blog-pagination .page-numbers li { list-style: none !important; }
.ra-blog-pagination .page-numbers li a,
.ra-blog-pagination .page-numbers li span {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    min-width: 38px !important;
    height: 38px !important;
    padding: 0 12px !important;
    border-radius: 8px !important;
    font-family: 'Montserrat', sans-serif !important;
    font-size: 14px !important;
    font-weight: 600 !important;
    text-decoration: none !important;
    transition: all 0.2s ease !important;
}
.ra-blog-pagination .page-numbers li a {
    background: #fff !important;
    color: #1B1D21 !important;
    border: 1px solid #e0e0e0 !important;
}
.ra-blog-pagination .page-numbers li a:hover {
    background: #7141B1 !important;
    color: #fff !important;
    border-color: #7141B1 !important;
}
.ra-blog-pagination .page-numbers li span.current {
    background: #7141B1 !important;
    color: #fff !important;
    border: 1px solid #7141B1 !important;
}

/* ════════════════════════════════════════════════
   RESPONSIVE
   ════════════════════════════════════════════════ */
@media (max-width: 768px) {
    .ra-blog-hero h1 { font-size: 26px !important; }
    .ra-blog-grid { grid-template-columns: 1fr !important; }

    body.single-blog-post .sp-hero h1 { font-size: 28px !important; }
    body.single-blog-post .sp-content-wrap {
        grid-template-columns: 1fr !important;
    }
    body.single-blog-post .sp-toc {
        position: static !important;
        width: 100% !important;
        min-width: 0 !important;
        max-height: none !important;
    }
    body.single-blog-post .sp-main { grid-column: 1 !important; }
    body.single-blog-post .sp-hero-buttons { flex-direction: column !important; }
    body.single-blog-post .sp-cta-final h2 { font-size: 24px !important; }
    body.single-blog-post .sp-cta-phone a { font-size: 28px !important; }
    body.single-blog-post .sp-cta-details { flex-direction: column !important; align-items: center !important; gap: 12px !important; }
    body.single-blog-post .sp-cta-actions { flex-direction: column !important; align-items: center !important; }
    body.single-blog-post .ra-blog-share { flex-direction: column !important; align-items: flex-start !important; }
    body.single-blog-post .sp-related-grid { grid-template-columns: 1fr !important; }
}
