/* ============================================================
   ESG – TRANG CHI TIẾT "QUẢN TRỊ"
   Dùng chung với esg.css + esg-social-detail.css (đã include trước file này)
   ============================================================ */

/* ── KHỐI SỐ LIỆU 2x2 ───────────────────────────────────── */
.gov-stat-section { padding: 40px 0 8px; }

.gov-stat-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: 90px;
  row-gap: 36px;
  margin: 30px 0 20px;
}
.gov-stat-item {
  padding-bottom: 22px;
  border-bottom: 1px solid #e3e3e3;
}
.gov-stat-item .gov-figure {
  font-size: 25px;
  font-weight: 700;
  color: var(--blue-mid);
  margin-bottom: 6px;
  line-height: 1.25;
}
.gov-stat-item .gov-desc {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.6;
}

.gov-stat-source {
  text-align: right;
  font-size: 13px;
  color: #999;
  line-height: 1.7;
  margin-bottom: 8px;
}

@media (max-width: 700px) {
  .gov-stat-grid { grid-template-columns: 1fr; column-gap: 0; row-gap: 24px; }
}

/* ── DANH SÁCH "LƯU Ý" ──────────────────────────────────── */
.gov-note-title {
  font-size: 14.5px;
  font-weight: 700;
  color: var(--text);
  margin: 22px 0 10px;
}
.gov-note-list {
  padding-left: 20px;
  margin-bottom: 22px;
}
.gov-note-list li {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 10px;
}
.gov-note-list li:last-child { margin-bottom: 0; }

/* ── XÁC NHẬN + NÚT LẬP KHIẾU NẠI ───────────────────────── */
.gov-confirm {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 22px;
  font-size: 14.5px;
  font-weight: 700;
  color: var(--text);
}
.gov-confirm input[type="checkbox"] {
  width: 18px;
  height: 18px;
  accent-color: var(--green);
  cursor: pointer;
}

.btn-report {
  display: inline-block;
  background: var(--blue-mid);
  color: #fff;
  font-size: 14.5px;
  font-weight: 700;
  border: none;
  border-radius: 6px;
  padding: 12px 26px;
  cursor: pointer;
  transition: background .2s, opacity .2s;
}
.btn-report:hover:not(:disabled) { background: var(--blue-dark); }
.btn-report:disabled {
  background: #b9c3ce;
  cursor: not-allowed;
  opacity: .8;
}

.gov-report-disclaimer {
  font-size: 12.5px;
  color: #888;
  font-style: italic;
  margin-top: 14px;
}

.gov-inline-link {
  color: var(--blue-mid);
  text-decoration: underline;
  text-underline-offset: 2px;
  font-weight: 600;
}
