/* ENSO Monitor — presentation layer on nexus.css + nx-presentation.css */

:root {
    --nx-tool-enso-warm: #f97316;
    --nx-tool-enso-cool: #3b82f6;
    --nx-tool-enso-teal: #14b8a6;
}

.phase-el-nino { color: var(--nx-tool-enso-warm); }
.phase-la-nina { color: var(--nx-tool-enso-cool); }
.phase-neutral { color: var(--text-primary); }

.enso-hero-badge-row {
    display: flex;
    align-items: center;
    gap: 0.35rem;
    flex-wrap: wrap;
}

.enso-phase-badge {
    display: inline-block;
    padding: 0.35rem 0.75rem;
    border-radius: 999px;
    font-weight: 700;
    font-size: 0.9rem;
    border: 1px solid var(--border-subtle);
    background: var(--bg-card, rgba(15, 23, 42, 0.6));
}

.enso-phase-badge.phase-el-nino {
    border-color: rgba(249, 115, 22, 0.5);
    background: rgba(249, 115, 22, 0.12);
}

.enso-phase-badge.phase-la-nina {
    border-color: rgba(59, 130, 246, 0.5);
    background: rgba(59, 130, 246, 0.12);
}

.enso-phase-badge.phase-neutral {
    border-color: rgba(148, 163, 184, 0.45);
    background: rgba(148, 163, 184, 0.12);
    color: var(--text-primary);
}

.chart-wrap {
    position: relative;
    width: 100%;
    height: 220px;
}

.chart-wrap--tall {
    height: 320px;
}

.chart-wrap--signature {
    /* Fixed height (not min-height) prevents Chart.js responsive feedback loop
       that produced visible "shimmer" / continuous resizing. */
    height: 380px;
}

.enso-signature-panel {
    border-left: 3px solid var(--nx-tool-enso-warm);
    margin-top: 1rem;
}

.enso-signature-panel .enso-overlay-legend {
    margin-top: 1rem;
}

.chart-wrap canvas {
    width: 100% !important;
    height: 100% !important;
}

.enso-subhead {
    font-size: 1rem;
    font-weight: 600;
    margin: 0;
    color: var(--text-primary);
}

.enso-overlay-legend {
    list-style: none;
    padding: 0;
    margin: 0.75rem 0 0;
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem 1.25rem;
    font-size: 0.8rem;
}

.enso-overlay-legend li {
    display: flex;
    align-items: center;
    gap: 0.35rem;
}

.enso-overlay-swatch {
    width: 12px;
    height: 3px;
    border-radius: 2px;
    flex-shrink: 0;
}

/* SOI vertical dial */
.enso-soi-kpi .nx-kpi-value {
    display: none;
}

.enso-soi-readme {
    margin: 0.5rem 0 0;
    font-size: 0.78rem;
    line-height: 1.4;
    color: var(--text-muted);
}

.enso-soi-readme strong {
    color: var(--text-primary);
    font-weight: 700;
}

.enso-soi-dial-wrap {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 0.25rem;
}

.enso-soi-dial {
    display: flex;
    gap: 0.45rem;
    align-items: stretch;
    height: 140px;
}

.enso-soi-dial-track {
    position: relative;
    width: 22px;
    border-radius: 6px;
    overflow: hidden;
    border: 1px solid var(--border-subtle);
    background: linear-gradient(
        to top,
        rgba(249, 115, 22, 0.85) 0%,
        rgba(248, 250, 252, 0.35) 48%,
        rgba(59, 130, 246, 0.85) 100%
    );
}

.enso-soi-dial-marker {
    position: absolute;
    left: -3px;
    right: -3px;
    height: 4px;
    background: #fff;
    border: 2px solid #0f172a;
    border-radius: 2px;
    transform: translateY(50%);
    box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.35);
}

.enso-soi-dial-scale {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    font-size: 0.65rem;
    color: var(--text-muted);
    line-height: 1.2;
    padding: 0.1rem 0;
    max-width: 5.5rem;
}

