
      .jp-wrap {
         font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Noto Sans KR', sans-serif;
         max-width: 1100px;
         margin: 0 auto;
         background: #fff;
         padding: 24px;
         display: grid;
         grid-template-columns: minmax(300px, 420px) 1fr;
         gap: 24px;
      }
      .jp-wrap * { box-sizing: border-box; }

      .jp-left { display: flex; flex-direction: column; }
      .jp-image-box {
         width: 100%;
         background: #f7f8fa;
         border: 1px solid #eef0f3;
         border-radius: 12px;
         display: flex;
         align-items: center;
         justify-content: center;
         padding: 12px;
      }
      .jp-image-box img { width: 100%; height: auto; display: block; }

      .jp-right { min-width: 0; }
      .jp-model-code { grid-column: 1 / -1; font-size: 20px; font-weight: 700; color: #134393; margin: 0 0 12px; }
      .jp-stats-row { display: grid; grid-template-columns: repeat(auto-fit, minmax(110px, 1fr)); gap: 10px; margin-bottom: 22px; }
      .jp-stat-card { background: #f4f7fc; border: 1px solid #e8edf7; border-radius: 10px; padding: 12px 14px; }
      .jp-stat-icon { color: #134393; margin-bottom: 6px; }
      .jp-stat-icon svg { width: 20px; height: 20px; }
      .jp-stat-value { font-size: 20px; font-weight: 800; color: #0a1128; line-height: 1; }
      .jp-stat-label { font-size: 11px; color: #6b7280; margin-top: 6px; }

      .jp-section-title { font-size: 12px; font-weight: 700; color: #134393; margin: 0 0 12px; }
      .jp-feature-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px 12px; }
      .jp-feature-item { display: flex; flex-direction: column; align-items: center; text-align: center; gap: 8px; }
      .jp-feature-icon {
         width: 60px; height: 60px; border-radius: 14px;
         background: #f4f7fc; border: 1px solid #e8edf7;
         display: flex; align-items: center; justify-content: center;
         color: #134393;
      }
      .jp-feature-icon svg { width: 30px; height: 30px; }
      .jp-feature-name { font-size: 12px; color: #6b7280; line-height: 1.3; white-space: pre-line; }

      @media (max-width: 720px) {
         .jp-wrap { grid-template-columns: 1fr; }
         .jp-image-box { max-width: 360px; margin: 0 auto; }
      }
      @media (max-width: 480px) {
         .jp-feature-grid { grid-template-columns: repeat(3, 1fr); }
      }
      