
  /* --- Global & Typography --- */
  .fuji-blog-post {
    font-family: 'Verdana', 'Segoe UI', Helvetica, sans-serif;
    font-size: 16px; /* Base text size strictly >= 16px */
    line-height: 1.8;
    color: #333333;
    max-width: 1000px;
    margin: 0 auto;
    padding: 20px;
    background-color: #ffffff;
  }

  /* Ensure no space at the very top */
  .fuji-blog-post > *:first-child {
    margin-top: 0 !important;
  }

  .fuji-blog-post h2 {
    font-size: 24px;
    font-weight: 800;
    color: #111111;
    margin: 45px 0 20px 0;
    border-bottom: 3px solid #b71c1c;
    padding-bottom: 10px;
  }

  .fuji-blog-post h3 {
    font-size: 20px;
    font-weight: 700;
    color: #b71c1c;
    margin: 30px 0 15px 0;
  }

  .fuji-blog-post p {
    margin-bottom: 20px;
    text-align: left;
  }

  .fuji-blog-post a {
    color: #b71c1c;
    text-decoration: none;
    font-weight: 700;
    border-bottom: 1px dotted #b71c1c;
    transition: all 0.3s ease;
  }

  .fuji-blog-post a:hover {
    color: #000000;
    border-bottom: 1px solid #000000;
  }

  /* --- Lists & Highlight Boxes --- */
  .fuji-blog-post ul, .fuji-blog-post ol {
    margin-bottom: 25px;
    padding-left: 25px;
  }

  .fuji-blog-post li {
    margin-bottom: 12px;
    font-size: 16px;
  }

  .highlight-box {
    background-color: #fff3f3;
    border-left: 5px solid #b71c1c;
    padding: 20px;
    margin: 30px 0;
    border-radius: 0 6px 6px 0;
  }
  .highlight-box p {
    margin: 0;
    color: #444;
  }

  /* --- Media (Images & Video) --- */
  .media-wrapper {
    margin: 35px 0;
    text-align: center;
  }
  .media-wrapper img {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
  }
  .image-caption {
    font-size: 14px;
    color: #777;
    margin-top: 10px;
    font-style: italic;
  }

  /* Responsive 16:9 Video Container */
  .video-container {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    max-width: 100%;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    margin: 35px 0;
    background-color: #000;
  }
  .video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
  }

  /* --- FAQ Section --- */
  .faq-section {
    background-color: #fbfbfb;
    padding: 30px;
    border-radius: 8px;
    border: 1px solid #eeeeee;
    margin: 40px 0;
  }
  .faq-block {
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid #e0e0e0;
  }
  .faq-block:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
  }
  .faq-q {
    font-weight: 800;
    color: #111;
    font-size: 17px;
    margin-bottom: 8px;
    display: block;
  }
  .faq-a {
    color: #444;
    margin: 0;
  }

  /* --- E-E-A-T Author Bio Section (Moved Above CTA) --- */
  .author-bio {
    display: flex;
    align-items: center;
    background-color: #f8f9fa;
    border: 1px solid #e9ecef;
    border-radius: 8px;
    padding: 20px;
    margin: 50px 0 0 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.03);
  }
  .author-avatar {
    width: 80px;
    height: 80px;
    background-color: #b71c1c;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 32px;
    font-weight: bold;
    margin-right: 20px;
    flex-shrink: 0;
  }
  .author-text h3 {
    margin: 0 0 5px 0;
    font-size: 18px;
    color: #111;
    border: none;
  }
  .author-text p {
    margin: 0;
    font-size: 15px;
    color: #555;
    line-height: 1.5;
  }

  /* --- Call To Action (CTA) --- */
  .cta-section {
    background-color: #1a1a1a;
    padding: 45px 30px;
    border-radius: 8px;
    text-align: center;
    margin-top: 40px;
  }
  .cta-section h3 {
    color: #ffffff;
    margin-top: 0;
    border: none;
    font-size: 24px;
  }
  .cta-section p {
    color: #cccccc;
    font-size: 17px;
    margin-bottom: 30px;
  }
  .cta-btn {
    display: inline-block;
    background-color: #b71c1c;
    color: #ffffff !important;
    padding: 15px 35px;
    font-size: 18px;
    font-weight: 800;
    text-decoration: none !important;
    border-radius: 4px;
    transition: background-color 0.3s;
    border: none;
  }
  .cta-btn:hover {
    background-color: #d32f2f;
  }

  /* --- Mobile Adjustments --- */
  @media (max-width: 768px) {
    .fuji-blog-post { padding: 15px; }
    .author-bio { flex-direction: column; text-align: center; }
    .author-avatar { margin: 0 0 15px 0; }
    .fuji-blog-post h2 { font-size: 22px; margin-top: 30px; }
    .fuji-blog-post h3 { font-size: 18px; }
    .cta-section { padding: 30px 15px; }
    .cta-btn { width: 100%; box-sizing: border-box; }
  }