.enso-soi-dial-mid {
    opacity: 0.65;
    text-align: center;
}

.enso-soi-dial-caption {
    text-align: center;
    margin-top: 0.35rem;
    max-width: 12rem;
}

/* Impact map KPI */
.enso-impact-map-kpi {
    min-width: 0;
}

.enso-impact-map {
    margin-top: 0.35rem;
}

.enso-impact-map-inner {
    position: relative;
    width: 100%;
    aspect-ratio: 2 / 1;
    max-height: 120px;
    border-radius: 6px;
    border: 1px solid var(--border-subtle);
    background: rgba(15, 23, 42, 0.35);
    overflow: hidden;
}

.enso-impact-map-svg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.enso-impact-land {
    fill: rgba(148, 163, 184, 0.2);
    stroke: rgba(148, 163, 184, 0.35);
    stroke-width: 0.3;
}

.enso-impact-dot {
    position: absolute;
    width: 10px;
    height: 10px;
    margin: -5px 0 0 -5px;
    border-radius: 50%;
    background: var(--dot-color, #f97316);
    border: 2px solid rgba(255, 255, 255, 0.9);
    box-shadow: 0 0 6px var(--dot-color);
    text-decoration: none;
    transition: transform 0.15s ease;
}

.enso-impact-dot:hover {
    transform: scale(1.25);
    z-index: 2;
}

.enso-impact-dot-label {
    position: absolute;
    left: 50%;
    top: 100%;
    transform: translateX(-50%);
    margin-top: 2px;
    font-size: 0.55rem;
    white-space: nowrap;
    color: var(--text-muted);
    pointer-events: none;
}

.enso-impact-map-note {
    font-size: 0.7rem;
    margin: 0.25rem 0 0;
}

/* Leaflet-based impact map (replaces the schematic SVG version) */
.enso-impact-leaflet {
    width: 100%;
    height: 130px;
    border-radius: 6px;
    overflow: hidden;
    border: 1px solid var(--border-subtle, rgba(148, 163, 184, 0.18));
    background: rgba(15, 23, 42, 0.35);
}

.leaflet-tooltip.enso-impact-tip {
    background: rgba(15, 23, 42, 0.88);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.25);
    padding: 2px 6px;
    border-radius: 3px;
    font-size: 0.7rem;
    font-weight: 600;
    box-shadow: none;
    white-space: nowrap;
}
.leaflet-tooltip.enso-impact-tip::before { display: none; }

[data-theme="light"] .leaflet-tooltip.enso-impact-tip {
    background: rgba(255, 255, 255, 0.95);
    color: #0f172a;
    border-color: rgba(15, 23, 42, 0.3);
}

/* KPI-card secondary tag */
.enso-kpi-tag {
    display: inline-block;
    margin-left: 0.35rem;
    padding: 0.05rem 0.4rem;
    border-radius: 3px;
    font-size: 0.6rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    vertical-align: middle;
    background: rgba(239, 68, 68, 0.18);
    color: #b91c1c;
    border: 1px solid rgba(239, 68, 68, 0.35);
}

[data-theme="dark"] .enso-kpi-tag { color: #fca5a5; }

/* The merged stripes heading inside the per-region section */
.enso-nino-stripes-heading {
    margin-top: 1.5rem;
    padding-top: 1rem;
    border-top: 1px solid var(--border-subtle, rgba(148, 163, 184, 0.18));
}

/* Region small-multiple stripes */
.enso-regions-stripes-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-top: 0.75rem;
}

@media (max-width: 640px) {
    .enso-regions-stripes-grid {
        grid-template-columns: 1fr;
    }
}

.enso-region-stripe-item .nx-stripes-host {
    height: 2rem;
}

.enso-region-stripe-label {
    font-size: 0.85rem;
    font-weight: 600;
    margin: 0 0 0.25rem;
    color: var(--text-primary);
}

/* Localized teleconnection */
.enso-localized-card h3 {
    margin: 0 0 0.5rem;
    font-size: 1.05rem;
}

