/**
 * Single blog post — professional layout + mobile reading experience
 * SEO-safe: keeps H1, schema hooks, and content structure.
 */

.nofal-single-post {
    --sp-navy: #141428;
    --sp-primary: #283891;
    --sp-accent: #25aae1;
    --sp-accent-deep: #1a94c8;
    --sp-text: #4d5567;
    --sp-muted: #64748b;
    --sp-soft: #f6faff;
    --sp-border: rgba(20, 20, 40, 0.08);
    --sp-radius: 18px;
    --sp-check: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='none'%3E%3Cpath d='M3.5 8.2l2.8 2.8 6.2-6.2' stroke='%23fff' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    --sp-ease: cubic-bezier(0.22, 1, 0.36, 1);
    overflow-x: clip;
}

/* ── Reading progress ── */
.nofal-post-progress {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    z-index: 9998;
    background: rgba(20, 20, 40, 0.06);
    pointer-events: none;
}

.nofal-post-progress__fill {
    display: block;
    height: 100%;
    width: 0;
    background: linear-gradient(90deg, var(--sp-primary), var(--sp-accent));
    transition: width 0.15s linear;
    box-shadow: 0 0 8px rgba(37, 170, 225, 0.45);
}

/* ── Scroll reveal animations ── */
@keyframes spFadeUp {
    from {
        opacity: 0;
        transform: translateY(16px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes spFadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes spPulseHint {
    0%, 100% { transform: translateY(0); opacity: 0.55; }
    50% { transform: translateY(4px); opacity: 1; }
}

@media (prefers-reduced-motion: no-preference) {
    .nofal-single-post .nofal-post-reveal {
        opacity: 0;
        transform: translateY(18px);
        transition:
            opacity 0.55s var(--sp-ease),
            transform 0.55s var(--sp-ease);
        transition-delay: var(--sp-delay, 0s);
        will-change: opacity, transform;
    }

    .nofal-single-post .nofal-post-reveal.is-inview {
        opacity: 1;
        transform: none;
    }

    /* Above-fold entrance on load */
    .nofal-single-post .nofal-post-title {
        animation: spFadeUp 0.65s var(--sp-ease) both;
    }

    .nofal-single-post .info-head {
        animation: spFadeUp 0.65s 0.08s var(--sp-ease) both;
    }

    .nofal-single-post .post-featured-image {
        animation: spFadeUp 0.7s 0.12s var(--sp-ease) both;
    }

    .nofal-single-post .nofal-post-featured {
        animation: spFadeUp 0.7s 0.12s var(--sp-ease) both;
    }

    .nofal-single-post .consultation-booking-box {
        animation: spFadeUp 0.7s 0.18s var(--sp-ease) both;
    }

    /* Override reveal for above-fold (already animated) */
    .nofal-single-post .nofal-post-title.nofal-post-reveal,
    .nofal-single-post .info-head.nofal-post-reveal,
    .nofal-single-post .nofal-post-featured.nofal-post-reveal,
    .nofal-single-post .post-featured-image.nofal-post-reveal,
    .nofal-single-post .consultation-booking-box.nofal-post-reveal {
        opacity: 1;
        transform: none;
    }
}

@media (prefers-reduced-motion: reduce) {
    .nofal-single-post .nofal-post-reveal {
        opacity: 1 !important;
        transform: none !important;
        transition: none !important;
    }

    .nofal-post-progress__fill {
        transition: none;
    }
}

/* ── Page head / breadcrumb strip ── */
.nofal-single-post .nofal-post-pagehead,
.nofal-single-post .page-head {
    position: relative;
    padding: clamp(1.35rem, 3.5vw, 2rem) 0;
    min-height: 0;
    background-color: var(--sp-navy);
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
}

.nofal-single-post .nofal-post-pagehead::before,
.nofal-single-post .page-head::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(20, 20, 40, 0.94) 0%, rgba(40, 56, 145, 0.8) 100%);
    pointer-events: none;
}

.nofal-single-post .page-head .container {
    position: relative;
    z-index: 1;
    max-width: 1100px;
}

.nofal-single-post .page-head .breadcrumb {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.4rem 0.65rem;
    margin: 0;
    padding: 0;
    border: 0;
    background: transparent;
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.88);
}

