/* Governance — abaixo da barra de status no rodapé (#footer-stack) */

#governanca {
  box-sizing: border-box;
  overflow: hidden;
  font-family: var(--font-bloomberg, var(--mono));
}

.gov-panel-h,
.gov-h-strip {
  height: 100%;
}

.gov-h-strip {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 8px;
  padding: 0 12px;
  min-width: 0;
  height: 100%;
}

.gov-h-brand {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
  padding-right: 12px;
  border-right: 1px solid var(--border2);
  height: 100%;
}

.gov-h-exec {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
  padding: 0 12px;
  border-right: 1px solid var(--border2);
  height: 100%;
  min-width: 0;
  max-width: min(420px, 38vw);
}

.gov-score-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-width: 52px;
  padding: 2px 10px;
  border-radius: 4px;
  border: 1px solid transparent;
  line-height: 1;
}

.gov-score-val {
  font-size: 22px;
  font-weight: 800;
  font-variant-numeric: tabular-nums;
  letter-spacing: 0.02em;
}

.gov-score-sub {
  font-size: 9px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  opacity: 0.85;
  margin-top: 2px;
}

.gov-score-meta {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
}

.gov-score-status {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.gov-score--ok {
  color: var(--green, #67E6C9);
  border-color: rgba(61, 214, 140, 0.35);
  background: rgba(61, 214, 140, 0.08);
}

.gov-score--warn {
  color: var(--amber);
  border-color: rgba(184, 132, 58, 0.45);
  background: rgba(184, 132, 58, 0.1);
}

.gov-score--err {
  color: var(--red, #E77A7A);
  border-color: rgba(224, 134, 134, 0.45);
  background: rgba(224, 134, 134, 0.08);
}

.gov-score--kill {
  color: #fff;
  border-color: rgba(255, 60, 60, 0.65);
  background: rgba(180, 20, 20, 0.85);
}

.gov-score-status--ok { color: var(--green, #67E6C9); }
.gov-score-status--warn { color: var(--amber); }
.gov-score-status--err { color: var(--red, #E77A7A); }
.gov-score-status--kill { color: var(--red, #E77A7A); }

.gov-h-brand .gov-title {
  font-family: var(--font-bloomberg, var(--mono));
  font-size: 17px;
  font-weight: 600;
  letter-spacing: 0.08em;
  white-space: nowrap;
  line-height: 1.1;
}

.gov-h-metrics {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 7px;
  flex: 1;
  min-width: 0;
  overflow: hidden;
  flex-wrap: nowrap;
}

.gov-chip {
  display: inline-flex;
  align-items: baseline;
  gap: 7px;
  padding: 4px 10px;
  border: 1px solid var(--border2);
  border-radius: 2px;
  background: var(--bg2);
  white-space: nowrap;
  flex-shrink: 0;
  line-height: 1.1;
  min-height: 0;
}

.gov-chip .gov-row-lbl {
  font-family: var(--font-bloomberg, var(--mono));
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-dim);
  line-height: 1.1;
}

.gov-chip .gov-row-val {
  font-family: var(--font-bloomberg, var(--mono));
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0.02em;
  font-variant-numeric: tabular-nums;
  line-height: 1.1;
  font-synthesis: weight;
}

body.view-geral-active #footer-stack {
  background: var(--inst-bg);
  display: flex !important;
  visibility: visible !important;
  opacity: 1 !important;
  pointer-events: auto !important;
}

body.view-geral-active:not(.fs-chart-only):not(.chat-view-active):not(.fs-term-pure) #footer-stack {
  height: auto !important;
  min-height: var(--footer-stack-h, calc(var(--bottom-h) + var(--gov-bar-h))) !important;
  max-height: none !important;
  overflow: visible !important;
}

body.view-geral-active #footer-stack #governanca {
  padding: 0;
  background: var(--inst-panel);
  border-top-color: var(--inst-border-dim);
}

body.view-geral-active #footer-stack #bottombar {
  border-top-color: var(--inst-border-dim);
}

body.view-geral-active .gov-h-strip {
  gap: 8px;
  padding: 0 12px;
}

body.view-geral-active .gov-h-brand {
  border-right-color: var(--inst-border-dim);
  gap: 8px;
  padding-right: 12px;
}

body.view-geral-active .gov-h-exec {
  border-right-color: var(--inst-border-dim);
}

body.view-geral-active .gov-score--ok {
  color: var(--inst-green);
  border-color: rgba(0, 200, 120, 0.35);
  background: rgba(0, 200, 120, 0.08);
}

body.view-geral-active .gov-score--warn {
  color: var(--inst-amber);
  border-color: rgba(184, 132, 58, 0.45);
  background: rgba(184, 132, 58, 0.1);
}

body.view-geral-active .gov-score--err,
body.view-geral-active .gov-score--kill {
  color: var(--inst-red);
  border-color: rgba(255, 80, 80, 0.45);
  background: rgba(255, 80, 80, 0.08);
}

body.view-geral-active .gov-score-status--ok { color: var(--inst-green); }
body.view-geral-active .gov-score-status--warn { color: var(--inst-amber); }
body.view-geral-active .gov-score-status--err,
body.view-geral-active .gov-score-status--kill { color: var(--inst-red); }

body.view-geral-active .gov-h-brand .gov-title {
  color: var(--inst-amber-hot);
  font-family: var(--font-bloomberg, var(--inst-mono));
  font-size: 17px;
  font-weight: 600;
  letter-spacing: var(--inst-ls-label);
}

body.view-geral-active .gov-h-metrics {
  gap: 7px;
}

body.view-geral-active .gov-chip {
  background: var(--inst-surface);
  border-color: var(--inst-border-dim);
  padding: 4px 10px;
  min-height: 0;
}

body.view-geral-active .gov-chip .gov-row-lbl,
body.view-geral-active .gov-chip .gov-row-val {
  font-family: var(--font-bloomberg, var(--inst-mono));
}

body.view-geral-active .gov-chip .gov-row-lbl {
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: var(--inst-text-dim);
}

body.view-geral-active .gov-chip .gov-row-val {
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: var(--inst-text);
  font-synthesis: weight;
}

body.view-geral-active .gov-chip .gov-row-val.ok {
  color: var(--inst-green);
}

body.view-geral-active .gov-chip .gov-row-val.red {
  color: var(--inst-red);
}

body.view-geral-active .gov-chip .gov-row-val.gold {
  color: var(--inst-amber);
}

body.view-geral-active .gov-chip .gov-row-val.cyan {
  color: var(--inst-cyan);
}

body.view-geral-active #governanca .gov-model-badge {
  font-size: 15px;
  letter-spacing: 0.06em;
}

body.view-geral-active #governanca .gov-gear-btn {
  font-size: 18px;
  padding: 5px 8px;
  line-height: 1;
}

.gov-tv-mute-btn {
  flex-shrink: 0;
  margin-left: auto;
  align-self: center;
  background: var(--amber);
  border: 1px solid var(--amber-hot, var(--amber));
  border-radius: 0;
  color: #000;
  cursor: pointer;
  font-family: var(--font-bloomberg, var(--mono));
  font-size: 17px;
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 1.1;
  min-height: 0;
  padding: 6px 14px;
  text-transform: uppercase;
  white-space: nowrap;
}

.gov-tv-mute-btn:hover {
  background: var(--amber-hot, var(--amber));
  border-color: var(--amber-hot, var(--amber));
  color: #000;
}

.gov-tv-mute-btn.gov-tv-mute-btn--on {
  background: var(--amber);
  border-color: var(--amber-hot, var(--amber));
  color: #000;
}

body.view-geral-active .gov-tv-mute-btn {
  background: var(--inst-amber, var(--amber));
  border: 1px solid var(--inst-amber-hot, var(--amber-hot));
  border-radius: 0;
  color: #000;
  font-family: var(--font-bloomberg, var(--inst-mono));
  font-size: 17px;
  font-weight: 700;
  letter-spacing: var(--inst-ls-label);
  line-height: 1.1;
  min-height: 0;
  padding: 6px 14px;
}

body.view-geral-active .gov-tv-mute-btn:hover,
body.view-geral-active .gov-tv-mute-btn.gov-tv-mute-btn--on {
  background: var(--inst-amber-hot, var(--amber-hot));
  border-color: var(--inst-amber-hot, var(--amber-hot));
  color: #000;
}

#governanca.gov-system-locked {
  box-shadow: inset 0 0 0 1px rgba(224, 134, 134, 0.35);
}

body.view-geral-active #governanca.gov-system-locked {
  box-shadow: inset 0 0 0 1px rgba(224, 134, 134, 0.45);
}