.enso-localized-bullets {
    margin: 0 0 0.75rem 1.1rem;
    line-height: 1.5;
    color: var(--text-primary);
}

.enso-teleconnection-map {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 0.75rem;
}

.enso-teleconnection-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 0.75rem;
}

@media (max-width: 720px) {
    .enso-teleconnection-grid {
        grid-template-columns: 1fr;
    }
}

.enso-teleconnection-grid .enso-tel-note {
    grid-column: 1 / -1;
    padding: 0.65rem 0.85rem;
    border-radius: 6px;
    background: rgba(148, 163, 184, 0.10);
    border-left: 4px solid rgba(148, 163, 184, 0.6);
    font-size: 0.88rem;
    line-height: 1.5;
}

.enso-tel-band {
    padding: 0.75rem 0.95rem;
    border-radius: 6px;
    font-size: 0.9rem;
    line-height: 1.4;
}

.enso-tel-band strong {
    display: block;
    margin-bottom: 0.4rem;
    font-size: 0.95rem;
}

.enso-tel-band ul {
    margin: 0;
    padding-left: 1.1rem;
}

.enso-tel-band li {
    margin: 0.15rem 0;
}

.enso-tel-band--wet {
    border-left: 4px solid #38bdf8;
    background: rgba(56, 189, 248, 0.08);
}

.enso-tel-band--dry {
    border-left: 4px solid #f97316;
    background: rgba(249, 115, 22, 0.08);
}

/* Impacts grid */
.enso-impacts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1rem;
    margin-top: 1rem;
}

.enso-impact-card { padding: 1.25rem; }

.enso-impact-card h3 {
    font-size: 1rem;
    margin: 0 0 0.5rem 0;
    color: var(--text-primary);
}

.enso-impact-metric {
    font-size: 1.75rem;
    font-weight: 700;
    margin: 0.25rem 0;
}

.enso-impact-unit {
    font-size: 0.85rem;
    color: var(--text-muted);
    font-weight: 400;
}

