/* 1. 공통 및 레이아웃 설정 */
  .analysis-container {
    max-width: 800px;
    margin: 0 auto;
    font-family: 'Noto Sans KR', sans-serif;
    color: #333;
    background-color: #fff;
  }

  /* 2. 헤더 섹션 */
  .header-summary {
    background: #fdfaf5;
    padding: 30px;
    border-radius: 15px;
    border: 1px solid #eee;
    margin-bottom: 25px;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
  }

  /* 제목 및 서브 텍스트 영역 */
  .header-content h2 {
    margin: 0;
    font-size: 24px;
    color: #5c4033;
    font-weight: 700;
  }

  .header-content p {
    margin: 8px 0 0;
    color: #888;
    font-size: 14px;
  }

  /* 우측 뱃지 스타일 */
  .header-badge-wrapper {
    text-align: right;
  }

  .badge-report {
    display: inline-block;
    padding: 4px 12px;
    background: #d4a373;
    color: #fff;
    border-radius: 20px;
    font-size: 12px;
    font-weight: bold;
  }

  /* 1. 강조 박스 (San's View) 공통 스타일 */
.accent-box {
  padding: 20px;
  border-left: 5px solid #d4a373;
  background: #fafafa;
  margin-bottom: 30px;
}

/* 2. 강조 박스 내 제목 스타일 */
.accent-box-title {
  font-size: 16px;
  color: #d4a373;
  margin: 0 0 10px 0;
  font-weight: 700;
}

/* 3. 강조 박스 내 본문 스타일 */
.accent-box-desc {
  font-size: 14px;
  line-height: 1.8;
  margin: 0;
  color: #333;
}

.report-sector {
  margin-bottom: 40px;
  margin-top: 60px;
  padding: 10px;
}

.sector-title {
  font-size: 18px;
  border-bottom: 2px solid #eee;
  padding-bottom: 10px;
  margin-bottom: 20px;
  color: #333;
}
.sector-desc {
  font-size: 13px; color: #888; margin-bottom: 20px;
}

/* 2. 테이블 공통 스타일 */
.table-scroll {
  overflow-x: auto;
}

.data-table {
  width: 100%;
  border-collapse: collapse;
  text-align: center;
  font-size: 14px;
}

.data-table thead tr {
  background: #f8f9fa;
}

.data-table th {
  padding: 15px;
  border-bottom: 2px solid #ddd;
  font-weight: 700;
}

.data-table td {
  padding: 15px;
  border-bottom: 1px solid #eee;
}

.data-table .label-cell {
  font-weight: bold;
  background: #fafafa;
}

/* 3. 코멘터리 및 요약 박스 (재사용 가능) */
.commentary-card {
  margin-top: 25px;
  padding: 20px;
  background: #f8f9fa;
  border-radius: 15px;
  border: 1px solid #eee;
  line-height: 1.7;
}

.commentary-card h4 {
  margin: 0 0 12px 0;
  font-size: 15px;
  color: #333;
  font-weight: 700;
  align-items: center;
}
.commentary-title {
  margin: 0 0 12px 0; font-size: 15px; color: #333; font-weight: 700; display: flex; align-items: center;
}
.commentary-title-point {
  color: #d4a373; font-weight: bold;
}
.commentary-text {
  margin: 0;
  font-size: 13.5px;
  color: #555;
  word-break: keep-all;
}

/* 4. 산코노미 한 줄 결론 */
.conclusion-line {
  margin-top: 15px;
  padding-top: 15px;
  border-top: 1px dashed #ddd;
  text-align: center;
}

.conclusion-text {
  margin: 0;
  font-size: 13px;
  color: #d4a373;
  font-weight: 600;
}

/* 1. 그리드 레이아웃 (2단 구성) */
.grid-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

/* 2. 강조 아이템 박스 (특징/변수 설명용) */
.feature-box {
  padding: 20px;
  border-radius: 12px;
}

/* 3. 아이템 내부 텍스트 스타일 */
.feature-box h3 {
  font-size: 15px;
  margin-top: 0;
  margin-bottom: 10px;
}

.feature-box p {
  font-size: 13px;
  color: #666;
  line-height: 1.6;
  margin: 0;
}

/* 4. 컬러 테마 (재사용을 위해 별도 분리) */
.bg-blue { background: #f1f8ff; }
.bg-orange { background: #fff8f1; }
.text-blue { color: #0056b3; }
.text-orange { color: #a0522d; }

.guide-grid {
  /* display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px; */
}

/* 2. 추천 타겟 카드 스타일 */
.target-card {
  padding: 25px;
  background: linear-gradient(145deg, #ffffff, #f9f9f9);
  border: 1px solid #eee;
  box-shadow: 5px 5px 15px rgba(0,0,0,0.02);
}

/* 3. 상단 뱃지 스타일 */
.target-badge {
  color: #fff;
  width: fit-content;
  padding: 3px 10px;
  border-radius: 5px;
  font-size: 11px;
  font-weight: bold;
  margin-bottom: 15px;
}

.bg-orange-badge { background: #e67e22; }
.bg-blue-badge { background: #007bff; }

/* 4. 카드 내 텍스트 스타일 */
.target-card h4 {
  margin: 0 0 10px 0;
  font-size: 16px;
  color: #333;
}

.target-list {
  margin: 0;
  padding-left: 18px;
  font-size: 13px;
  color: #666;
  line-height: 1.8;
}

/* 모바일 대응 (선택 사항) */
@media (max-width: 600px) {
  .grid-container {
    grid-template-columns: 1fr;
  }
}






