/* Scene 2 — Loss-curve panel styles. Compact log-scale chart that lives
   beside the plot. No transitions on color/opacity/position. */

.s2-loss-title {
  font-family: "Iowan Old Style", Palatino, Georgia, serif;
  font-style: italic;
  font-size: 12.5px;
  color: var(--ink-secondary);
  text-align: center;
  margin: 0 0 4px;
}

.s2-loss-curve {
  width: 100%;
  height: auto;
  display: block;
}

.s2-loss-curve .grid line {
  stroke: var(--grid);
  stroke-dasharray: 1 3;
}

.s2-loss-curve .axis line {
  stroke: var(--axis);
  fill: none;
}

.s2-loss-curve .axis text {
  fill: var(--ink-secondary);
  font-size: 9.5px;
  font-family: "SF Mono", Menlo, monospace;
}

.s2-loss-curve .axis text.axis-label {
  font-family: "Iowan Old Style", Palatino, Georgia, serif;
  font-style: italic;
  font-size: 11px;
}

.s2-loss-curve .loss-line {
  fill: none;
  stroke: var(--fit);
  stroke-width: 1.6;
  stroke-linejoin: round;
  stroke-linecap: round;
}
