/* page-specific styles */

/* ───────────── AI HR VISUAL ───────────── */
.hr-dash { display: flex; flex-direction: column; gap: 10px; }
.hr-row {
  display: flex; align-items: center; gap: 12px;
  padding: 12px; background: var(--bg-alt); border-radius: 10px;
}
.hr-row-av {
  width: 36px; height: 36px; border-radius: 999px;
  background: var(--accent-soft); color: var(--accent-dark);
  display: flex; align-items: center; justify-content: center;
  font-size: 14px; font-weight: 600; flex-shrink: 0;
}
.hr-row-mid { flex: 1; min-width: 0; }
.hr-row-n { font-size: 13px; font-weight: 600; color: var(--ink); }
.hr-row-tag { font-family: var(--mono); font-size: 12px; color: var(--muted); margin-top: 2px; }
.hr-risk-pill {
  font-family: var(--mono); font-size: 12px;
  padding: 4px 8px; border-radius: 4px; font-weight: 600; letter-spacing: .04em;
}
.hr-risk-high { background: #fee5dc; color: #a23b1f; }
.hr-risk-mid { background: #fef4dc; color: #8a6914; }
.hr-row-good .hr-risk-pill { background: var(--accent-soft); color: var(--accent-dark); }
.hr-foot-int {
  display: flex; gap: 6px; flex-wrap: wrap;
  padding-top: 12px; border-top: 1px solid var(--border);
}
.hr-foot-int .mono {
  font-size: 12px; padding: 3px 7px;
  background: var(--accent-soft); color: var(--accent-dark);
  border-radius: 3px; letter-spacing: .04em;
}

/* ───────────── RESPONSIVE ───────────── */
@media (max-width: 375px) {
  .hr-row { padding: 10px; gap: 8px; }
  .hr-row-av { width: 32px; height: 32px; font-size: 12px; }
  .hr-row-n { font-size: 12px; }
  .hr-row-tag { font-size: 12px; }
  .hr-foot-int .mono { font-size: 8px; padding: 2px 5px; }
}
