
    /* Scoped CSS for Fuji Blog Post */
    .fuji-blog-container {
        font-family: Verdana, Geneva, sans-serif;
        font-size: 16px;
        line-height: 1.5;
        color: #333;
        width: 100%;
        margin: 0 auto;
        padding: 0;
    }

    /* Headings */
    .fuji-blog-container h2 {
        font-size: 20px;
        font-weight: 700;
        color: #000;
        margin-top: 30px;
        margin-bottom: 15px;
        border-left: 5px solid #e60012; /* Fuji Red */
        padding-left: 10px;
        line-height: 1.3;
    }

    .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: 15px;
        text-align: justify;
    }

    .fuji-blog-container a {
        color: #e60012;
        text-decoration: underline;
        font-weight: bold;
    }

    /* --- New Layout: Side-by-Side Container for PC --- */
    .media-row {
        display: flex;
        justify-content: center;
        align-items: flex-start;
        gap: 20px;
        margin: 30px 0;
    }

    /* Columns */
    .media-col-video, .media-col-image {
        flex: 1;
        max-width: 320px; /* Limit width for balance */
    }

    /* --- FIX: Unified Height & Aspect Ratio --- */
    /* Apply the same style to both video and image wrappers to ensure equal height */
    .shorts-wrapper, .image-wrapper-fixed {
        position: relative;
        width: 100%;
        aspect-ratio: 9 / 16; /* FORCE both to 9:16 vertical ratio */
        background: #000;
        border-radius: 8px;
        overflow: hidden;
        box-shadow: 0 4px 10px rgba(0,0,0,0.2);
    }

    /* Video iframe */
    .shorts-wrapper iframe {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        border: 0;
    }

    /* Image inside the fixed wrapper */
    .image-wrapper-fixed img {
        width: 100%;
        height: 100%;
        object-fit: cover; /* Crucial: crop image to fill the 9:16 space */
        display: block;
    }

    /* Caption style */
    .media-caption {
        text-align: center;
        font-size: 13px;
        color: #666;
        margin-top: 8px;
    }

    /* Technical 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: 10px;
        text-align: left;
    }

    .tech-table th {
        background-color: #f5f5f5;
        font-weight: bold;
        color: #000;
    }
    
    .table-container {
        overflow-x: auto;
    }

    /* FAQ Section */
    .faq-box {
        background-color: #fafafa;
        border: 1px solid #eee;
        padding: 15px;
        margin-bottom: 15px;
        border-radius: 4px;
    }
    .faq-question {
        font-weight: bold;
        display: block;
        margin-bottom: 5px;
        color: #000;
    }

    /* --- Mobile Responsive --- */
    @media screen and (max-width: 768px) {
        .fuji-blog-container {
            font-size: 15px;
            line-height: 1.4;
        }
        .media-row {
            flex-direction: column;
            align-items: center;
        }
        .media-col-video, .media-col-image {
            max-width: 100%;
            width: 100%;
        }
    }
    
    .fuji-blog-container > *:first-child {
        margin-top: 0;
    }
