/* 위험도 안내(/main/risk-guide) 전용 — 접두 rg- 로 격리.
   등급 4원색은 메인 홈(home.css .mh-home --mh-*)과 동일 값을 쓴다(홈 CSS 는 서브페이지에 로드되지 않음). */

.rg-section {
  margin-bottom: 45px;
}
.rg-section .rg-stit {
  font-size: 18px;
  font-weight: 600;
  color: #333;
  margin-bottom: 12px;
}
.rg-desc {
  line-height: 160%;
  color: #555;
  margin-bottom: 15px;
}
.rg-note {
  margin-top: 10px;
  font-size: 14px;
  color: #777;
}

/* 등급 뱃지 — main 홈 4원색(매우높음/높음/보통/낮음) */
.rg-badge {
  display: inline-block;
  min-width: 76px;
  padding: 5px 14px;
  border-radius: 20px;
  color: #fff;
  font-weight: 600;
  font-size: 14px;
  text-align: center;
}
.rg-badge.is-high { background: #ee3636; }
.rg-badge.is-caution { background: #eea300; }
.rg-badge.is-low { background: #0ea833; }
.rg-badge.is-safe { background: #187dea; }

/* 등급/기준 표 — bbs_default 위에 본문 정렬만 보정 */
.rg-table .rg-table-col-grade {
  width: 15%;
}
.rg-table .rg-table-col-criteria {
  width: 30%;
}
.rg-table td {
  text-align: left;
  line-height: 150%;
}
.rg-table th.rg-badge-cell {
  background: #fff;
}

/* 업종 칩 */
.rg-industries {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 5px;
}
.rg-industries li {
  padding: 6px 16px;
  border: 1px solid #ddd;
  border-radius: 20px;
  background: #f8f8f8;
  color: #555;
  font-size: 14px;
}

/* 이용 안내 목록 */
.rg-list li {
  position: relative;
  padding-left: 13px;
  line-height: 170%;
  color: #555;
}
.rg-list li::before {
  content: "";
  position: absolute;
  top: 12px;
  left: 0;
  width: 5px;
  height: 1px;
  background: #888;
}

@media screen and (max-width: 640px) {
  .rg-table .rg-table-col-grade {
    width: 34%;
  }

  .rg-table .rg-table-col-criteria {
    width: 38%;
  }

  .rg-table th,
  .rg-table td {
    word-break: keep-all;
  }

  .rg-badge {
    min-width: 64px;
    padding-right: 10px;
    padding-left: 10px;
  }
}
