
    /* SCOPED CSS: Balanced Spacing & Optimized Image Sizes */
    #fuji-super-f2-content {
        font-family: 'Verdana', 'Segoe UI', Helvetica, sans-serif;
        line-height: 1.6;
        color: #333;
        font-size: 16px;
        background-color: #fff;
    }

    /* Container */
    #fuji-super-f2-content .article-container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 10px 20px 40px 20px;
    }

    /* Typography */
    #fuji-super-f2-content h2 {
        font-size: 22px;
        color: #b22222; /* FUJI Red */
        border-bottom: 2px solid #b22222;
        padding-bottom: 8px;
        margin-top: 40px;
        margin-bottom: 20px;
        font-weight: 700;
        text-transform: uppercase;
    }

    #fuji-super-f2-content h2:first-of-type {
        margin-top: 0 !important;
    }

    #fuji-super-f2-content h3 {
        font-size: 18px;
        color: #444;
        margin-top: 30px;
        margin-bottom: 15px;
        font-weight: 600;
    }

    #fuji-super-f2-content p {
        margin-bottom: 16px;
        text-align: justify;
        max-width: 960px;
    }

    #fuji-super-f2-content ul {
        margin-bottom: 20px;
        padding-left: 20px;
        max-width: 960px;
    }

    #fuji-super-f2-content li {
        margin-bottom: 10px;
    }

    #fuji-super-f2-content a {
        color: #b22222;
        text-decoration: none;
        font-weight: 600;
        border-bottom: 1px dotted #b22222;
        transition: all 0.3s ease;
    }

    #fuji-super-f2-content a:hover {
        background-color: #fff0f0;
    }

    /* --- Image Styling Strategy --- */
    #fuji-super-f2-content .media-wrapper {
        text-align: center;
        margin: 35px 0;
        width: 100%;
    }

    /* 1. Default (Small/Standard) - For the Hero/Spark Image */
    #fuji-super-f2-content .media-wrapper img {
        max-width: 480px; 
        width: 100%;      
        height: auto;
        border-radius: 4px;
        box-shadow: 0 4px 12px rgba(0,0,0,0.08);
        border: 1px solid #f0f0f0;
    }

    /* 2. Medium - For Technical Spec Charts (Needs to be readable) */
    #fuji-super-f2-content .media-wrapper.medium img {
        max-width: 700px; 
    }

    /* 3. Wide - For Factory Panorama */
    #fuji-super-f2-content .media-wrapper.wide img {
        max-width: 1000px; 
    }

    /* Data Table */
    #fuji-super-f2-content .spec-table {
        width: 100%;
        border-collapse: collapse;
        margin: 25px 0;
        font-size: 15px;
        border: 1px solid #ddd;
        max-width: 960px;
        box-shadow: 0 2px 5px rgba(0,0,0,0.05);
    }

    #fuji-super-f2-content .spec-table th, 
    #fuji-super-f2-content .spec-table td {
        padding: 12px 15px;
        border: 1px solid #ddd;
        text-align: left;
    }

    #fuji-super-f2-content .spec-table th {
        background-color: #f8f9fa;
        color: #b22222;
        font-weight: 700;
        width: 30%;
    }

    /* Highlight Box */
    #fuji-super-f2-content .highlight-box {
        background-color: #f9f9f9;
        border-left: 5px solid #555;
        padding: 20px;
        margin: 30px 0;
        max-width: 960px;
        font-style: italic;
        color: #555;
    }

    /* FAQ Section */
    #fuji-super-f2-content .faq-item {
        margin-bottom: 15px;
        border: 1px solid #eee;
        padding: 15px;
        border-radius: 6px;
        max-width: 960px;
        background-color: #fff;
    }

    #fuji-super-f2-content .faq-question {
        font-weight: bold;
        color: #b22222;
        display: block;
        margin-bottom: 8px;
        font-size: 16px;
    }
    
    #fuji-super-f2-content .faq-item p {
        margin-bottom: 0;
    }

    /* Mobile Optimization */
    @media (max-width: 768px) {
        #fuji-super-f2-content .article-container { padding: 15px; }
        
        /* Make all images full width on mobile */
        #fuji-super-f2-content .media-wrapper img,
        #fuji-super-f2-content .media-wrapper.medium img,
        #fuji-super-f2-content .media-wrapper.wide img { max-width: 100%; }
        
        #fuji-super-f2-content h2 { font-size: 20px; margin-top: 30px; }
        
        #fuji-super-f2-content .spec-table { display: block; overflow-x: auto; }
        #fuji-super-f2-content .spec-table th, 
        #fuji-super-f2-content .spec-table td { padding: 10px; min-width: 120px; }
    }