/* Spread — largura fixa (evita jump 9↔10 pts na gov-bar) */
.gov-item--spread {
  flex: 0 0 auto;
  min-width: 5.75rem;
}

.gov-item--spread .gov-stack {
  min-width: 4.25rem;
}

#gov-spread {
  display: inline-block;
  min-width: 4.25rem;
  font-variant-numeric: tabular-nums;
  font-feature-settings: "tnum" 1;
  white-space: nowrap;
  box-sizing: border-box;
}

/* Spread guard — pisca item SPREAD na gov-bar */
.gov-item.gov-spread-spike {
  animation: gov-spread-spike-flash 0.45s ease-in-out infinite;
  box-shadow: inset 0 0 0 1px rgba(224, 134, 134, 0.85), 0 0 14px rgba(224, 134, 134, 0.35);
  background: rgba(224, 134, 134, 0.12);
}

.gov-item.gov-spread-spike #gov-spread {
  color: var(--red, #E77A7A) !important;
}

.gov-item.gov-spread-spike #gov-spread-dot {
  background: var(--red, #E77A7A) !important;
  box-shadow: 0 0 8px rgba(224, 134, 134, 0.65);
}

@keyframes gov-spread-spike-flash {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.35; }
}

body.spread-guard-lock .g-btn.g-btn--spread-lock {
  opacity: 0.38;
  pointer-events: none;
  cursor: not-allowed;
  box-shadow: inset 0 0 0 1px rgba(224, 134, 134, 0.55);
}

