.government-page {
  --government-border: #26384d;
  --government-panel: #0d1725;
  --government-panel-strong: #111f31;
  --government-muted: #8fa3ba;
  --government-accent: #22d3ee;
  width: 100%;
  height: 100%;
  min-width: 0;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  color: #dce8f5;
  background:
    radial-gradient(circle at 86% 0, rgba(34, 211, 238, .08), transparent 28%),
    linear-gradient(180deg, #08111d, #070e18);
}

.government-page [hidden],
.government-modal[aria-hidden="true"] { display: none !important; }

.government-hero {
  min-height: 98px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 20px 24px 18px;
  border-bottom: 1px solid var(--government-border);
  background: linear-gradient(110deg, rgba(14, 30, 48, .96), rgba(8, 17, 29, .9));
}

.government-hero h2,
.government-section-heading h3,
.government-card h4,
.government-modal-card h3 { margin: 0; color: #f8fbff; }

.government-hero h2 { margin-top: 4px; font-size: 24px; letter-spacing: .02em; }
.government-hero p,
.government-section-heading p,
.government-card header p,
.government-bridge-card p,
.government-modal-card header p {
  margin: 6px 0 0;
  color: var(--government-muted);
  line-height: 1.55;
}

.government-hero p { font-size: 13px; }
.government-eyebrow { color: #67e8f9; font-size: 10px; font-weight: 800; letter-spacing: .2em; }
.government-hero-actions { display: flex; align-items: center; justify-content: flex-end; gap: 12px; }
.government-sync-state { color: #91a6bd; font-size: 12px; white-space: nowrap; }
.government-sync-state[data-state="loading"]::before,
.government-sync-state[data-state="success"]::before,
.government-sync-state[data-state="error"]::before {
  content: "";
  display: inline-block;
  width: 7px;
  height: 7px;
  margin-right: 7px;
  border-radius: 50%;
  background: #64748b;
}
.government-sync-state[data-state="loading"]::before { background: #38bdf8; box-shadow: 0 0 0 4px rgba(56, 189, 248, .1); }
.government-sync-state[data-state="success"]::before { background: #34d399; }
.government-sync-state[data-state="error"]::before { background: #fb7185; }

.government-subnav {
  display: flex;
  gap: 4px;
  padding: 9px 18px;
  overflow-x: auto;
  scrollbar-width: thin;
  border-bottom: 1px solid var(--government-border);
  background: rgba(9, 19, 31, .98);
}

.government-subnav button {
  flex: 0 0 auto;
  min-height: 34px;
  padding: 7px 12px;
  border: 1px solid transparent;
  border-radius: 7px;
  color: #99abc0;
  background: transparent;
  cursor: pointer;
  font-size: 12px;
  transition: .16s ease;
}
.government-subnav button:hover { color: #e7f5ff; background: rgba(37, 61, 84, .48); }
.government-subnav button.active {
  color: #ecfeff;
  border-color: rgba(34, 211, 238, .35);
  background: rgba(8, 145, 178, .18);
  box-shadow: inset 0 -2px 0 #22d3ee;
}
.government-subnav button span {
  min-width: 18px;
  margin-left: 4px;
  padding: 1px 5px;
  border-radius: 10px;
  color: #ffe4e6;
  background: #be123c;
  font-size: 10px;
}

.government-workspace { flex: 1; min-height: 0; overflow: auto; padding: 22px 24px 34px; }
.government-view { display: none; width: 100%; max-width: 1540px; margin: 0 auto; }
.government-view.active { display: block; }

.government-section-heading {
  min-height: 50px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 16px;
}
.government-section-heading h3 { font-size: 19px; }
.government-section-heading p { max-width: 880px; font-size: 12px; }
.government-section-heading > small { color: #70849a; font-size: 11px; }
.government-heading-actions { display: flex; align-items: center; justify-content: flex-end; flex-wrap: wrap; gap: 8px; }
.government-readonly-notice,
.government-governance-note {
  margin: 0 0 14px;
  padding: 10px 12px;
  border: 1px solid rgba(245, 158, 11, .32);
  border-radius: 8px;
  color: #fde68a;
  background: rgba(120, 53, 15, .18);
  font-size: 11px;
  line-height: 1.55;
}
.government-release-tag {
  flex: 0 0 auto;
  padding: 5px 9px;
  border: 1px solid #3c4e63;
  border-radius: 999px;
  color: #aebed0;
  background: #111c2a;
  font-size: 10px;
}
.government-release-tag.operational { border-color: rgba(52, 211, 153, .34); color: #a7f3d0; background: rgba(6, 78, 59, .22); }

.government-button {
  min-height: 34px;
  padding: 7px 13px;
  border: 1px solid #3a5068;
  border-radius: 7px;
  color: #dbeafe;
  background: #16253a;
  cursor: pointer;
  font: inherit;
  font-size: 12px;
  white-space: nowrap;
}
.government-button:hover:not(:disabled) { border-color: #5a7897; background: #1b3048; }
.government-button.primary { border-color: #0891b2; color: #ecfeff; background: #0e7490; }
.government-button.primary:hover:not(:disabled) { background: #0891b2; }
.government-button.secondary { background: #17263a; }
.government-button.ghost { color: #9fb3c8; background: transparent; }
.government-button.danger { border-color: #9f1239; color: #ffe4e6; background: rgba(159, 18, 57, .2); }
.government-button.small { min-height: 29px; padding: 5px 8px; font-size: 11px; }
.government-button:disabled { opacity: .48; cursor: not-allowed; }

.government-kpi-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(150px, 1fr));
  gap: 11px;
  margin-bottom: 16px;
}
.government-kpi {
  min-width: 0;
  min-height: 116px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: space-between;
  padding: 15px;
  border: 1px solid var(--government-border);
  border-radius: 10px;
  color: inherit;
  text-align: left;
  background: linear-gradient(145deg, #111e2e, #0b1522);
}
button.government-kpi { cursor: pointer; }
button.government-kpi:hover { border-color: #3c6680; transform: translateY(-1px); }
.government-kpi span { color: #93a8bf; font-size: 11px; }
.government-kpi strong { color: #f8fbff; font-size: 28px; line-height: 1; font-variant-numeric: tabular-nums; }
.government-kpi small { max-width: 100%; overflow: hidden; color: #647b92; font-size: 10px; text-overflow: ellipsis; white-space: nowrap; }
.government-kpi.alert { border-color: rgba(244, 63, 94, .32); background: linear-gradient(145deg, rgba(76, 20, 38, .55), #0b1522); }
.government-kpi.alert strong { color: #fda4af; }

.government-overview-grid,
.government-stat-grid,
.government-verification-grid { display: grid; gap: 14px; }
.government-overview-grid { grid-template-columns: 1.1fr .9fr; }
.government-stat-grid { grid-template-columns: 1.6fr 1fr 1fr; }
.government-verification-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }

.government-card,
.government-table-card,
.government-bridge-card {
  min-width: 0;
  border: 1px solid var(--government-border);
  border-radius: 10px;
  background: rgba(13, 23, 37, .94);
  box-shadow: 0 12px 28px rgba(0, 0, 0, .12);
}
.government-card { padding: 16px; }
.government-card > header { display: flex; align-items: flex-start; justify-content: space-between; gap: 12px; margin-bottom: 14px; }
.government-card h4 { font-size: 14px; }
.government-card header p { font-size: 10px; }
.government-card header button { border: 0; color: #67e8f9; background: transparent; cursor: pointer; font-size: 11px; }

.government-status-summary { display: grid; grid-template-columns: repeat(4, 1fr); gap: 8px; }
.government-status-cell { padding: 12px 10px; border: 1px solid #26384c; border-radius: 8px; background: #0a1420; }
.government-status-cell span { display: block; color: #8398ae; font-size: 10px; }
.government-status-cell strong { display: block; margin-top: 7px; color: #edf7ff; font-size: 20px; }
.government-status-cell[data-tone="success"] strong { color: #6ee7b7; }
.government-status-cell[data-tone="warning"] strong { color: #fde68a; }
.government-status-cell[data-tone="danger"] strong { color: #fda4af; }

.government-alert-preview { display: grid; gap: 8px; }
.government-alert-preview-item { display: grid; grid-template-columns: 52px minmax(0, 1fr) auto; align-items: center; gap: 9px; padding: 9px 0; border-bottom: 1px solid #1f3043; }
.government-alert-preview-item:last-child { border-bottom: 0; }
.government-alert-preview-copy { min-width: 0; }
.government-alert-preview-copy strong,
.government-alert-preview-copy span { display: block; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.government-alert-preview-copy strong { color: #e5eef7; font-size: 12px; }
.government-alert-preview-copy span,
.government-alert-preview-item time { margin-top: 3px; color: #71869c; font-size: 10px; }

.government-quick-actions { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 12px; margin-top: 14px; }
.government-quick-actions button {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 5px;
  padding: 14px;
  border: 1px solid #263b50;
  border-radius: 9px;
  color: #e4f3ff;
  background: #101c2b;
  cursor: pointer;
}
.government-quick-actions button:hover { border-color: #2b7891; }
.government-quick-actions small { color: #7890a7; }

.government-table-card { overflow: hidden; }
.government-toolbar {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  padding: 13px 14px;
  border-bottom: 1px solid var(--government-border);
  background: #101c2b;
}
.government-toolbar input,
.government-toolbar select,
.government-stat-filter input,
.government-stat-filter select,
.government-form-grid input,
.government-form-grid select,
.government-form-grid textarea {
  min-height: 34px;
  padding: 7px 9px;
  border: 1px solid #34495f;
  border-radius: 6px;
  outline: none;
  color: #e5eef8;
  background: #09131f;
  font: inherit;
  font-size: 12px;
}
.government-toolbar input { width: min(330px, 100%); }
.government-toolbar select { min-width: 140px; }
.government-toolbar input:focus,
.government-toolbar select:focus,
.government-stat-filter input:focus,
.government-stat-filter select:focus,
.government-form-grid input:focus,
.government-form-grid select:focus,
.government-form-grid textarea:focus { border-color: #0891b2; box-shadow: 0 0 0 2px rgba(8, 145, 178, .12); }

.government-table-scroll { width: 100%; overflow-x: auto; }
.government-table-scroll table { width: 100%; min-width: 850px; border-collapse: collapse; }
.government-table-scroll th,
.government-table-scroll td { padding: 12px 13px; border-bottom: 1px solid #1e2e40; text-align: left; vertical-align: middle; }
.government-table-scroll th { color: #7f96ad; background: #0c1724; font-size: 10px; font-weight: 700; letter-spacing: .04em; white-space: nowrap; }
.government-table-scroll td { color: #cdd9e5; font-size: 11px; }
.government-table-scroll tbody tr:hover { background: rgba(30, 60, 83, .22); }
.government-table-scroll tbody tr:last-child td { border-bottom: 0; }
.government-table-primary { color: #eff8ff; font-weight: 700; }
.government-table-secondary { display: block; margin-top: 4px; color: #71879d; font-size: 10px; }
.government-table-actions { display: flex; align-items: center; flex-wrap: wrap; gap: 5px; }
.government-pager { min-height: 42px; display: flex; align-items: center; justify-content: flex-end; gap: 8px; padding: 7px 13px; border-top: 1px solid #203145; color: #7890a7; font-size: 11px; }
.government-data-governance { display: block; margin-top: 5px; color: #fcd34d; font-size: 10px; font-weight: 700; }

.government-sync-summary { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 10px; margin-bottom: 14px; }
.government-sync-summary > div { padding: 13px 15px; border: 1px solid #2a3d52; border-radius: 9px; background: linear-gradient(145deg, #111f30, #0b1623); }
.government-sync-summary span { display: block; color: #8298af; font-size: 10px; }
.government-sync-summary strong { display: block; margin-top: 7px; color: #f4fbff; font-size: 24px; font-variant-numeric: tabular-nums; }
.government-sync-card + .government-sync-card { margin-top: 14px; }
.government-sync-launch { margin-bottom: 14px; overflow: hidden; border: 1px solid #2a4057; border-radius: 10px; background: linear-gradient(145deg, #0e1d2c, #091522); }
.government-sync-launch-controls { display: grid; grid-template-columns: minmax(220px, 1.5fr) minmax(150px, .6fr) auto; align-items: end; gap: 10px; padding: 14px; }
.government-sync-launch-controls label { display: grid; gap: 6px; color: #8da3b9; font-size: 10px; }
.government-sync-launch-controls select { min-height: 38px; width: 100%; padding: 7px 9px; border: 1px solid #31475c; border-radius: 6px; color: #dceaf5; background: #09131f; }
.government-sync-launch > .government-form-message { margin: 0; padding: 0 14px 12px; }
.government-sync-preview-result { max-height: 220px; margin: 0 14px 14px; padding: 11px; overflow: auto; border: 1px solid #294057; border-radius: 7px; color: #b9d3e8; background: #07111c; font: 11px/1.55 ui-monospace, SFMono-Regular, Consolas, monospace; white-space: pre-wrap; overflow-wrap: anywhere; }
.government-card-title { display: flex; align-items: flex-start; justify-content: space-between; gap: 12px; padding: 14px; border-bottom: 1px solid var(--government-border); background: #0d1927; }
.government-card-title h4 { margin: 0; color: #eef8ff; font-size: 14px; }
.government-card-title p { margin: 5px 0 0; color: #8095ab; font-size: 10px; line-height: 1.55; }

.government-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 44px;
  padding: 3px 7px;
  border: 1px solid #3b4c60;
  border-radius: 999px;
  color: #b5c5d6;
  background: rgba(51, 65, 85, .25);
  font-size: 10px;
  white-space: nowrap;
}
.government-badge.success { border-color: rgba(16, 185, 129, .35); color: #a7f3d0; background: rgba(6, 78, 59, .28); }
.government-badge.warning { border-color: rgba(245, 158, 11, .38); color: #fde68a; background: rgba(120, 53, 15, .27); }
.government-badge.danger { border-color: rgba(244, 63, 94, .4); color: #fecdd3; background: rgba(136, 19, 55, .26); }
.government-badge.info { border-color: rgba(14, 165, 233, .38); color: #bae6fd; background: rgba(12, 74, 110, .28); }

.government-empty { padding: 28px 12px; color: #71869d; text-align: center; font-size: 11px; }
.government-empty.compact { padding: 18px 8px; }
.government-empty.error { color: #fda4af; }
.government-bridge-card { display: flex; align-items: center; justify-content: space-between; gap: 22px; padding: 24px; }
.government-bridge-card strong { color: #f2f8ff; font-size: 16px; }
.government-bridge-card p { max-width: 760px; font-size: 12px; }

.government-stat-filter { display: flex; align-items: flex-end; flex-wrap: wrap; gap: 10px; margin-bottom: 14px; padding: 13px 14px; border: 1px solid var(--government-border); border-radius: 9px; background: #0e1927; }
.government-stat-filter label,
.government-form-grid label { display: flex; flex-direction: column; gap: 6px; color: #92a7bd; font-size: 10px; }
.government-stat-filter input,
.government-stat-filter select { min-width: 145px; }
.government-trend { min-height: 196px; display: flex; align-items: flex-end; gap: 7px; overflow-x: auto; padding: 10px 2px 0; }
.government-trend-bar { min-width: 34px; flex: 1 0 34px; display: flex; flex-direction: column; align-items: center; justify-content: flex-end; gap: 6px; }
.government-trend-bar strong { color: #cceeff; font-size: 10px; }
.government-trend-bar i { width: 74%; min-height: 3px; border-radius: 4px 4px 1px 1px; background: linear-gradient(180deg, #22d3ee, #0e7490); box-shadow: 0 0 12px rgba(34, 211, 238, .12); }
.government-trend-bar span { max-width: 52px; overflow: hidden; color: #6f8499; font-size: 9px; text-overflow: ellipsis; white-space: nowrap; }
.government-breakdown { display: grid; gap: 9px; }
.government-breakdown-row { display: grid; grid-template-columns: minmax(70px, 1fr) 2.2fr auto; align-items: center; gap: 8px; color: #9eb1c4; font-size: 10px; }
.government-breakdown-track { height: 7px; overflow: hidden; border-radius: 999px; background: #1a2b3d; }
.government-breakdown-track i { display: block; height: 100%; border-radius: inherit; background: #0891b2; }
.government-breakdown-row strong { color: #e6f1fa; font-size: 11px; }

.government-modal {
  position: fixed;
  inset: 0;
  z-index: 5200;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 22px;
  background: rgba(1, 6, 12, .8);
  backdrop-filter: blur(5px);
}
.government-modal.open { display: flex; }
.government-modal-card {
  width: min(880px, 96vw);
  max-height: calc(100vh - 44px);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid #31475e;
  border-radius: 12px;
  color: #dbe7f3;
  background: #0d1826;
  box-shadow: 0 28px 90px rgba(0, 0, 0, .55);
}
.government-modal-card.compact { width: min(670px, 96vw); }
.government-modal-card.government-modal-wide { width: min(1080px, 96vw); }
.government-modal-card > header { display: flex; align-items: flex-start; justify-content: space-between; gap: 20px; padding: 18px 20px; border-bottom: 1px solid #2b3e52; background: #111f30; }
.government-modal-card h3 { margin-top: 4px; font-size: 18px; }
.government-modal-card header p { font-size: 11px; }
.government-modal-close { width: 32px; height: 32px; border: 1px solid #3c5066; border-radius: 7px; color: #9eb1c4; background: #142337; cursor: pointer; font-size: 20px; line-height: 1; }
.government-modal-body { min-height: 0; overflow: auto; padding: 18px 20px; }
.government-modal-card > footer { display: flex; justify-content: flex-end; gap: 8px; padding: 13px 20px; border-top: 1px solid #293c50; background: #0b1521; }
.government-form-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 13px 14px; }
.government-form-grid label.full { grid-column: 1 / -1; }
.government-form-grid label span b { color: #fb7185; }
.government-form-grid textarea { resize: vertical; }
.government-form-grid input:disabled,
.government-form-grid select:disabled,
.government-form-grid textarea:disabled { color: #8da1b5; background: #101a27; cursor: not-allowed; opacity: .78; }
.government-form-section-title { margin: 18px 0 11px; padding-top: 15px; border-top: 1px solid #26394d; color: #b8e7f3; font-size: 12px; font-weight: 800; letter-spacing: .04em; }
.government-form-section-title:first-child { margin-top: 0; padding-top: 0; border-top: 0; }
.government-linked-record { margin-bottom: 13px; padding: 10px 12px; border: 1px solid rgba(34, 211, 238, .28); border-radius: 8px; color: #a5f3fc; background: rgba(8, 145, 178, .1); font-size: 11px; line-height: 1.55; }
.government-link-results { display: grid; gap: 8px; margin-top: 12px; }
.government-link-result { width: 100%; display: grid; grid-template-columns: minmax(120px, .75fr) minmax(0, 1.5fr) auto; align-items: center; gap: 11px; padding: 12px; border: 1px solid #2f445a; border-radius: 8px; color: #dce9f5; text-align: left; background: #0b1623; cursor: pointer; }
.government-link-result:hover { border-color: #0e7490; background: #0e1d2c; }
.government-link-result strong { overflow: hidden; color: #f2f9ff; font-size: 12px; text-overflow: ellipsis; white-space: nowrap; }
.government-link-result span { overflow: hidden; color: #8298ae; font-size: 10px; text-overflow: ellipsis; white-space: nowrap; }
.government-link-result em { color: #67e8f9; font-size: 10px; font-style: normal; white-space: nowrap; }
.government-coordinate-action,
.government-capability-field { display: flex; flex-direction: column; gap: 6px; color: #92a7bd; font-size: 10px; }
.government-coordinate-action { align-items: flex-start; justify-content: flex-end; }
.government-coordinate-action small { color: #71879c; }
.government-capability-field.full { grid-column: 1 / -1; }
.government-check-grid { display: grid; grid-template-columns: repeat(5, minmax(0, 1fr)); gap: 7px; }
.government-check-grid label { min-height: 34px; display: flex; flex-direction: row; align-items: center; gap: 7px; padding: 7px 9px; border: 1px solid #31475c; border-radius: 6px; color: #b9c9d9; background: #09131f; font-size: 10px; }
.government-check-grid input { min-height: auto; margin: 0; padding: 0; }
.government-form-message { min-height: 18px; margin-top: 10px; color: #8fa5bb; font-size: 11px; }
.government-form-message.error { color: #fda4af; }
.government-form-message.success { color: #6ee7b7; }
.government-form-message.warning { color: #fbbf24; }
.government-health-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 9px; }
.government-health-item { padding: 11px; border: 1px solid #263a50; border-radius: 7px; background: #091421; }
.government-health-item span { display: block; color: #758ca4; font-size: 10px; }
.government-health-item strong { display: block; margin-top: 6px; color: #e9f4fc; font-size: 12px; overflow-wrap: anywhere; }
.government-record-detail { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 8px; margin: 0; }
.government-record-detail > div { min-width: 0; padding: 10px; border: 1px solid #263a4f; border-radius: 7px; background: #091421; }
.government-record-detail dt { color: #7890a8; font-size: 10px; text-transform: uppercase; }
.government-record-detail dd { margin: 6px 0 0; color: #e0eaf3; font-size: 11px; overflow-wrap: anywhere; }
.government-record-detail dd.structured { max-height: 280px; overflow: auto; white-space: pre-wrap; font-family: ui-monospace, SFMono-Regular, Consolas, monospace; font-size: 10px; }

@media (max-width: 1280px) {
  .government-kpi-grid { grid-template-columns: repeat(3, minmax(150px, 1fr)); }
  .government-stat-grid { grid-template-columns: 1fr 1fr; }
  .government-stat-grid .government-card:first-child { grid-column: 1 / -1; }
}

@media (max-width: 900px) {
  .government-hero { align-items: flex-start; }
  .government-overview-grid,
  .government-verification-grid { grid-template-columns: 1fr; }
  .government-bridge-card { align-items: flex-start; flex-direction: column; }
  .government-check-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}

@media (max-width: 720px) {
  .government-hero { min-height: 0; flex-direction: column; padding: 16px; }
  .government-hero h2 { font-size: 20px; }
  .government-hero-actions { width: 100%; justify-content: space-between; }
  .government-subnav { padding: 8px 10px; }
  .government-workspace { padding: 16px 12px 28px; }
  .government-section-heading { flex-direction: column; gap: 9px; }
  .government-heading-actions { width: 100%; justify-content: flex-start; }
  .government-kpi-grid,
  .government-kpi-grid.statistics { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .government-kpi { min-height: 104px; }
  .government-status-summary { grid-template-columns: repeat(2, 1fr); }
  .government-quick-actions,
  .government-stat-grid { grid-template-columns: 1fr; }
  .government-stat-grid .government-card:first-child { grid-column: auto; }
  .government-toolbar { align-items: stretch; }
  .government-toolbar input,
  .government-toolbar select,
  .government-toolbar .government-button { width: 100%; }
  .government-stat-filter { align-items: stretch; flex-direction: column; }
  .government-stat-filter label,
  .government-stat-filter input,
  .government-stat-filter select,
  .government-stat-filter .government-button { width: 100%; }
  .government-modal { padding: 8px; }
  .government-modal-card { width: 100%; max-height: calc(100vh - 16px); }
  .government-modal-card > header,
  .government-modal-body,
  .government-modal-card > footer { padding-left: 14px; padding-right: 14px; }
  .government-form-grid,
  .government-health-grid { grid-template-columns: 1fr; }
  .government-form-grid label.full { grid-column: auto; }
  .government-capability-field.full { grid-column: auto; }
  .government-sync-summary { grid-template-columns: 1fr; }
  .government-sync-launch-controls { grid-template-columns: 1fr; }
  .government-sync-launch-controls .government-heading-actions { justify-content: stretch; }
  .government-sync-launch-controls .government-button { flex: 1; }
  .government-check-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .government-link-result { grid-template-columns: 1fr; }
  .government-link-result strong,
  .government-link-result span { white-space: normal; }
  .government-record-detail { grid-template-columns: 1fr; }
}

@media (max-width: 430px) {
  .government-kpi-grid,
  .government-kpi-grid.statistics { grid-template-columns: 1fr; }
  .government-kpi { min-height: 96px; }
}