.nofal-single-post .page-head .breadcrumb a {
    color: inherit;
    text-decoration: none;
}

.nofal-single-post .page-head .breadcrumb a:hover {
    color: #9ad8f5;
}

.nofal-single-post .page-head .breadcrumb span {
    opacity: 0.75;
    max-width: min(100%, 42ch);
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

/* ── Professional title inside article ── */
.nofal-single-post .nofal-post-title {
    margin: 0 0 0.35rem;
}

.nofal-single-post .nofal-post-title__cat {
    display: inline-flex;
    align-items: center;
    margin-bottom: 0.75rem;
    padding: 0.35rem 0.8rem;
    border-radius: 999px;
    background: rgba(37, 170, 225, 0.1);
    color: var(--sp-accent-deep);
    font-size: 0.78rem;
    font-weight: 800;
    text-decoration: none;
}

.nofal-single-post .nofal-post-title__cat:hover {
    background: rgba(37, 170, 225, 0.16);
    color: var(--sp-primary);
}

.nofal-single-post .nofal-post-title h1 {
    margin: 0;
    font-size: clamp(1.45rem, 3.2vw, 2.15rem);
    font-weight: 800;
    line-height: 1.3;
    letter-spacing: -0.02em;
    color: var(--sp-navy);
    text-transform: none;
}

/* ── Meta + share ── */
.nofal-single-post .info-head {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 1.25rem;
    padding: 0.85rem 0 1.15rem;
    border-bottom: 1px solid var(--sp-border);
}

.nofal-single-post .info-head .info {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem 1.1rem;
    color: var(--sp-muted);
    font-size: 0.9rem;
}

.nofal-single-post .info-head .social {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.55rem;
}

.nofal-single-post .info-head .social > span {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--sp-navy);
    margin-inline-end: 0.25rem;
}

.nofal-single-post .info-head .social a {
    width: 38px;
    height: 38px;
    border-radius: 10px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #fff !important;
    text-decoration: none;
    transition: transform 0.2s ease;
}

.nofal-single-post .info-head .social a:hover {
    transform: translateY(-2px);
}

