
    /* Scoped CSS for Fuji Blog Post & E-E-A-T Optimization */
    .fuji-blog-container {
        font-family: Verdana, Geneva, sans-serif;
        font-size: 16px;
        line-height: 1.6;
        color: #333;
        width: 100%;
        margin: 0 auto;
        padding: 0;
    }

    /* Headings */
    .fuji-blog-container h2 {
        font-size: 22px;
        font-weight: 700;
        color: #000;
        margin-top: 40px;
        margin-bottom: 15px;
        border-left: 5px solid #e60012; /* Fuji Red */
        padding-left: 12px;
        line-height: 1.3;
        letter-spacing: -0.5px;
    }

    .fuji-blog-container h3 {
        font-size: 18px;
        font-weight: 600;
        color: #333;
        margin-top: 25px;
        margin-bottom: 10px;
    }

    /* Text & Links */
    .fuji-blog-container p {
        margin-bottom: 16px;
        text-align: justify;
    }

    .fuji-blog-container a {
        color: #e60012;
        text-decoration: underline;
        font-weight: bold;
        transition: color 0.2s ease;
    }
    
    .fuji-blog-container a:hover {
        color: #b3000e;
    }
    
    .fuji-blog-container ul {
        margin-bottom: 20px;
        padding-left: 20px;
    }
    
    .fuji-blog-container li {
        margin-bottom: 10px;
    }

    /* --- Media Layouts --- */
    .media-row {
        display: flex;
        justify-content: center;
        align-items: flex-start;
        gap: 20px;
        margin: 30px 0;
    }

    .media-col-video, .media-col-image {
        flex: 1;
        max-width: 320px;
    }

    .shorts-wrapper, .image-wrapper-fixed {
        position: relative;
        width: 100%;
        aspect-ratio: 9 / 16;
        background: #000;
        border-radius: 8px;
        overflow: hidden;
        box-shadow: 0 4px 10px rgba(0,0,0,0.15);
    }

    .shorts-wrapper iframe, .image-wrapper-fixed img {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        border: 0;
        object-fit: cover;
    }

    .media-caption {
        text-align: center;
        font-size: 13px;
        color: #666;
        margin-top: 8px;
        font-style: italic;
    }

    /* Why Choose Fuji Section */
    .fuji-advantage-section {
        display: flex;
        align-items: center;
        gap: 25px;
        background-color: #fcfcfc;
        border: 1px solid #eaeaea;
        padding: 25px;
        border-radius: 8px;
        margin: 35px 0;
    }
    
    .fuji-advantage-img {
        flex: 0 0 40%;
        border-radius: 6px;
        overflow: hidden;
        box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    }
    
    .fuji-advantage-img img {
        width: 100%;
        height: auto;
        display: block;
    }
    
    .fuji-advantage-text {
        flex: 1;
    }

    /* Buttons */
    .btn-fuji-primary {
        display: inline-block;
        background-color: #e60012;
        color: #fff !important;
        padding: 10px 20px;
        text-decoration: none !important;
        border-radius: 4px;
        font-weight: bold;
        margin-top: 10px;
        text-transform: uppercase;
        font-size: 14px;
    }
    
    .btn-fuji-secondary {
        display: inline-block;
        background-color: #333;
        color: #fff !important;
        padding: 10px 20px;
        text-decoration: none !important;
        border-radius: 4px;
        font-weight: bold;
        margin-top: 10px;
        margin-left: 10px;
        font-size: 14px;
    }

    /* Tech Table */
    .tech-table {
        width: 100%;
        border-collapse: collapse;
        margin: 20px 0;
        font-size: 15px;
    }

    .tech-table th, .tech-table td {
        border: 1px solid #ddd;
        padding: 12px;
        text-align: left;
    }

    .tech-table th {
        background-color: #f5f5f5;
        font-weight: bold;
        color: #000;
    }
    
    .table-container {
        overflow-x: auto;
    }

    /* Highlight & FAQ Box */
    .highlight-box {
        background-color: #fff9f9;
        border: 1px solid #ffcccc;
        border-left: 4px solid #e60012;
        padding: 15px 20px;
        margin: 25px 0;
        border-radius: 4px;
    }

    .faq-box {
        background-color: #fafafa;
        border: 1px solid #eee;
        padding: 20px;
        margin-bottom: 15px;
        border-radius: 6px;
    }
    .faq-question {
        font-weight: bold;
        font-size: 17px;
        display: block;
        margin-bottom: 8px;
        color: #000;
    }

    /* --- Mobile Responsive --- */
    @media screen and (max-width: 768px) {
        .fuji-blog-container {
            font-size: 15px;
            line-height: 1.5;
        }
        .media-row, .fuji-advantage-section {
            flex-direction: column;
            align-items: center;
        }
        .media-col-video, .media-col-image, .fuji-advantage-img {
            max-width: 100%;
            width: 100%;
        }
        .btn-fuji-secondary {
            margin-left: 0;
            display: block;
            text-align: center;
        }
        .btn-fuji-primary {
            display: block;
            text-align: center;
        }
    }
    
    .fuji-blog-container > *:first-child {
        margin-top: 0;
    }
