
    /* STRICTLY SCOPED CSS: Only affects elements inside .fuji-article-wrapper */
    
    .fuji-article-wrapper {
        /* Base Variables */
        --text-color: #374151;
        --heading-color: #111827;
        --link-color: #2563eb;
        --bg-page: #ffffff;
        --section-divider: #f3f4f6;
        --footer-bg: #f8fafc;
        --table-header: #f9fafb;
        
        /* Base Typography */
        font-family: "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
        font-size: 16px;
        line-height: 1.6;
        color: var(--text-color);
        background-color: var(--bg-page);
        
        /* Container Sizing */
        max-width: 1000px;
        margin: 0 auto;
        padding: 0 20px 40px 20px;
    }

    /* Box sizing scoped only to this wrapper */
    .fuji-article-wrapper *, 
    .fuji-article-wrapper *::before, 
    .fuji-article-wrapper *::after {
        box-sizing: border-box;
    }

    /* Article Flow: Tighter vertical spacing */
    .fuji-article-wrapper section {
        padding: 25px 0;
        border-bottom: 1px solid var(--section-divider);
    }

    .fuji-article-wrapper section:last-of-type {
        border-bottom: none;
        padding-bottom: 0;
    }

    /* Strict Header Limitations (Max 20px) */
    .fuji-article-wrapper h2, 
    .fuji-article-wrapper h3, 
    .fuji-article-wrapper h4 {
        font-size: 20px;
        font-weight: 700;
        color: var(--heading-color);
        margin-top: 1.2em;
        margin-bottom: 0.6em;
        line-height: 1.3;
    }

    /* Reduced paragraph spacing */
    .fuji-article-wrapper p {
        margin-top: 0;
        margin-bottom: 1em;
    }

    .fuji-article-wrapper a {
        color: var(--link-color);
        text-decoration: underline;
        text-underline-offset: 3px;
    }

    .fuji-article-wrapper a:hover {
        color: #1d4ed8;
        text-decoration: none;
    }

    .fuji-article-wrapper ul {
        margin-top: 0;
        margin-bottom: 1.2em;
        padding-left: 20px;
    }

    .fuji-article-wrapper li {
        margin-bottom: 0.4em;
    }

    /* Image Optimization: Strictly Centered & Max 600px */
    .fuji-article-wrapper .media-figure {
        margin: 1.5em 0;
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }

    .fuji-article-wrapper .media-figure img {
        max-width: 600px;
        width: 100%;
        height: auto;
        border-radius: 6px;
        display: block;
        box-shadow: 0 4px 10px rgba(0,0,0,0.06);
    }

    .fuji-article-wrapper figcaption {
        font-size: 14px;
        color: #6b7280;
        font-style: italic;
        margin-top: 0.8em;
        text-align: center;
        max-width: 800px;
    }

    /* Video Optimization: Strict 16:9 ratio, Max 800px width, Centered */
    .fuji-article-wrapper .video-max-width {
        max-width: 800px;
        margin: 2em auto;
        width: 100%;
    }

    .fuji-article-wrapper .video-container {
        position: relative;
        padding-bottom: 56.25%; /* 16:9 aspect ratio */
        height: 0;
        overflow: hidden;
        border-radius: 8px;
        box-shadow: 0 4px 15px rgba(0,0,0,0.08);
        background-color: #000;
    }

    .fuji-article-wrapper .video-container iframe {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        border: none;
    }

    /* Table Design */
    .fuji-article-wrapper .table-wrapper {
        overflow-x: auto;
        margin: 1.5em 0;
        border: 1px solid #e5e7eb;
        border-radius: 6px;
    }

    .fuji-article-wrapper table {
        width: 100%;
        border-collapse: collapse;
        min-width: 700px;
    }

    .fuji-article-wrapper th, 
    .fuji-article-wrapper td {
        padding: 12px 16px;
        border-bottom: 1px solid #e5e7eb;
        text-align: left;
        font-size: 15px;
    }

    .fuji-article-wrapper th {
        background-color: var(--table-header);
        font-weight: 600;
    }

    .fuji-article-wrapper tr:last-child td {
        border-bottom: none;
    }

    /* Callout Box */
    .fuji-article-wrapper .research-note {
        background-color: #f0f9ff;
        border-left: 4px solid #3b82f6;
        padding: 16px 20px;
        margin: 1.5em 0;
        font-size: 15px;
        border-radius: 0 4px 4px 0;
    }

    /* FAQ Styling */
    .fuji-article-wrapper .faq-block {
        margin-top: 1em;
    }

    .fuji-article-wrapper .faq-item {
        background-color: #fafafa;
        padding: 18px 20px;
        border-radius: 6px;
        margin-bottom: 1em;
        border: 1px solid #f3f4f6;
    }

    .fuji-article-wrapper .faq-q {
        font-weight: 700;
        display: block;
        margin-bottom: 0.4em;
        color: var(--heading-color);
    }

    /* Integrated Footer Section (Soft Background) */
    .fuji-article-wrapper .footer-combined-section {
        background-color: var(--footer-bg);
        margin: 30px -20px 0 -20px; 
        padding: 40px 40px;
        border-top: 1px solid #e5e7eb;
    }

    .fuji-article-wrapper .footer-content {
        max-width: 1000px;
        margin: 0 auto;
    }

    .fuji-article-wrapper .brand-highlight {
        border-bottom: 1px solid #cbd5e1;
        padding-bottom: 20px;
        margin-bottom: 20px;
    }

    /* Mobile Adjustments */
    @media (max-width: 768px) {
        .fuji-article-wrapper {
            padding: 0 15px 30px 15px;
        }
        .fuji-article-wrapper .footer-combined-section {
            padding: 30px 20px;
            margin: 20px -15px 0 -15px;
        }
        .fuji-article-wrapper section {
            padding: 20px 0;
        }
        .fuji-article-wrapper h2, 
        .fuji-article-wrapper h3, 
        .fuji-article-wrapper h4 {
            margin-top: 1em;
        }
    }
