/* course-visuals.css — course profile + build arc cards (matches Pace Perfect cream/green) */

.viz-card {
  background: #fbf9f3;
  border: 1px solid #ddd6c6;
  border-radius: 14px;
  padding: 1.1rem 1.25rem;
  margin: 1rem 0;
}

.viz-head {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 0.5rem;
}
.viz-head .label {
  font-size: 0.7rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #6b7265;
}
.viz-sub { font-size: 0.82rem; color: #6b7265; }

.viz-svg-wrap { width: 100%; }
.viz-profile-svg { width: 100%; height: auto; display: block; }
.viz-area { fill: #1f4a33; opacity: 0.13; }
.viz-line { stroke: #1f4a33; stroke-width: 2; }
.viz-axis { fill: #9a9788; font-size: 10px; font-family: inherit; }

.viz-strip { display: flex; gap: 3px; margin-top: 6px; }
.viz-seg {
  background: #e3ede2;
  border-radius: 5px;
  padding: 5px 7px;
  min-width: 0;
  overflow: hidden;
  flex-grow: 1;
}
.viz-seg-text {
  font-size: 0.68rem;
  color: #1f4a33;
  display: block;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.viz-seg-locked { background: #efe9db; border: 1px dashed #d8d0bc; }
.viz-seg-locked .viz-seg-text { color: #9a9788; }

.viz-note { font-size: 0.8rem; color: #6b7265; margin: 0.6rem 0 0; }

.viz-bars {
  display: flex;
  align-items: flex-end;
  gap: 3px;
  height: 110px;
  margin-top: 1.4rem;
}
.viz-bar { flex: 1; border-radius: 3px 3px 0 0; position: relative; min-height: 6px; }
.viz-bar-foundation { background: #b9d6bd; }
.viz-bar-threshold { background: #7fb08a; }
.viz-bar-race { background: #1f4a33; }
.viz-bar-taper { background: #cfc9b6; }
.viz-peak-label {
  position: absolute;
  top: -18px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 0.68rem;
  color: #6b7265;
  white-space: nowrap;
}

.viz-axis-row {
  display: flex;
  justify-content: space-between;
  font-size: 0.68rem;
  color: #9a9788;
  margin-top: 4px;
}

.viz-legend { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 0.6rem; }
.viz-legend-item { font-size: 0.72rem; color: #6b7265; display: inline-flex; align-items: center; gap: 5px; }
.viz-swatch { width: 10px; height: 10px; border-radius: 2px; display: inline-block; }
