@import url("guide-editorial-shared.css");

/* Toronto Condo guide — humidity rail + skyline hero class */
.guide-page--condo .condo-humidity-chart {
  margin-top: 8px;
  padding: 18px;
  border-radius: 16px;
  background: rgba(0, 0, 0, 0.35);
  border: 1px solid rgba(255, 255, 255, 0.06);
}
.guide-page--condo .hum-bar-row {
  display: grid;
  grid-template-columns: 62px minmax(0, 1fr) auto;
  gap: 12px;
  align-items: center;
  margin-bottom: 14px;
}
.guide-page--condo .hum-bar-row:last-child {
  margin-bottom: 0;
}
.guide-page--condo .hum-label {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.guide-page--condo .hum-value {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--text);
  font-variant-numeric: tabular-nums;
  white-space: nowrap;
}
.guide-page--condo .hum-track {
  height: 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
}
.guide-page--condo .hum-fill {
  height: 100%;
  border-radius: 999px;
}
.guide-page--condo .hum-fill--dry {
  width: 28%;
  background: linear-gradient(90deg, #4a6fa5, var(--oak));
}
.guide-page--condo .hum-fill--wet {
  width: 68%;
  background: linear-gradient(90deg, var(--oak), #5c8f7b);
}