/* Painel OMS — empilhado compacto */
#left-shell {
  display: flex;
  flex-direction: column;
  height: auto;
  min-height: 0;
  overflow-x: hidden;
  overflow-y: visible;
}

#left-shell .oms-order-block {
  flex: 0 0 auto;
  min-height: 0;
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: 0;
  border: none;
  overflow: visible;
}

#left-shell .oms-exec-block {
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  margin-top: 0;
  position: sticky;
  bottom: 0;
  z-index: 6;
  background: var(--bg1);
}

#left-shell:not(.left-shell-scaled) .oms-exec-block {
  box-shadow: 0 -8px 18px rgba(0, 0, 0, 0.42);
}

body.view-geral-active #left-shell .oms-exec-block {
  background: var(--inst-bg, var(--bg1));
  border-top: 1px solid var(--inst-border-dim, var(--border2));
}

/* ============================================================
   Gov bar (#governanca) — paleta Eikon (aço / menta)
   REVERTER: apagar este bloco.
   ============================================================ */
body.view-geral-active #footer-stack #governanca {
  background: #070a0d;
  border-top: 1px solid #1a2430;
}

body.view-geral-active .gov-h-brand {
  border-right-color: #1a2430;
}

body.view-geral-active .gov-h-exec {
  border-right-color: #1a2430;
}

body.view-geral-active .gov-h-brand .gov-title,
body.view-geral-active #governanca .gov-model-badge {
  color: #4A8FA0 !important;
}

body.view-geral-active #governanca .gov-gear-btn {
  color: #4A8FA0;
  border-color: #1a2430;
  background: transparent;
  box-shadow: none;
}

body.view-geral-active #governanca .gov-gear-btn:hover {
  color: #d5dde6;
  border-color: #4A8FA0;
  background: rgba(74, 143, 160, 0.1);
  box-shadow: none;
}

