/* -------------------- Step 4: Dashboard mockup -------------------- */
.hw-dash {
  display: grid;
  grid-template-columns: 130px 1fr;
  flex: 1;
  min-height: 360px;
}
.hw-dash-side {
  background: var(--surface-cream);
  border-right: 1px solid var(--border);
  padding: 1rem 0.85rem;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}
.hw-dash-brand {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--heading);
  font-weight: 700;
  font-size: 0.92rem;
  letter-spacing: -0.01em;
}
.hw-dash-brand-mark {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: var(--primary);
  box-shadow: 0 0 10px rgba(15, 118, 110, 0.5);
}
.hw-dash-side ul { display: flex; flex-direction: column; gap: 0.15rem; }
.hw-dash-side li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.45rem 0.6rem;
  font-size: 0.78rem;
  color: var(--muted-strong);
  font-weight: 500;
  border-radius: 6px;
  cursor: default;
}
.hw-dash-side li.is-active {
  background: var(--primary);
  color: #FFFFFF;
  font-weight: 600;
}
.hw-dash-side-icon {
  font-size: 0.85rem;
  width: 14px;
  text-align: center;
  opacity: 0.85;
}
.hw-dash-main {
  padding: 1rem 1.1rem 1.2rem;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}
.hw-dash-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.5rem;
}
.hw-dash-stat {
  background: #FFFFFF;
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 0.6rem 0.7rem;
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
}
.hw-dash-stat strong {
  font-family: var(--serif-display);
  color: var(--primary-dark);
  font-size: 1.35rem;
  font-weight: 700;
  line-height: 1;
}
.hw-dash-stat span {
  font-size: 0.65rem;
  color: var(--muted);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.hw-dash-table { display: flex; flex-direction: column; gap: 0.4rem; }
.hw-dash-row {
  background: #FFFFFF;
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 0.6rem 0.85rem;
  display: grid;
  grid-template-columns: 1fr auto auto;
  align-items: center;
  gap: 0.65rem;
}
.hw-dash-row--booked { border-color: rgba(34, 197, 94, 0.4); background: linear-gradient(180deg, #FFFFFF 0%, #F0FDF4 100%); }
.hw-dash-name { font-size: 0.82rem; font-weight: 700; color: var(--heading); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; min-width: 0; }
.hw-dash-time { font-size: 0.7rem; color: var(--muted); white-space: nowrap; }
/* Narrow viewports: shrink sidebar + collapse stats to 2 columns so the
   dashboard mockup fits inside the 320–390px viewport. */
@media (max-width: 480px) {
  .hw-dash { grid-template-columns: 96px minmax(0, 1fr); min-height: 320px; }
  .hw-dash-side { padding: 0.85rem 0.6rem; gap: 0.65rem; }
  .hw-dash-brand { font-size: 0.82rem; }
  .hw-dash-side li { padding: 0.4rem 0.5rem; font-size: 0.72rem; gap: 0.4rem; }
  .hw-dash-main { padding: 0.85rem 0.85rem 1rem; gap: 0.7rem; }
  .hw-dash-stats { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 0.4rem; }
  .hw-dash-stat { padding: 0.5rem 0.55rem; }
  .hw-dash-stat strong { font-size: 1.05rem; }
  .hw-dash-stat span { font-size: 0.55rem; }
  .hw-dash-row { grid-template-columns: minmax(50px, 1fr) auto auto; padding: 0.55rem 0.7rem; gap: 0.45rem; }
  .hw-dash-row .hw-tag { font-size: 0.55rem; padding: 0.1rem 0.4rem; }
  .hw-dash-time { font-size: 0.65rem; }
  .hw-dash-name { font-size: 0.78rem; }
}
.section--dark .hw-feature-step-label,
.section--dark-glow .hw-feature-step-label { color: var(--primary-glow); }