.nofal-single-post .info-head .social a.ti-facebook { background: #1877f2; }
.nofal-single-post .info-head .social a.ti-twitter { background: #1da1f2; }
.nofal-single-post .info-head .social a.ti-linkedin { background: #0a66c2; }
.nofal-single-post .info-head .social a.ti-whatsapp { background: #25d366; }

/* ── Featured image frame ── */
.nofal-single-post .nofal-post-featured {
    position: relative;
    margin: 0 0 1.65rem;
    padding: 5px;
    border-radius: calc(var(--sp-radius) + 6px);
    background: linear-gradient(135deg, var(--sp-primary) 0%, var(--sp-accent) 50%, #71b4e8 100%);
    box-shadow:
        0 18px 44px rgba(40, 56, 145, 0.18),
        0 0 0 1px rgba(255, 255, 255, 0.35) inset;
    overflow: hidden;
}

.nofal-single-post .nofal-post-featured__ring {
    position: absolute;
    inset: -40%;
    background: conic-gradient(
        from 180deg,
        rgba(255, 255, 255, 0) 0deg,
        rgba(255, 255, 255, 0.35) 60deg,
        rgba(255, 255, 255, 0) 120deg,
        rgba(255, 255, 255, 0.2) 220deg,
        rgba(255, 255, 255, 0) 360deg
    );
    pointer-events: none;
    z-index: 1;
    opacity: 0.55;
}

@media (prefers-reduced-motion: no-preference) {
    .nofal-single-post .nofal-post-featured__ring {
        animation: spFrameShimmer 6s linear infinite;
    }
}

@keyframes spFrameShimmer {
    to { transform: rotate(360deg); }
}

.nofal-single-post .nofal-post-featured::after {
    content: "";
    position: absolute;
    inset: 5px;
    border-radius: calc(var(--sp-radius) + 2px);
    border: 2px solid rgba(255, 255, 255, 0.55);
    pointer-events: none;
    z-index: 2;
}

.nofal-single-post .nofal-post-featured .post-featured-image {
    position: relative;
    z-index: 0;
    display: block;
    width: 100% !important;
    max-width: 100% !important;
    height: auto !important;
    margin: 0 !important;
    border-radius: var(--sp-radius);
    object-fit: cover;
    background: #fff;
}

@media (min-width: 768px) {
    .nofal-single-post .nofal-post-featured .post-featured-image {
        max-height: 420px;
    }
}

/* Legacy selector fallback (if wrapper missing) */
.nofal-single-post .post-featured-image:not(.nofal-post-featured .post-featured-image) {
    display: block;
    width: 100% !important;
    max-width: 100% !important;
    height: auto !important;
    margin: 0 0 1.5rem !important;
    border-radius: calc(var(--sp-radius) + 2px);
    box-shadow: 0 14px 40px rgba(20, 20, 40, 0.1);
    object-fit: cover;
}

/* ── Article surface ── */
.nofal-single-post .single-post-content .primary-block {
    background: #fff;
    border: 1px solid var(--sp-border);
    border-radius: calc(var(--sp-radius) + 4px);
    padding: clamp(1.15rem, 3vw, 1.85rem);
    box-shadow: 0 10px 32px rgba(20, 20, 40, 0.05);
    overflow: hidden;
}

.nofal-single-post .section-small {
    background:
        radial-gradient(ellipse 70% 40% at 50% 0%, rgba(37, 170, 225, 0.06), transparent 55%),
        #f7f9fd;
    padding-top: clamp(1rem, 3vw, 2.5rem);
    padding-bottom: clamp(2rem, 5vw, 3.5rem);
}

.nofal-single-post .section-small > .container {
    width: 100%;
    max-width: 1140px;
    margin: 0 auto;
    padding-inline: clamp(0.75rem, 3vw, 1.25rem);
    box-sizing: border-box;
}

.nofal-single-post .single-post-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 300px;
    gap: clamp(1rem, 2.5vw, 2rem);
    align-items: start;
}

.nofal-single-post .single-post-content {
    min-width: 0;
}

/* Section headings — reading rhythm */
.nofal-single-post .nfs-seo-article h2,
.nofal-single-post .nfs-article h2,
.nofal-single-post .post-content h2 {
    scroll-margin-top: 72px;
    position: relative;
    padding-inline-start: 0.85rem;
}

.nofal-single-post .nfs-seo-article h2::before,
.nofal-single-post .nfs-article h2::before,
.nofal-single-post .post-content h2::before {
    content: "";
    position: absolute;
    inset-inline-start: 0;
    top: 0.35em;
    width: 4px;
    height: 1.1em;
    border-radius: 999px;
    background: linear-gradient(180deg, var(--sp-accent), var(--sp-primary));
}

@media (prefers-reduced-motion: no-preference) {
    .nofal-single-post .nfs-seo-article h2.is-inview::before,
    .nofal-single-post .nfs-article h2.is-inview::before,
    .nofal-single-post .post-content h2.is-inview::before {
        animation: spFadeIn 0.5s var(--sp-ease) both;
    }
}

/* Hero intro box — no duplicate title */
.nofal-single-post .nfs-hero-box,
.nofal-single-post .nfs-hero {
    margin-top: 0.25rem;
}

.nofal-single-post .nfs-hero-box .nfs-lead,
.nofal-single-post .nfs-hero .nfs-lead {
    margin: 0;
    font-size: clamp(1rem, 2.2vw, 1.1rem);
    line-height: 1.8;
}

/* ── Ordered lists (exclude TOC) ── */
.nofal-single-post .rich-content .post-content ol,
.nofal-single-post .post-content ol {
    list-style: none;
    margin: 1.25rem 0;
    padding: 0;
    counter-reset: sp-ol;
}

.nofal-single-post .rich-content .post-content ol > li,
.nofal-single-post .post-content ol > li {
    position: relative;
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    counter-increment: sp-ol;
    margin: 0 0 0.65rem;
    padding: 0.65rem 0.85rem;
    border-radius: 12px;
    background: #fff;
    border: 1px solid var(--sp-border);
    color: var(--sp-text);
    line-height: 1.75;
}

.nofal-single-post .rich-content .post-content ol > li::before,
.nofal-single-post .post-content ol > li::before {
    content: counter(sp-ol);
    position: static;
    flex: 0 0 auto;
    width: 1.75rem;
    height: 1.75rem;
    margin-top: 0.1rem;
    border-radius: 8px;
    background: linear-gradient(135deg, var(--sp-primary), var(--sp-accent));
    color: #fff !important;
    font-size: 0.78rem;
    font-weight: 800;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(40, 56, 145, 0.2);
    transform: none;
    left: auto;
    right: auto;
}

/* ── TOC numbering (after general lists — wins on purpose) ── */
.nofal-single-post .nfs-toc {
    padding: 1.25rem 1.35rem;
}

.nofal-single-post .nfs-toc > strong {
    margin-bottom: 0.85rem;
}

.nofal-single-post .nfs-toc ol {
    list-style: none !important;
    margin: 0 !important;
    padding: 0 !important;
    padding-inline-start: 0 !important;
    columns: 1 !important;
    counter-reset: toc-item;
    display: grid;
    gap: 0.5rem;
}

@media (min-width: 900px) {
    .nofal-single-post .nfs-toc ol {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 0.55rem 1rem;
    }
}

.nofal-single-post .nfs-toc ol > li,
.nofal-single-post .rich-content .nfs-toc ol > li,
.nofal-single-post .post-content .nfs-toc ol > li {
    position: relative;
    display: flex !important;
    align-items: center;
    justify-content: flex-start;
    gap: 0.85rem;
    counter-increment: toc-item;
    margin: 0 !important;
    padding: 0.75rem 1rem !important;
    border-radius: 12px;
    background: var(--sp-soft);
    border: 1px solid rgba(37, 170, 225, 0.14);
    line-height: 1.55;
    color: var(--sp-text);
    text-align: start;
}

.nofal-single-post .nfs-toc ol > li::before,
.nofal-single-post .rich-content .nfs-toc ol > li::before,
.nofal-single-post .post-content .nfs-toc ol > li::before {
    content: counter(toc-item) !important;
    position: static !important;
    flex: 0 0 1.75rem;
    inset: auto !important;
    top: auto !important;
    left: auto !important;
    right: auto !important;
    transform: none !important;
    width: 1.75rem !important;
    height: 1.75rem !important;
    min-width: 1.75rem;
    max-width: 1.75rem;
    margin: 0 !important;
    margin-inline-end: 0.15rem !important;
    border-radius: 999px !important;
    background: var(--sp-accent) !important;
    background-image: none !important;
    color: #fff !important;
    font-size: 0.75rem !important;
    font-weight: 800 !important;
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    box-shadow: none !important;
    line-height: 1 !important;
    z-index: 0;
    float: none !important;
}

.nofal-single-post .nfs-toc ol > li a {
    flex: 0 1 auto;
    min-width: 0;
    max-width: 100%;
    text-align: start !important;
    color: var(--sp-navy);
    font-weight: 700;
    text-decoration: none;
    font-size: 0.9rem;
    margin: 0 !important;
    padding: 0 !important;
}

.nofal-single-post .nfs-toc ol > li a:hover {
    color: var(--sp-accent-deep);
}

.nofal-single-post .nfs-toc ol > li {
    transition: transform 0.25s var(--sp-ease), box-shadow 0.25s var(--sp-ease), border-color 0.25s ease;
}

@media (prefers-reduced-motion: no-preference) {
    .nofal-single-post .nfs-toc ol > li:active {
        transform: scale(0.98);
    }
}

.nofal-single-post .nfs-toc ol > li:hover {
    border-color: rgba(37, 170, 225, 0.28);
    box-shadow: 0 6px 18px rgba(37, 170, 225, 0.1);
}

/* ── Bullet lists → brand check icons ── */
.nofal-single-post .rich-content ul:not(.nfs-badges):not(.recent-posts-list):not(.categories-list),
.nofal-single-post .post-content ul:not(.nfs-badges) {
    list-style: none;
    margin: 1.15rem 0;
    padding: 0;
}

.nofal-single-post .rich-content ul:not(.nfs-checklist):not(.nfs-list):not(.nfs-steps) > li,
.nofal-single-post .post-content ul:not(.nfs-checklist):not(.nfs-list):not(.nfs-steps) > li {
    position: relative;
    display: flex;
    align-items: flex-start;
    gap: 0.7rem;
    margin: 0 0 0.55rem;
    padding: 0.55rem 0.75rem;
    border-radius: 12px;
    background: var(--sp-soft);
    border: 1px solid rgba(37, 170, 225, 0.12);
    color: var(--sp-text);
    line-height: 1.7;
}

.nofal-single-post .rich-content ul:not(.nfs-checklist):not(.nfs-list):not(.nfs-steps) > li::before,
.nofal-single-post .post-content ul:not(.nfs-checklist):not(.nfs-list):not(.nfs-steps) > li::before {
    content: "" !important;
    font-family: inherit !important;
    position: static;
    flex: 0 0 auto;
    width: 1.35rem;
    height: 1.35rem;
    min-width: 1.35rem;
    margin-top: 0.2rem;
    border-radius: 50%;
    background-color: var(--sp-accent);
    background-image: var(--sp-check);
    background-repeat: no-repeat;
    background-position: center;
    background-size: 0.72rem;
    box-shadow: 0 4px 10px rgba(37, 170, 225, 0.28);
    left: auto;
    right: auto;
    transform: none;
}

/* Checklist / nfs-list — flex so icons never overlap text */
.nofal-single-post .nfs-checklist li,
.nofal-single-post .nfs-list li {
    position: relative;
    display: flex !important;
    align-items: flex-start;
    gap: 0.75rem !important;
    padding: 0.7rem 0.85rem !important;
    padding-inline-start: 0.85rem !important;
}

.nofal-single-post .nfs-checklist li::before,
.nofal-single-post .nfs-list li::before {
    content: "" !important;
    position: static !important;
    flex: 0 0 1.25rem;
    inset: auto !important;
    top: auto !important;
    left: auto !important;
    right: auto !important;
    transform: none !important;
    width: 1.25rem;
    height: 1.25rem;
    min-width: 1.25rem;
    margin: 0.15rem 0 0 !important;
    border-radius: 50%;
    background-color: var(--sp-accent) !important;
    background-image: var(--sp-check);
    background-repeat: no-repeat;
    background-position: center;
    background-size: 0.68rem;
    color: transparent !important;
    font-size: 0 !important;
    display: block !important;
    box-shadow: 0 4px 10px rgba(37, 170, 225, 0.25);
    float: none !important;
}

/* Consultation box — less aggressive red */
.nofal-single-post .consultation-booking-box .primary-block {
    background: linear-gradient(135deg, #1c1c35 0%, #283891 55%, #1a6fa8 120%);
    box-shadow: 0 16px 40px rgba(40, 56, 145, 0.28);
}

.nofal-single-post .consultation-booking-box .booking-whatsapp-btn {
    background: #25d366 !important;
    border: 0;
}

/* Sidebar polish */
.nofal-single-post .sidebar-widget {
    border: 1px solid var(--sp-border);
    border-radius: var(--sp-radius);
    box-shadow: 0 8px 24px rgba(20, 20, 40, 0.05);
}

.nofal-single-post .sidebar-widget h3 {
    color: var(--sp-navy);
    border-bottom-color: rgba(37, 170, 225, 0.2);
}

.nofal-single-post .sidebar-widget ul li a:hover {
    color: var(--sp-accent-deep);
}

/* Responsive — tablet */
@media (max-width: 991px) {
    .nofal-single-post .single-post-layout {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }

    .nofal-single-post .info-head {
        flex-direction: column;
        align-items: stretch;
        gap: 0.85rem;
    }

    .nofal-single-post .single-post-sidebar {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 1rem;
    }

    .nofal-single-post .sidebar-widget.consultation-sidebar-box {
        grid-column: 1 / -1;
    }
}

/* Responsive — mobile */
@media (max-width: 767px) {
    .nofal-single-post .page-head {
        padding: 0.85rem 0;
    }

    .nofal-single-post .page-head .breadcrumb {
        font-size: 0.8rem;
        gap: 0.35rem 0.5rem;
    }

    .nofal-single-post .page-head .breadcrumb span {
        display: none;
    }

    .nofal-single-post .section-small > .container {
        padding-inline: 0.65rem;
    }

    .nofal-single-post .single-post-content .primary-block {
        padding: 1.1rem 0.95rem;
        border-radius: 20px 20px 16px 16px;
        border-inline: 0;
        box-shadow:
            0 4px 24px rgba(20, 20, 40, 0.06),
            0 1px 0 rgba(255, 255, 255, 0.8) inset;
    }

    .nofal-single-post .nofal-post-title h1 {
        font-size: clamp(1.28rem, 5.2vw, 1.65rem);
        line-height: 1.35;
    }

    .nofal-single-post .nofal-post-title__cat {
        font-size: 0.72rem;
        padding: 0.3rem 0.7rem;
    }

    /* Meta row — compact chips */
    .nofal-single-post .info-head {
        padding: 0.65rem 0 0.85rem;
        margin-bottom: 1rem;
    }

    .nofal-single-post .info-head .info {
        width: 100%;
        gap: 0.5rem;
    }

    .nofal-single-post .info-head .info span,
    .nofal-single-post .info-head .info time {
        display: inline-flex;
        align-items: center;
        padding: 0.35rem 0.65rem;
        border-radius: 999px;
        background: var(--sp-soft);
        border: 1px solid rgba(37, 170, 225, 0.12);
        font-size: 0.78rem;
    }

    /* Social — horizontal scroll, thumb-friendly */
    .nofal-single-post .info-head .social {
        width: 100%;
        flex-wrap: nowrap;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        padding-bottom: 0.15rem;
        gap: 0.45rem;
    }

    .nofal-single-post .info-head .social::-webkit-scrollbar {
        display: none;
    }

    .nofal-single-post .info-head .social > span {
        flex-shrink: 0;
        font-size: 0.78rem;
        white-space: nowrap;
    }

    .nofal-single-post .info-head .social a {
        flex-shrink: 0;
        width: 42px;
        height: 42px;
        border-radius: 12px;
    }

    /* Featured image — framed on mobile */
    .nofal-single-post .nofal-post-featured {
        margin: 0 0 1.35rem;
        padding: 4px;
        border-radius: 18px;
    }

    .nofal-single-post .nofal-post-featured .post-featured-image {
        max-height: 220px;
        border-radius: 14px;
    }

    .nofal-single-post .nofal-post-featured::after {
        inset: 4px;
        border-radius: 14px;
        border-width: 1.5px;
    }

    /* Hero intro box */
    .nofal-single-post .nfs-hero-box,
    .nofal-single-post .nfs-hero {
        padding: 1.25rem 1rem;
        border-radius: 16px;
        margin-bottom: 1.25rem;
    }

    .nofal-single-post .nfs-badges {
        gap: 0.45rem;
    }

    .nofal-single-post .nfs-badges span {
        font-size: 0.72rem;
        padding: 0.35rem 0.65rem;
    }

    /* TOC — full width, larger touch targets */
    .nofal-single-post .nfs-toc {
        padding: 1rem;
        border-radius: 16px;
        margin: 1.15rem 0;
    }

    .nofal-single-post .nfs-toc > strong {
        font-size: 1rem;
        display: flex;
        align-items: center;
        gap: 0.5rem;
    }

    .nofal-single-post .nfs-toc > strong::before {
        content: "";
        width: 8px;
        height: 8px;
        border-radius: 50%;
        background: var(--sp-accent);
        box-shadow: 0 0 0 4px rgba(37, 170, 225, 0.2);
        animation: spPulseHint 2s ease-in-out infinite;
    }

    .nofal-single-post .nfs-toc ol {
        grid-template-columns: 1fr !important;
        gap: 0.45rem;
    }

    .nofal-single-post .nfs-toc ol > li,
    .nofal-single-post .rich-content .nfs-toc ol > li,
    .nofal-single-post .post-content .nfs-toc ol > li {
        padding: 0.8rem 1rem !important;
        min-height: 48px;
        gap: 1rem !important;
    }

    .nofal-single-post .nfs-toc ol > li::before,
    .nofal-single-post .rich-content .nfs-toc ol > li::before,
    .nofal-single-post .post-content .nfs-toc ol > li::before {
        width: 1.65rem !important;
        height: 1.65rem !important;
        min-width: 1.65rem;
        max-width: 1.65rem;
        flex-basis: 1.65rem;
        margin-inline-end: 0.25rem !important;
    }

    .nofal-single-post .nfs-toc ol > li a {
        font-size: 0.88rem;
        line-height: 1.45;
    }

    /* Body text readability */
    .nofal-single-post .nfs-seo-article,
    .nofal-single-post .nfs-article,
    .nofal-single-post .post-content {
        font-size: 1rem;
        line-height: 1.85;
    }

    .nofal-single-post .nfs-seo-article h2,
    .nofal-single-post .nfs-article h2,
    .nofal-single-post .post-content h2 {
        font-size: clamp(1.12rem, 4.5vw, 1.35rem);
        margin-top: 1.75rem;
        scroll-margin-top: 64px;
    }

    .nofal-single-post .nfs-toc ol li,
    .nofal-single-post .rich-content ol > li,
    .nofal-single-post .post-content ol > li {
        font-size: 0.92rem;
    }

    /* Lists — full width cards */
    .nofal-single-post .nfs-checklist,
    .nofal-single-post .nfs-list {
        grid-template-columns: 1fr !important;
    }

    .nofal-single-post .nfs-grid {
        grid-template-columns: 1fr !important;
    }

    /* CTA boxes */
    .nofal-single-post .consultation-booking-box .primary-block {
        padding: 1.25rem 1rem;
        border-radius: 16px;
    }

    .nofal-single-post .consultation-booking-box .booking-title {
        font-size: 1.15rem;
        line-height: 1.4;
    }

    .nofal-single-post .consultation-booking-box .booking-whatsapp-btn {
        min-height: 48px;
        font-size: 0.95rem;
    }

    .nofal-single-post .simple-consultation-box {
        border-radius: 16px;
        padding: 1.15rem 1rem;
    }

    /* Sidebar stacks on mobile */
    .nofal-single-post .single-post-sidebar {
        grid-template-columns: 1fr;
    }

    .nofal-single-post .sidebar-widget {
        padding: 1.15rem;
    }
}

/* Small phones */
@media (max-width: 380px) {
    .nofal-single-post .nofal-post-title h1 {
        font-size: 1.22rem;
    }

    .nofal-single-post .nofal-post-featured .post-featured-image {
        max-height: 190px;
    }

    .nofal-single-post .info-head .social a {
        width: 40px;
        height: 40px;
    }
}

/* Large screens */
@media (min-width: 1200px) {
    .nofal-single-post .section-small > .container {
        max-width: 1180px;
    }

    .nofal-single-post .single-post-layout {
        grid-template-columns: minmax(0, 1fr) 320px;
        gap: 2.25rem;
    }

    .nofal-single-post .single-post-content .primary-block {
        padding: 2rem 2.15rem;
    }
}
