/* cars.zone - Cost-To-Own Estimator (hub 2598) - primary-result styling.
 * Per-post CSS pattern (2026-05-29): keeps calculator visuals scoped per-post and
 * avoids editing the 199KB cz-design.css for routine calculator work.
 * v1.0 2026-07-15 - the cz-calc-primary block is new; everything else reuses
 * existing global cz-calc-* styles from cz-design.css. */

.cz-calc-primary {
  display: block;
  text-align: center;
  padding: 26px 20px 22px;
  margin: 0 0 18px;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 10px;
}
.cz-calc-primary__lbl {
  display: block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #64748b;
  margin: 0 0 6px;
}
.cz-calc-primary__val {
  display: block;
  font-size: 46px;
  line-height: 1.1;
  font-weight: 800;
  color: #1a73e8;
  margin: 0 0 8px;
  font-variant-numeric: tabular-nums;
}
.cz-calc-primary__sub {
  display: block;
  font-size: 15px;
  color: #475569;
}
@media (max-width: 600px) {
  .cz-calc-primary { padding: 20px 14px 18px; }
  .cz-calc-primary__val { font-size: 34px; }
  .cz-calc-primary__sub { font-size: 14px; }
}

/* Key Insight block (v3.0) - turns the numbers into a decision. */
.cz-calc-insight {
  margin: 0 0 18px;
  padding: 18px 20px;
  background: #f1f7fe;
  border-left: 3px solid #1a73e8;
  border-radius: 0 8px 8px 0;
}
.cz-calc-insight__lbl {
  margin: 0 0 10px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #1a73e8;
}
.cz-calc-insight__list {
  margin: 0;
  padding: 0;
  list-style: none;
}
.cz-calc-insight__list li {
  position: relative;
  padding: 0 0 0 22px;
  margin: 0 0 7px;
  font-size: 15px;
  line-height: 1.5;
  color: #334155;
}
.cz-calc-insight__list li:last-child { margin-bottom: 0; }
.cz-calc-insight__list li:before {
  content: "\2713";
  position: absolute;
  left: 0;
  top: 0;
  color: #1a73e8;
  font-weight: 700;
}
@media (max-width: 600px) {
  .cz-calc-insight { padding: 14px 16px; }
  .cz-calc-insight__list li { font-size: 14px; }
}
