     /* SCOPED CSS: Compact layout for F-1 Features */     #fuji-f1-features {         font-family: 'Verdana', 'Segoe UI', Helvetica, sans-serif;         line-height: 1.4; /* Tight line height for compactness */         color: #333;         font-size: 15px; /* Balanced size for readability and space */         background-color: #fff;         max-width: 100%;     }      /* Headings */     #fuji-f1-features h3 {         font-size: 16px;         color: #000;         border-bottom: 1px solid #eee;         padding-bottom: 5px;         margin-top: 0;         margin-bottom: 10px;         font-weight: 700;         text-transform: uppercase;     }      /* Main Feature List */     #fuji-f1-features ul {         margin: 0 0 15px 0;         padding-left: 18px;         list-style-type: disc;     }      #fuji-f1-features li {         margin-bottom: 6px;     }      #fuji-f1-features strong {         color: #b22222; /* Highlight Key Benefits */         font-weight: 700;     }      /* Technical Breakthrough Box - Flex Layout to Save Height */     #fuji-f1-features .tech-box {         background-color: #f8f9fa;         border-left: 4px solid #b22222;         padding: 10px;         margin-bottom: 15px;     }      #fuji-f1-features .tech-title {         font-weight: 700;         display: block;         margin-bottom: 8px;         font-size: 14px;         color: #555;     }      #fuji-f1-features .stat-row {         display: flex;         justify-content: space-between;         gap: 10px;         flex-wrap: wrap;     }      #fuji-f1-features .stat-item {         font-size: 13px;         font-weight: 600;         color: #333;         background: #fff;         padding: 5px 8px;         border: 1px solid #ddd;         border-radius: 4px;         flex: 1; /* Distribute space evenly */         text-align: center;         white-space: nowrap;     }      /* Material Guide */     #fuji-f1-features .model-guide {         font-size: 14px;         border-top: 1px dashed #ccc;         padding-top: 10px;     }      #fuji-f1-features .model-item {         margin-bottom: 4px;         display: block;     }      /* Mobile Optimization */     @media (max-width: 768px) {         #fuji-f1-features { font-size: 16px; }          #fuji-f1-features .stat-row { flex-direction: column; gap: 5px; }         #fuji-f1-features .stat-item { text-align: left; }     } 