.enso-impact-link {
    margin-top: 0.75rem;
    padding-top: 0.75rem;
    border-top: 1px solid var(--border-color, #333);
    font-size: 0.9rem;
    color: var(--text-primary);
    line-height: 1.4;
}

.enso-impact-source { margin-top: 0.5rem; font-size: 0.8rem; }
.enso-impact-source a { color: var(--accent-teal); }

.nx-trust-layer a { color: var(--link-color, #38bdf8); }

.nx-sr-kpi {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* Niño regions map (current spatial state) ------------------------------- */
.enso-nino-regions {
    margin-top: 1rem;
}

.enso-nino-map-wrap {
    margin: 1rem 0 1.25rem;
}

.enso-nino-map {
    width: 100%;
    height: 360px;
    display: block;
    border-radius: 8px;
    border: 1px solid var(--border-subtle, rgba(148, 163, 184, 0.18));
    background: rgba(15, 23, 42, 0.35);
    overflow: hidden;
}

@media (max-width: 720px) {
    .enso-nino-map { height: 240px; }
}

/* Permanent map tooltips for the Niño region labels */
.leaflet-tooltip.enso-mt {
    background: rgba(15, 23, 42, 0.85);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.25);
    padding: 3px 8px;
    border-radius: 4px;
    font-size: 0.78rem;
    font-weight: 600;
    box-shadow: none;
    white-space: nowrap;
}
.leaflet-tooltip.enso-mt::before { display: none; }
.leaflet-tooltip.enso-mt--n4   { border-color: #3b82f6; }
.leaflet-tooltip.enso-mt--n3   { border-color: #f97316; }
.leaflet-tooltip.enso-mt--n34  { border-color: #ef4444; color: #fecaca; }
.leaflet-tooltip.enso-mt--n12  { border-color: #fca5a5; color: #fecaca; }

[data-theme="light"] .leaflet-tooltip.enso-mt {
    background: rgba(255, 255, 255, 0.95);
    color: #0f172a;
    border-color: rgba(15, 23, 42, 0.3);
}
[data-theme="light"] .leaflet-tooltip.enso-mt--n34 { color: #b91c1c; }
[data-theme="light"] .leaflet-tooltip.enso-mt--n12 { color: #b91c1c; }

.enso-nino-land {
    fill: rgba(125, 145, 165, 0.55);
    stroke: rgba(125, 145, 165, 0.65);
    stroke-width: 0.4;
}

[data-theme="light"] .enso-nino-land {
    fill: rgba(100, 116, 139, 0.4);
    stroke: rgba(100, 116, 139, 0.6);
}

.enso-nino-equator {
    stroke: rgba(255, 255, 255, 0.5);
    stroke-width: 0.6;
    stroke-dasharray: 4 3;
}

.enso-nino-grid {
    stroke: rgba(255, 255, 255, 0.18);
    stroke-width: 0.4;
    stroke-dasharray: 2 3;
}

.enso-nino-meridian {
    stroke: rgba(255, 255, 255, 0.22);
    stroke-width: 0.4;
    stroke-dasharray: 1 3;
}

[data-theme="light"] .enso-nino-equator { stroke: rgba(15, 23, 42, 0.55); }
[data-theme="light"] .enso-nino-grid    { stroke: rgba(15, 23, 42, 0.2);  }
[data-theme="light"] .enso-nino-meridian { stroke: rgba(15, 23, 42, 0.25); }

.enso-nino-grid-label {
    fill: rgba(255, 255, 255, 0.5);
    font-size: 9px;
    font-family: system-ui, sans-serif;
}

[data-theme="light"] .enso-nino-grid-label { fill: rgba(15, 23, 42, 0.55); }

.enso-nino-region {
    fill: rgba(255, 255, 255, 0.04);
    stroke: rgba(255, 255, 255, 0.6);
    stroke-width: 1;
}

.enso-nino-region--n4   { stroke: #93c5fd; }   /* west, currently neutral-ish */
.enso-nino-region--n3   { stroke: #fbbf24; }   /* east */
.enso-nino-region--n34  { stroke: #ef4444; stroke-width: 1.5; }  /* main index */
.enso-nino-region--n12  { stroke: #fca5a5; fill: rgba(239, 68, 68, 0.18); }   /* eastern small box */

[data-theme="light"] .enso-nino-region {
    fill: rgba(15, 23, 42, 0.04);
}

.enso-nino-region-label {
    fill: rgba(255, 255, 255, 0.92);
    font-size: 12px;
    font-weight: 600;
    font-family: system-ui, sans-serif;
}

.enso-nino-region-label--small { font-size: 10px; }
.enso-nino-region-label--sub   { font-size: 9.5px; font-weight: 500; fill: rgba(255,255,255,0.7); }
.enso-nino-region-label--hot   { fill: #fca5a5; font-weight: 700; }

[data-theme="light"] .enso-nino-region-label--sub { fill: rgba(15, 23, 42, 0.6); }

[data-theme="light"] .enso-nino-region-label { fill: rgba(15, 23, 42, 0.92); }
[data-theme="light"] .enso-nino-region-label--hot { fill: #b91c1c; }

.enso-nino-heatdot {
    pointer-events: none;
}

.enso-nino-heatdot--hot {
    fill: #ef4444;
    opacity: 0.75;
    filter: blur(3px);
}

.enso-nino-heatdot--mild {
    fill: #fb923c;
    opacity: 0.4;
    filter: blur(4px);
}

[data-theme="light"] .enso-nino-heatdot--hot  { opacity: 0.55; }
[data-theme="light"] .enso-nino-heatdot--mild { opacity: 0.3; }

.enso-nino-legend {
    list-style: none;
    padding: 0;
    margin: 0.85rem 0 0.5rem;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.55rem 1rem;
}

@media (max-width: 720px) {
    .enso-nino-legend { grid-template-columns: 1fr; }
}

.enso-nino-legend li {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    font-size: 0.85rem;
    line-height: 1.45;
}

.enso-nino-swatch {
    flex: 0 0 14px;
    width: 14px;
    height: 14px;
    border-radius: 3px;
    margin-top: 0.18rem;
    border: 1.5px solid currentColor;
    background: rgba(255, 255, 255, 0.04);
}

.enso-nino-swatch--n12 { color: #fca5a5; background: rgba(239, 68, 68, 0.2); }
.enso-nino-swatch--n3  { color: #fbbf24; }
.enso-nino-swatch--n34 { color: #ef4444; border-width: 2px; }
.enso-nino-swatch--n4  { color: #93c5fd; }

.enso-nino-val {
    padding: 0 0.3rem;
    border-radius: 3px;
    font-weight: 700;
}
.enso-nino-val--hot  { color: #fca5a5; background: rgba(239, 68, 68, 0.18); }
.enso-nino-val--warm { color: #fde68a; background: rgba(252, 211, 77, 0.16); }

[data-theme="light"] .enso-nino-val--hot  { color: #b91c1c; }
[data-theme="light"] .enso-nino-val--warm { color: #92400e; }

.enso-nino-source {
    font-size: 0.75rem;
    margin-top: 0.5rem;
}

/* Per-region mini-maps under the main map */
.enso-nino-mini-heading {
    margin: 1.1rem 0 0.5rem;
    font-size: 0.85rem;
}

.enso-nino-minis {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0.85rem;
    margin: 0;
    padding: 0;
}

@media (max-width: 980px) {
    .enso-nino-minis { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 560px) {
    .enso-nino-minis { grid-template-columns: 1fr; }
}

.enso-nino-mini {
    margin: 0;
    padding: 0.6rem;
    border: 1px solid var(--border-subtle, rgba(148, 163, 184, 0.18));
    border-radius: 8px;
    background: var(--surface-2, rgba(15, 23, 42, 0.35));
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}

.enso-nino-mini--main {
    border-color: rgba(239, 68, 68, 0.5);
}

.enso-nino-mini-map {
    width: 100%;
    height: 100px;
    border-radius: 5px;
    background: rgba(15, 23, 42, 0.35);
    overflow: hidden;
    border: 1px solid var(--border-subtle, rgba(148, 163, 184, 0.18));
}

.enso-nino-mini figcaption h3 {
    margin: 0 0 0.25rem;
    font-size: 0.95rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.4rem;
}

.enso-nino-mini figcaption p {
    margin: 0;
    font-size: 0.82rem;
    line-height: 1.45;
    color: var(--text-primary);
}

.enso-nino-mini-val {
    font-size: 0.8rem;
    font-weight: 700;
    padding: 0.05rem 0.4rem;
    border-radius: 3px;
}
.enso-nino-mini-val--hot  { color: #fca5a5; background: rgba(239, 68, 68, 0.18); }
.enso-nino-mini-val--warm { color: #fde68a; background: rgba(252, 211, 77, 0.16); }

[data-theme="light"] .enso-nino-mini-val--hot  { color: #b91c1c; }
[data-theme="light"] .enso-nino-mini-val--warm { color: #92400e; }

.enso-nino-mini-tag {
    font-size: 0.65rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    padding: 0.05rem 0.35rem;
    border-radius: 3px;
    background: rgba(239, 68, 68, 0.18);
    color: #fca5a5;
}

[data-theme="light"] .enso-nino-mini-tag { color: #b91c1c; }

/* Four-frame heat-blob hero ---------------------------------------------- */
.enso-heat-strip {
    margin-top: 1rem;
}

.enso-heat-frames {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
    list-style: none;
    margin: 1rem 0 0;
    padding: 0;
}

@media (max-width: 980px) {
    .enso-heat-frames {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 560px) {
    .enso-heat-frames {
        grid-template-columns: 1fr;
    }
}

.enso-heat-frame {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
    padding: 0.85rem;
    border: 1px solid var(--border-subtle, rgba(148, 163, 184, 0.18));
    border-radius: 8px;
    background: var(--surface-2, rgba(15, 23, 42, 0.35));
    position: relative;
}

.enso-heat-frame--peak {
    border-color: rgba(239, 68, 68, 0.55);
    box-shadow: 0 0 0 1px rgba(239, 68, 68, 0.18);
}

.enso-heat-frame__phase {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--text-primary);
    letter-spacing: 0;
    text-transform: none;
}

.enso-heat-frame--peak .enso-heat-frame__phase {
    color: #ef4444;
}

[data-theme="dark"] .enso-heat-frame--peak .enso-heat-frame__phase { color: #fca5a5; }

.enso-heat-svg {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 5px;
}

.enso-heat-map {
    width: 100%;
    height: 130px;
    border-radius: 5px;
    border: 1px solid var(--border-subtle, rgba(148, 163, 184, 0.18));
    background: rgba(15, 23, 42, 0.35);
    overflow: hidden;
}

.enso-heat-frame__phase-tag {
    display: table;
    margin: 0.35rem 0 0;
    padding: 0.1rem 0.45rem;
    border-radius: 3px;
    font-size: 0.66rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    background: rgba(15, 23, 42, 0.08);
    color: var(--text-primary);
    border: 1px solid rgba(15, 23, 42, 0.18);
}

[data-theme="dark"] .enso-heat-frame__phase-tag {
    background: rgba(255, 255, 255, 0.1);
    color: #e2e8f0;
    border-color: rgba(255, 255, 255, 0.2);
}

.enso-heat-frame--peak .enso-heat-frame__phase-tag {
    background: rgba(239, 68, 68, 0.18);
    color: #b91c1c;
    border-color: rgba(239, 68, 68, 0.4);
}

[data-theme="dark"] .enso-heat-frame--peak .enso-heat-frame__phase-tag {
    color: #fca5a5;
}

.enso-heat-ocean {
    fill: rgba(30, 41, 59, 0.55);
}

[data-theme="light"] .enso-heat-ocean {
    fill: rgba(226, 232, 240, 0.65);
}

.enso-heat-land {
    fill: rgba(148, 163, 184, 0.28);
    stroke: rgba(148, 163, 184, 0.4);
    stroke-width: 0.3;
}

[data-theme="light"] .enso-heat-land {
    fill: rgba(100, 116, 139, 0.25);
    stroke: rgba(100, 116, 139, 0.4);
}

.enso-heat-equator {
    stroke: rgba(148, 163, 184, 0.4);
    stroke-width: 0.4;
    stroke-dasharray: 2 2;
}

.enso-heat-frame__oni {
    font-size: 0.85rem;
    font-weight: 600;
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
    display: inline-block;
    align-self: flex-start;
}

.enso-heat-frame__oni--warm {
    background: rgba(251, 146, 60, 0.18);
    color: #fdba74;
    border: 1px solid rgba(251, 146, 60, 0.35);
}

.enso-heat-frame__oni--hot {
    background: rgba(239, 68, 68, 0.18);
    color: #fca5a5;
    border: 1px solid rgba(239, 68, 68, 0.45);
}

.enso-heat-frame__oni--cool {
    background: rgba(252, 211, 77, 0.14);
    color: #fde68a;
    border: 1px solid rgba(252, 211, 77, 0.3);
}

.enso-heat-frame__oni--cold {
    background: rgba(59, 130, 246, 0.18);
    color: #93c5fd;
    border: 1px solid rgba(59, 130, 246, 0.4);
}

[data-theme="light"] .enso-heat-frame__oni--warm { color: #c2410c; }
[data-theme="light"] .enso-heat-frame__oni--hot  { color: #b91c1c; }
[data-theme="light"] .enso-heat-frame__oni--cool { color: #92400e; }
[data-theme="light"] .enso-heat-frame__oni--cold { color: #1e40af; }

.enso-heat-frame__desc {
    font-size: 0.82rem;
    line-height: 1.45;
    color: var(--text-primary);
    margin: 0;
}

.enso-heat-strip__caveat {
    margin-top: 0.85rem;
    font-size: 0.75rem;
    line-height: 1.45;
}
