   /* SleepyNerdLive Master Article Framework */
   .snl-article-body {
        max-width: 800px;
        margin: 0 auto;
        font-family: 'Charter', 'Georgia', serif;
        font-size: 1.2rem;
        line-height: 1.8;
        color: var(--snl-text);
        -webkit-font-smoothing: antialiased;
    }

    /* Typography Hierarchy */
    .snl-article-body h3 {
        font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
        font-size: 1.85rem;
        font-weight: 800;
        color: var(--snl-navy);
        letter-spacing: -0.02em;
        margin-top: 2.5em;
        border-left: 4px solid var(--snl-orange);
        padding-left: 20px;
        margin-bottom: 1rem;
    }

    /* Investigative Callouts */
    .snl-callout-box {
        background: var(--snl-muted);
        border: 1px solid var(--snl-border);
        border-radius: 12px;
        padding: 32px;
        margin: 40px 0;
        position: relative;
        box-shadow: 0 10px 30px rgba(0,0,0,0.03);
    }

    .snl-callout-box.featured-snippet {
        background: #f0f7ff;
        border-left: 6px solid var(--snl-navy);
    }

    .snl-callout-box.bias-analysis {
        border-top: 4px solid #e11d48;
        font-style: italic;
    }

    .snl-callout-label {
        position: absolute;
        top: -12px;
        left: 24px;
        background: var(--snl-navy);
        color: white;
        font-family: sans-serif;
        font-size: 0.7rem;
        font-weight: 800;
        padding: 2px 12px;
        border-radius: 4px;
        text-transform: uppercase;
        letter-spacing: 0.5px;
    }

    /* Media & CLS Defense */
    .snl-article-body img {
        display: block;
        width: 100%;
        height: auto;
        border-radius: 14px;
        margin: 48px 0;
        box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    }

    /* FAQ & Schema Styling */
    .snl-faq-container {
        background: #f4f4f6;
        border-radius: 18px;
        padding: 40px;
        margin-top: 60px;
    }

    .snl-faq-item {
        margin-bottom: 24px;
        padding-bottom: 16px;
        border-bottom: 1px solid rgba(0,0,0,0.05);
    }

    .snl-faq-item:last-child { border: none; }

    .snl-faq-question {
        font-weight: 700;
        color: var(--snl-navy);
        display: block;
        margin-bottom: 8px;
    }

    /* Links & CTAs */
    .snl-article-body a {
        color: var(--snl-accent);
        text-decoration: none;
        box-shadow: inset 0 -2px 0 rgba(229, 133, 34, 0.2);
        transition: all 0.2s ease;
    }

    .snl-article-body a:hover {
        box-shadow: inset 0 -20px 0 rgba(229, 133, 34, 0.1);
    }

    .snl-footer-cta {
        background: var(--snl-navy);
        color: white;
        padding: 48px;
        border-radius: 20px;
        text-align: center;
        margin-top: 80px;
    }

    .snl-footer-cta h2 { color: var(--snl-orange) !important; margin-top: 0; }

    .snl-button {
        display: inline-block;
        background: var(--snl-orange);
        color: var(--snl-navy) !important;
        padding: 16px 40px;
        border-radius: 12px;
        font-weight: 700;
        font-family: sans-serif;
        margin-top: 24px;
        box-shadow: 0 4px 14px rgba(243, 160, 76, 0.4);
        text-decoration: none !important;
    }

    @media (max-width: 600px) {
        .snl-article-body { font-size: 1.1rem; }
        .snl-callout-box { padding: 20px; }
    }