      .plots-grid {
        display: grid;
        grid-template-columns: 1.25fr 1.05fr;
        gap: 16px;
        min-height: 0;
        align-items: stretch;
      }

      .plot-stack {
        display: grid;
        grid-template-rows: 1fr 1fr;
        gap: 16px;
        min-height: 0;
      }

      .heatmap-panel {
        position: relative;
        overflow: hidden;
        padding: 16px 16px 14px;
        background:
          radial-gradient(900px 360px at 18% 16%, rgba(233, 184, 15, 0.14), transparent 62%),
          radial-gradient(900px 360px at 86% 10%, rgba(9, 152, 168, 0.12), transparent 62%),
          rgba(255, 255, 255, 0.88);
      }

      .plot-panel {
        padding: 14px 14px 12px;
        position: relative;
        overflow: hidden;
        background:
          radial-gradient(820px 320px at 12% 18%, rgba(41, 28, 91, 0.10), transparent 62%),
          radial-gradient(820px 320px at 92% 8%, rgba(9, 152, 168, 0.10), transparent 62%),
          rgba(255, 255, 255, 0.88);
      }

      .plot-frame {
        position: relative;
        border-radius: 16px;
        overflow: hidden;
        border: 1px solid rgba(0, 0, 0, 0.08);
        background: rgba(255, 255, 255, 0.72);
        box-shadow: 0 14px 34px rgba(0, 0, 0, 0.06);
        padding: 14px;
      }

      .plot-frame--heatmap {
        aspect-ratio: 22 / 10;
        max-height: 520px;
      }

      .plot-frame--bar {
        aspect-ratio: 23 / 10;
        height: 240px;
      }

      .plot-img {
        width: 100%;
        height: 100%;
        object-fit: contain;
        display: block;
        filter: saturate(1.03) contrast(1.015);
      }

      .plot-img--heatmap {
        object-position: 50% 50%;
      }

      .plot-img--bar {
        object-position: 50% 50%;
      }

      .plot-note {
        display: flex;
        justify-content: space-between;
        gap: 12px;
        align-items: baseline;
        margin-top: 10px;
        color: rgba(0, 0, 0, 0.62);
        font-size: 12px;
      }

      .plot-note strong {
        color: var(--clr-purple);
      }

      .micro-legend {
        display: flex;
        flex-wrap: wrap;
        gap: 10px;
        margin-top: 12px;
        color: rgba(0, 0, 0, 0.64);
        font-size: 13px;
      }

      .micro-legend span {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        background: rgba(255, 255, 255, 0.88);
        border: 1px solid rgba(0, 0, 0, 0.08);
        padding: 7px 10px;
        border-radius: 999px;
        box-shadow: 0 12px 30px rgba(0, 0, 0, 0.06);
        font-weight: 800;
      }

      .model-legend {
        display: flex;
        flex-wrap: wrap;
        gap: 10px;
        margin-top: 10px;
      }

      .model-legend__item {
        display: inline-flex;
        align-items: center;
        gap: 10px;
        padding: 7px 12px;
        border-radius: 999px;
        background: rgba(255, 255, 255, 0.9);
        border: 1px solid rgba(0, 0, 0, 0.08);
        box-shadow: 0 12px 30px rgba(0, 0, 0, 0.06);
        font-weight: 800;
        font-size: 12.5px;
        color: rgba(0, 0, 0, 0.7);
      }

      .model-legend__icon {
        width: 26px;
        height: 26px;
        border-radius: 10px;
        object-fit: cover;
        background: rgba(255, 255, 255, 0.95);
        padding: 4px;
        box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.06);
      }

      @media (max-width: 1100px) {
        .plots-grid {
          grid-template-columns: 1fr;
        }

        .plot-frame--heatmap {
          height: 420px;
        }
      }
