.canvas {
  width: 100%;
  
  height: auto;
  background: #ffffff;
  overflow: visible;
  flex-shrink: 0;
  position: relative;
  transform-origin: center center;
  box-shadow: 0px 4px 20px rgba(0, 0, 0, 0.05);
  padding: 20px;
  border: 1px solid #ddd;
    border-radius: 10px;
    margin-bottom: 10px;
}

.content {
 
  height: 100%;
  display: flex;
  flex-direction: column;
}

.title-block { margin-bottom: 10px; }

.canvas h1.post-title {
    font-family: var(--font2) !important;
    font-size: 25px;
    white-space: nowrap;
    font-weight: 700;
    color: #0051AF;
    line-height: 1.15;
    margin-bottom: 9px;
}
.canvas p.post-subtitle {
    font-family: var(--font1);
    font-size: 18px;
    font-weight: 400;
    color: #000;
    line-height: 1.5;
}

.kpi-row {
  display: flex;
  gap: 10px;
  margin-top: 14px;
  margin-bottom: 12px;
  
}

.kpi-box {
  flex: 1;
  background: #F4F7FB;
  border-radius: 6px;
  padding: 9px 13px 8px 13px;
  border-top: 3px solid #0051AF;
  transition: box-shadow 0.2s;
  cursor: default;
}

.kpi-box:hover {
  box-shadow: 0 2px 10px rgba(0,81,175,0.12);
}

.kpi-box.highlight {
  box-shadow: 0 0 0 2px #0051AF, 0 4px 16px rgba(0,81,175,0.22);
  background: #E6EEF9;
}

.kpi-box.estimate.highlight {
  box-shadow: 0 0 0 2px #FFC400, 0 4px 16px rgba(255,196,0,0.25);
  background: #FFF8E1;
}

.kpi-box.estimate { border-top-color: #FFC400; }
.kpi-box.estimate .kpi-label { color: #8A6A00; }

.kpi-label {
  font-size: 11.5px;
  font-weight: 600;
  color: #0051AF;
  text-transform: uppercase;
  letter-spacing: 0.3px;
  margin-bottom: 3px;
}

.kpi-value {
  font-size: 22px;
  font-weight: 700;
  color: #1a1a1a;
  line-height: 1;
}

.kpi-sub {
  font-size: 12px;
  color: #777;
  margin-top: 3px;
}

.legend {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  margin: 18px 0 4px 0;
}

.legend-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 500;
  color: #444444;
}

.swatch {
  width: 28px;
  height: 14px;
  border-radius: 3px;
  flex-shrink: 0;
}

.swatch-line {
  width: 28px;
  height: 3px;
  border-radius: 2px;
  background: #555555;
  flex-shrink: 0;
}

.chart-area {
  flex: 0 0 335px;
  height: 335px;
  position: relative;
  margin-top: 10px;
}

.axis-label-left {
  position: absolute;
  left: -42px;
  top: 50%;
  transform: translateY(-50%) rotate(-90deg);
  font-size: 12px;
  color: #777;
  white-space: nowrap;
}

.axis-label-right {
  position: absolute;
  right: -48px;
  top: 50%;
  transform: translateY(-50%) rotate(90deg);
  font-size: 12px;
  color: #777;
  white-space: nowrap;
}

.spacer { flex: 1; }

.notes {
  margin-top: 0;
  font-size: 15px;
  font-weight: 400;
  color: #444444;
  line-height: 1.6;
}
.notes p{
    font-size: 17px !important;
}
.notes p:last-child {
  margin-bottom: 0;
}

.notes strong {
  color: #333333;
  font-weight: 700;
}