body.view-geral-active .gov-score--ok {
  color: #67E6C9 !important;
  border-color: rgba(116, 222, 198, 0.35) !important;
  background: rgba(116, 222, 198, 0.08) !important;
  box-shadow: none !important;
}

body.view-geral-active .gov-score--warn {
  color: #C8883A !important;
  border-color: rgba(200, 136, 58, 0.4) !important;
  background: rgba(200, 136, 58, 0.08) !important;
  box-shadow: none !important;
}

body.view-geral-active .gov-score--err,
body.view-geral-active .gov-score--kill {
  color: #E77A7A !important;
  border-color: rgba(224, 134, 134, 0.4) !important;
  background: rgba(224, 134, 134, 0.08) !important;
  box-shadow: none !important;
}

body.view-geral-active .gov-score-status--ok { color: #67E6C9 !important; }
body.view-geral-active .gov-score-status--warn { color: #C8883A !important; }
body.view-geral-active .gov-score-status--err,
body.view-geral-active .gov-score-status--kill { color: #E77A7A !important; }

body.view-geral-active .gov-chip {
  background: transparent !important;
  border-color: #1a2430 !important;
  border-radius: 2px !important;
  box-shadow: none !important;
}

body.view-geral-active .gov-chip:hover {
  background: rgba(74, 143, 160, 0.1) !important;
}

body.view-geral-active .gov-chip .gov-row-lbl {
  color: #7a8794 !important;
}

body.view-geral-active .gov-chip .gov-row-val {
  color: #d5dde6 !important;
}

body.view-geral-active .gov-chip .gov-row-val.ok {
  color: #67E6C9 !important;
}

body.view-geral-active .gov-chip .gov-row-val.red {
  color: #E77A7A !important;
}

body.view-geral-active .gov-chip .gov-row-val.gold {
  color: #C8883A !important;
}

body.view-geral-active .gov-chip .gov-row-val.cyan {
  color: #4A8FA0 !important;
}

/* UNMUTE — botão aço (igual filtro/OMS ativo), sem ouro neon */
body.view-geral-active .gov-tv-mute-btn,
body.view-geral-active .gov-tv-mute-btn:hover,
body.view-geral-active .gov-tv-mute-btn.gov-tv-mute-btn--on {
  background: #4A8FA0 !important;
  border: 1px solid #4A8FA0 !important;
  border-radius: 2px !important;
  color: #000 !important;
  box-shadow: none !important;
  text-shadow: none !important;
}

/* ── Metric chips as health buttons ── */
button.gov-chip {
  cursor: pointer;
  font: inherit;
  color: inherit;
  appearance: none;
  -webkit-appearance: none;
  position: relative;
  transition: border-color 0.12s ease, background 0.12s ease, box-shadow 0.12s ease;
}

button.gov-chip:hover {
  border-color: rgba(74, 143, 160, 0.55);
  background: rgba(74, 143, 160, 0.08);
}

button.gov-chip.is-active {
  border-color: rgba(220, 228, 236, 0.55);
  background: rgba(255, 255, 255, 0.04);
  box-shadow: inset 0 0 0 1px rgba(220, 228, 236, 0.12);
}

button.gov-chip.is-active::after {
  content: '';
  position: absolute;
  left: 50%;
  top: -7px;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-bottom: 6px solid rgba(180, 190, 200, 0.85);
}

/* ── Health modal (popover style from mock) ── */
.gov-health-overlay {
  position: fixed;
  inset: 0;
  z-index: 9200;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
  pointer-events: auto;
}

.gov-health-overlay[hidden] {
  display: none !important;
}

.gov-health-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.62);
  backdrop-filter: blur(2px);
}

.gov-health-modal {
  position: relative;
  z-index: 1;
  width: min(1760px, calc(100vw - 32px));
  height: min(980px, calc(100vh - 32px));
  max-height: calc(100vh - 32px);
  overflow: auto;
  display: flex;
  flex-direction: column;
  background: #0c0e12;
  border: 1px solid rgba(120, 130, 145, 0.4);
  border-radius: 2px;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.6);
  padding: 28px 32px 22px;
  font-family: var(--font-bloomberg, var(--mono), ui-monospace, monospace);
  color: #d8dee6;
  box-sizing: border-box;
}

.gov-health-hdr {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 12px;
  flex-shrink: 0;
}

.gov-health-hdr h3 {
  margin: 0;
  font-size: 36px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #e8eef4;
  line-height: 1.15;
}

.gov-health-close {
  appearance: none;
  border: 1px solid rgba(120, 130, 145, 0.4);
  background: transparent;
  color: #9aa3ad;
  width: 48px;
  height: 48px;
  border-radius: 2px;
  cursor: pointer;
  font-size: 24px;
  line-height: 1;
  flex-shrink: 0;
}

.gov-health-close:hover {
  color: #fff;
  border-color: rgba(180, 190, 200, 0.55);
}

.gov-health-chart-head {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 20px;
  font-size: 18px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #8b949e;
  margin-bottom: 12px;
  flex-shrink: 0;
}

.gov-health-period {
  color: #4A8FA0;
  font-weight: 700;
  font-size: 18px;
}

.gov-health-legend {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 14px;
  font-size: 16px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #9aa3ad;
  flex-shrink: 0;
}

.gh-leg {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.gh-leg i {
  display: inline-block;
  width: 24px;
  height: 2px;
}

.gh-leg--lock i {
  background: #E77A7A;
  border-top: 1px dashed #E77A7A;
  height: 0;
  box-shadow: 0 0 0 0.5px #E77A7A;
}

.gh-leg--safe i {
  width: 18px;
  height: 14px;
  background: rgba(116, 222, 198, 0.22);
  border: 1px solid rgba(116, 222, 198, 0.35);
}

.gov-health-chart {
  width: 100%;
  flex: 1 1 auto;
  min-height: 420px;
  height: auto;
  background: #07090c;
  border: 1px solid rgba(80, 90, 105, 0.4);
  margin-bottom: 20px;
}

.gov-health-svg {
  width: 100%;
  height: 100%;
  display: block;
}

.gov-health-svg .gh-grid {
  stroke: rgba(90, 100, 115, 0.35);
  stroke-width: 1;
}

.gov-health-svg .gh-ylab,
.gov-health-svg .gh-xlab {
  fill: #6b7380;
  font-size: 16px;
  font-family: var(--font-bloomberg, var(--mono), ui-monospace, monospace);
}

.gov-health-svg .gh-safe {
  fill: rgba(116, 222, 198, 0.10);
}

.gov-health-svg .gh-lock {
  stroke: #E77A7A;
  stroke-width: 2;
  stroke-dasharray: 6 5;
}

.gov-health-svg .gh-alert {
  stroke: #C8883A;
  stroke-width: 1.5;
  stroke-dasharray: 4 4;
  opacity: 0.85;
}

.gov-health-svg .gh-area {
  fill: rgba(74, 143, 160, 0.12);
  stroke: none;
}

.gov-health-svg .gh-series {
  fill: none;
  stroke: #6ec8d9;
  stroke-width: 3;
  stroke-linejoin: round;
  stroke-linecap: round;
}

.gov-health-svg .gh-empty {
  fill: #6b7380;
  font-size: 22px;
  text-anchor: middle;
  font-family: var(--font-bloomberg, var(--mono), ui-monospace, monospace);
}

/* Top strip · metric cards + sparkline */
.gov-health-strip {
  display: grid;
  grid-template-columns: repeat(11, minmax(0, 1fr));
  gap: 8px;
  margin-bottom: 16px;
  flex-shrink: 0;
}

.gov-health-scard {
  appearance: none;
  -webkit-appearance: none;
  font: inherit;
  text-align: left;
  margin: 0;
  border: 1px solid rgba(90, 100, 115, 0.45);
  background: #0a0c10;
  padding: 12px 12px 10px;
  min-height: 108px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  color: inherit;
  cursor: pointer;
  position: relative;
  box-sizing: border-box;
}

.gov-health-scard.is-static {
  cursor: default;
}

.gov-health-scard:hover:not(.is-static) {
  border-color: rgba(120, 140, 155, 0.65);
  background: #0e1116;
}

.gov-health-scard.is-active {
  border-color: rgba(74, 143, 160, 0.75);
  box-shadow: inset 0 2px 0 0 #4A8FA0;
}

.gov-health-scard-lbl {
  font-size: 13px;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: #8b949e;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.gov-health-scard-val {
  font-size: 26px;
  font-weight: 700;
  font-variant-numeric: tabular-nums;
  line-height: 1.1;
  color: #e8eef4;
}

.gov-health-scard-val.pos { color: #67E6C9; }
.gov-health-scard-val.neg { color: #E77A7A; }
.gov-health-scard-val.amber { color: #C8883A; }
.gov-health-scard-val.cyan { color: #4A8FA0; }

.gov-health-spark {
  width: 100%;
  height: 26px;
  margin-top: auto;
  display: block;
}

/* Bottom · session stats bar */
.gov-health-session {
  display: grid;
  grid-template-columns: repeat(8, minmax(0, 1fr));
  border: 1px solid rgba(90, 100, 115, 0.45);
  background: #0a0c10;
  margin-bottom: 14px;
  flex-shrink: 0;
}

.gov-health-sess-cell {
  padding: 16px 18px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  border-right: 1px solid rgba(90, 100, 115, 0.38);
  min-width: 0;
}

.gov-health-sess-cell:last-child {
  border-right: 0;
}

.gov-health-sess-cell span {
  font-size: 14px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #8b949e;
}

.gov-health-sess-cell b {
  font-size: 30px;
  font-weight: 700;
  font-variant-numeric: tabular-nums;
  line-height: 1.1;
  color: #e8eef4;
}

.gov-health-sess-cell b.pos { color: #67E6C9; }
.gov-health-sess-cell b.neg { color: #E77A7A; }
.gov-health-sess-cell b.amber { color: #C8883A; }
.gov-health-sess-cell b.cyan { color: #4A8FA0; }

.gov-health-foot {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  font-size: 15px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #6b7380;
  border-top: 1px solid rgba(80, 90, 105, 0.4);
  padding-top: 14px;
  flex-shrink: 0;
}

@media (max-width: 1400px) {
  .gov-health-strip {
    grid-template-columns: repeat(6, minmax(0, 1fr));
  }
  .gov-health-scard-val { font-size: 22px; }
  .gov-health-scard-lbl { font-size: 12px; }
  .gov-health-sess-cell b { font-size: 24px; }
  .gov-health-sess-cell span { font-size: 13px; }
}

@media (max-width: 1200px) {
  .gov-health-modal {
    width: calc(100vw - 24px);
    height: calc(100vh - 24px);
    padding: 20px 22px 16px;
  }
  .gov-health-hdr h3 { font-size: 28px; }
  .gov-health-chart { min-height: 300px; }
  .gov-health-session {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
  .gov-health-sess-cell:nth-child(4n) { border-right: 0; }
  .gov-health-sess-cell:nth-child(n+5) {
    border-top: 1px solid rgba(90, 100, 115, 0.38);
  }
}

@media (max-width: 720px) {
  .gov-health-strip {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .gov-health-session {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .gov-health-sess-cell:nth-child(4n) { border-right: 1px solid rgba(90, 100, 115, 0.38); }
  .gov-health-sess-cell:nth-child(2n) { border-right: 0; }
  .gov-health-sess-cell:nth-child(n+3) {
    border-top: 1px solid rgba(90, 100, 115, 0.38);
  }
  .gov-health-hdr h3 { font-size: 22px; }
  .gov-health-chart-head,
  .gov-health-period { font-size: 14px; }
  .gov-health-legend { font-size: 13px; }
}

