/* ── LAYOUT ── */
.dash-root {
  display: flex;
  min-height: 100vh;
  background: var(--bg);
}

/* ── SIDEBAR ── */
.sidebar {
  width: 252px;
  flex-shrink: 0;
  background: linear-gradient(180deg, #070707 0%, #050505 100%);
  border-right: 1px solid rgba(212,175,55,0.07);
  display: flex;
  flex-direction: column;
  position: fixed;
  top: 0; left: 0; bottom: 0;
  z-index: 100;
  overflow-y: auto;
  box-shadow: 4px 0 32px rgba(0,0,0,0.5);
}

.sidebar-logo {
  display: flex; align-items: center; gap: 10px;
  padding: 22px 24px 18px;
  font-family: 'Playfair Display', serif;
  font-size: 17px; font-weight: 600; color: var(--text);
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.sidebar-logo .logo-mark {
  width: 32px; height: 32px; border-radius: 8px;
  background: transparent;        /* ← remove gold background */
  display: grid; place-items: center; flex-shrink: 0;
}
.sidebar-logo .logo-mark svg { width: 15px; height: 15px; }
.sidebar-logo .logo-mark img {
  width: 32px;
  height: 32px;
  object-fit: contain;
  border-radius: 8px;
  display: block;
}
/* ✅ FIX: make the img fill the logo-mark box properly */
.sidebar-logo .logo-mark img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 8px;
  display: block;
}

/* User block */
.sidebar-user {
  padding: 18px 16px;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  display: flex; align-items: center; gap: 11px;
}
.user-av {
  width: 38px; height: 38px; border-radius: 10px;
  background: rgba(212,175,55,0.12);
  border: 1px solid rgba(212,175,55,0.25);
  display: grid; place-items: center; flex-shrink: 0;
  font-family: 'Playfair Display', serif;
  font-size: 14px; font-weight: 600; color: var(--gold);
}
.user-name { font-size: 13.5px; font-weight: 600; color: var(--text); }
.user-role { font-size: 11.5px; color: var(--muted); margin-top: 1px; }
.user-badge {
  margin-left: auto;
  padding: 3px 8px; border-radius: 4px;
  background: rgba(212,175,55,0.1); border: 1px solid rgba(212,175,55,0.2);
  font-size: 10px; font-weight: 600; color: #C9A227; flex-shrink: 0;
}

/* Nav sections */
.sidebar-nav { flex: 1; padding: 16px 12px; }
.nav-section-label {
  font-size: 10.5px; font-weight: 500;
  color: var(--subtle); letter-spacing: 0.1em; text-transform: uppercase;
  padding: 0 10px; margin: 14px 0 7px;
}
.nav-section-label:first-child { margin-top: 0; }

.nav-item {
  display: flex; align-items: center; gap: 10px;
  padding: 9px 10px; border-radius: 9px;
  color: var(--muted); font-size: 13.5px; font-weight: 400;
  cursor: pointer; transition: all 0.18s;
  text-decoration: none; margin-bottom: 2px;
  border: 1px solid transparent;
}
.nav-item svg { width: 16px; height: 16px; flex-shrink: 0; stroke: currentColor; fill: none; stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; }
.nav-item:hover { color: var(--text); background: rgba(255,255,255,0.04); }
.nav-item.active {
  color: var(--gold);
  background: rgba(212,175,55,0.07);
  border-color: rgba(212,175,55,0.15);
  font-weight: 500;
}
.nav-item.active svg { stroke: var(--gold); }
.nav-badge {
  margin-left: auto;
  width: 20px; height: 20px; border-radius: 5px;
  background: rgba(212,175,55,0.1);
  display: grid; place-items: center;
  font-size: 10.5px; font-weight: 600; color: #C9A227;
}

/* Sidebar bottom */
.sidebar-bottom {
  padding: 14px 12px;
  border-top: 1px solid rgba(255,255,255,0.05);
}
.sidebar-bottom .nav-item { margin-bottom: 0; }

/* ── MAIN CONTENT ── */
.dash-main {
  margin-left: 252px;
  flex: 1;
  min-height: 100vh;
  display: flex; flex-direction: column;
}

/* Top bar */
.dash-topbar {
  height: 68px;
  background: rgba(6,6,6,0.92);
  backdrop-filter: blur(24px) saturate(180%);
  -webkit-backdrop-filter: blur(24px) saturate(180%);
  border-bottom: 1px solid rgba(212,175,55,0.08);
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 36px;
  position: sticky; top: 0; z-index: 50;
  box-shadow: 0 1px 0 rgba(212,175,55,0.06), 0 4px 24px rgba(0,0,0,0.4);
}
.topbar-left h1 {
  font-family: 'Playfair Display', serif;
  font-size: 19px; font-weight: 600; color: var(--text); letter-spacing: -0.01em;
}
.topbar-left h1 em { font-style: italic; color: var(--gold); }
.topbar-right { display: flex; align-items: center; gap: 12px; }

.topbar-search {
  display: flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 9px; padding: 7px 14px;
  transition: border-color 0.2s;
}
.topbar-search:focus-within { border-color: rgba(212,175,55,0.35); }
.topbar-search svg { width: 14px; height: 14px; stroke: var(--subtle); fill: none; stroke-width: 1.8; stroke-linecap: round; flex-shrink: 0; }
.topbar-search input {
  background: none; border: none; outline: none;
  color: var(--text); font-size: 13px; font-family: 'Inter', sans-serif;
  width: 180px;
}
.topbar-search input::placeholder { color: var(--subtle); }

.icon-btn {
  width: 36px; height: 36px; border-radius: 9px; border: none;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.07);
  display: grid; place-items: center; cursor: pointer;
  transition: background 0.2s, border-color 0.2s;
  position: relative;
}
.icon-btn svg { width: 16px; height: 16px; stroke: var(--muted); fill: none; stroke-width: 1.7; stroke-linecap: round; }
.icon-btn:hover { background: rgba(255,255,255,0.07); border-color: rgba(255,255,255,0.12); }
.notif-dot {
  position: absolute; top: 7px; right: 7px;
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--gold); border: 1.5px solid #0A0A0A;
}

.topbar-av {
  width: 34px; height: 34px; border-radius: 9px;
  background: rgba(212,175,55,0.12);
  border: 1px solid rgba(212,175,55,0.22);
  display: grid; place-items: center; cursor: pointer;
  font-family: 'Playfair Display', serif;
  font-size: 13px; font-weight: 600; color: var(--gold);
  transition: background 0.2s;
}
.topbar-av:hover { background: rgba(212,175,55,0.18); }

/* ── DASH BODY ── */
.dash-body { padding: 32px 36px; flex: 1; }

/* Welcome strip */
.welcome-strip {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 28px; flex-wrap: wrap; gap: 16px;
}
.welcome-strip h2 {
  font-family: 'Playfair Display', serif;
  font-size: 24px; font-weight: 600; color: var(--text);
  line-height: 1.2; letter-spacing: -0.015em;
}
.welcome-strip h2 em { font-style: italic; color: var(--gold); }
.welcome-strip p { font-size: 13.5px; color: var(--muted); margin-top: 4px; }
.welcome-actions { display: flex; gap: 10px; }

/* ── STAT CARDS ── */
.stat-row {
  display: grid; grid-template-columns: 1fr 1.6fr 1fr;
  gap: 16px; margin-bottom: 28px;
}
@media (max-width: 1100px) { .stat-row { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 400px)  { .stat-row { grid-template-columns: 1fr; } }
.stat-card {
  background: linear-gradient(135deg, rgba(20,20,20,0.9) 0%, rgba(12,12,12,0.95) 100%);
  border: 1px solid rgba(212,175,55,0.12);
  border-radius: 18px; padding: 24px;
  position: relative; overflow: hidden;
  transition: border-color 0.3s, transform 0.3s, box-shadow 0.3s;
  box-shadow: 0 4px 24px rgba(0,0,0,0.4);
}
.stat-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(212,175,55,0.2), transparent);
}
.stat-card:hover { border-color: rgba(212,175,55,0.35); transform: translateY(-3px); box-shadow: 0 12px 40px rgba(212,175,55,0.08), 0 4px 24px rgba(0,0,0,0.5); }

.stat-card-header {
  display: flex; align-items: flex-start; justify-content: space-between; margin-bottom: 14px;
}
.stat-icon {
  width: 36px; height: 36px; border-radius: 9px;
  background: rgba(212,175,55,0.08); border: 1px solid rgba(212,175,55,0.18);
  display: grid; place-items: center;
}
.stat-icon svg { width: 15px; height: 15px; stroke: var(--gold); fill: none; stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; }
.stat-trend {
  font-size: 11.5px; font-weight: 500; padding: 3px 8px; border-radius: 5px;
  display: flex; align-items: center; gap: 4px;
}
.stat-trend.up   { background: rgba(46,107,62,0.15);  color: #4CAF70; }
.stat-trend.down { background: rgba(107,44,44,0.15);  color: #CF6679; }
.stat-trend.neu  { background: rgba(255,255,255,0.05); color: var(--muted); }
.stat-num {
  font-family: 'Playfair Display', serif;
  font-size: 34px; font-weight: 700; color: var(--text);
  letter-spacing: -0.03em; line-height: 1; margin-bottom: 5px;
  background: linear-gradient(135deg, #fff 30%, #D4AF37 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.stat-lbl { font-size: 12.5px; color: var(--muted); font-weight: 400; }

/* ── MAIN GRID ── */
.dash-grid {
  display: grid; grid-template-columns: 1fr 340px;
  gap: 20px; margin-bottom: 20px;
}
@media (max-width: 1100px) { .dash-grid { grid-template-columns: 1fr; } }

/* ── CAREER MATCHES CARD ── */
.d-card {
  background: linear-gradient(160deg, rgba(18,18,18,0.95) 0%, rgba(10,10,10,0.98) 100%);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 18px; overflow: hidden;
  position: relative;
  box-shadow: 0 4px 32px rgba(0,0,0,0.35);
  transition: border-color 0.3s, box-shadow 0.3s;
}
.d-card:hover { border-color: rgba(212,175,55,0.15); box-shadow: 0 8px 48px rgba(0,0,0,0.5); }
.d-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(212,175,55,0.18), transparent);
}
.d-card-head {
  display: flex; align-items: center; justify-content: space-between;
  padding: 20px 22px 0;
}
.d-card-title {
  font-size: 14px; font-weight: 600; color: var(--text); letter-spacing: -0.01em;
}
.d-card-sub { font-size: 12px; color: var(--muted); margin-top: 2px; }
.d-card-action {
  font-size: 12.5px; color: #9A7E2A; font-weight: 500;
  background: none; border: none; cursor: pointer; transition: color 0.2s;
  padding: 4px 0;
}
.d-card-action:hover { color: var(--gold); }
.d-card-body { padding: 16px 22px 22px; }

/* Career match rows */
.career-match {
  display: flex; align-items: center; gap: 14px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255,255,255,0.04);
  cursor: pointer; transition: background 0.18s;
  border-radius: 8px; margin: 0 -8px; padding-left: 8px; padding-right: 8px;
}
.career-match:last-child { border-bottom: none; }
.career-match:hover { background: rgba(255,255,255,0.02); }

.cm-icon {
  width: 40px; height: 40px; border-radius: 10px; flex-shrink: 0;
  display: grid; place-items: center; font-size: 18px;
}
.cm-info { flex: 1; min-width: 0; }
.cm-title { font-size: 13.5px; font-weight: 500; color: var(--text); margin-bottom: 3px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.cm-meta  { font-size: 12px; color: var(--muted); }
.cm-score { text-align: right; flex-shrink: 0; }
.cm-pct {
  font-family: 'Playfair Display', serif;
  font-size: 18px; font-weight: 600; color: var(--gold); line-height: 1;
}
.cm-pct-sub { font-size: 10.5px; color: var(--muted); margin-top: 1px; }
.cm-bar-row { display: flex; align-items: center; gap: 10px; margin-top: 6px; }
.cm-bar-bg { flex: 1; height: 3px; background: rgba(255,255,255,0.06); border-radius: 100px; overflow: hidden; }
.cm-bar-fill { height: 100%; border-radius: 100px; background: linear-gradient(90deg, #8B6914, var(--gold)); }

/* ── READINESS CARD ── */
.readiness-ring-wrap { display: flex; flex-direction: column; align-items: center; padding: 20px 22px; position: relative; }
.ring-svg { width: 130px; height: 130px; }
.ring-center { text-align: center; margin-top: -4px; }
.ring-num {
  font-family: 'Playfair Display', serif;
  font-size: 32px; font-weight: 600; color: var(--gold); line-height: 1;
}
.ring-lbl { font-size: 12px; color: var(--muted); margin-top: 3px; }
.ring-stats { display: flex; gap: 0; width: 100%; border-top: 1px solid rgba(255,255,255,0.05); margin-top: 16px; }
.ring-stat { flex: 1; text-align: center; padding: 14px 8px; border-right: 1px solid rgba(255,255,255,0.05); }
.ring-stat:last-child { border-right: none; }
.ring-stat-num { font-size: 16px; font-weight: 600; color: var(--text); font-family: 'Playfair Display', serif; }
.ring-stat-lbl { font-size: 11px; color: var(--muted); margin-top: 2px; }

/* ── SKILLS GRID ── */
.skills-section-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 20px; margin-bottom: 20px;
}
@media (max-width: 900px) { .skills-section-grid { grid-template-columns: 1fr; } }

/* skill rows in gap analysis */
.skill-gap-row {
  display: flex; align-items: center; gap: 12px;
  padding: 11px 0; border-bottom: 1px solid rgba(255,255,255,0.04);
}
.skill-gap-row:last-child { border-bottom: none; }
.sg-name { font-size: 13px; color: var(--text); min-width: 110px; }
.sg-bar-bg { flex: 1; height: 5px; background: rgba(255,255,255,0.06); border-radius: 100px; overflow: hidden; }
.sg-bar-fill { height: 100%; border-radius: 100px; transition: width 1s ease; }
.sg-bar-fill.have { background: linear-gradient(90deg, #1a5c2e, #2E6B3E); }
.sg-bar-fill.gap  { background: linear-gradient(90deg, #5c3a00, #8B6914); }
.sg-pct { font-size: 12px; font-weight: 500; min-width: 32px; text-align: right; }
.sg-pct.have { color: #4CAF70; }
.sg-pct.gap  { color: #C9A227; }
.sg-tag {
  font-size: 10.5px; font-weight: 500; padding: 2px 8px; border-radius: 4px;
  min-width: 46px; text-align: center;
}
.sg-tag.have { background: rgba(46,107,62,0.12); color: #4CAF70; }
.sg-tag.gap  { background: rgba(139,105,20,0.12); color: #C9A227; }

/* ── JOBS LIST ── */
.job-row {
  display: flex; align-items: flex-start; gap: 13px;
  padding: 15px 0; border-bottom: 1px solid rgba(255,255,255,0.04);
  cursor: pointer; transition: background 0.15s;
  border-radius: 8px; margin: 0 -8px; padding-left: 8px; padding-right: 8px;
}
.job-row:last-child { border-bottom: none; }
.job-row:hover { background: rgba(255,255,255,0.02); }
.job-logo {
  width: 38px; height: 38px; border-radius: 9px; flex-shrink: 0;
  background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.07);
  display: grid; place-items: center; font-size: 16px;
}
.job-info { flex: 1; min-width: 0; }
.job-title { font-size: 13.5px; font-weight: 500; color: var(--text); margin-bottom: 3px; }
.job-company { font-size: 12px; color: var(--muted); }
.job-tags { display: flex; gap: 6px; margin-top: 7px; flex-wrap: wrap; }
.job-tag {
  font-size: 10.5px; padding: 2px 8px; border-radius: 4px;
  background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.07);
  color: var(--muted);
}
.job-right { text-align: right; flex-shrink: 0; }
.job-match {
  font-family: 'Playfair Display', serif;
  font-size: 16px; font-weight: 600; color: var(--gold);
}
.job-match-sub { font-size: 10.5px; color: var(--muted); margin-top: 1px; }
.job-save-btn {
  margin-top: 8px; background: none; border: none;
  color: var(--subtle); cursor: pointer; font-size: 14px;
  transition: color 0.2s;
}
.job-save-btn:hover { color: var(--gold); }

/* ── ACTIVITY ── */
.activity-list { display: flex; flex-direction: column; gap: 0; }
.activity-item {
  display: flex; gap: 13px; padding: 13px 0;
  border-bottom: 1px solid rgba(255,255,255,0.04);
}
.activity-item:last-child { border-bottom: none; }
.activity-dot-wrap { display: flex; flex-direction: column; align-items: center; gap: 0; padding-top: 3px; }
.activity-dot {
  width: 8px; height: 8px; border-radius: 50%; flex-shrink: 0;
}
.activity-dot.gold  { background: var(--gold); }
.activity-dot.green { background: #2E6B3E; }
.activity-dot.muted { background: var(--subtle); }
.activity-line { flex: 1; width: 1px; background: rgba(255,255,255,0.05); margin-top: 4px; }
.activity-item:last-child .activity-line { display: none; }
.activity-text { font-size: 13px; color: var(--text); line-height: 1.5; }
.activity-time { font-size: 11.5px; color: var(--muted); margin-top: 3px; }

/* ── QUICK ACTIONS ── */
.quick-actions {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 12px; margin-bottom: 20px;
}
@media (max-width: 900px) { .quick-actions { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 400px)  { .quick-actions { grid-template-columns: 1fr 1fr; gap: 8px; } }
@media (max-width: 900px)  { .quick-actions .qa-sub { display: none; } }

.qa-btn {
  background: linear-gradient(135deg, rgba(20,20,20,0.9), rgba(14,14,14,0.95));
  border: 1px solid rgba(212,175,55,0.1);
  border-radius: 14px; padding: 18px; cursor: pointer;
  transition: border-color 0.3s, background 0.3s, transform 0.2s, box-shadow 0.3s;
  text-align: left;
  position: relative; overflow: hidden;
  box-shadow: 0 2px 16px rgba(0,0,0,0.3);
}
.qa-btn:hover { border-color: rgba(212,175,55,0.3); background: linear-gradient(135deg, rgba(30,25,10,0.6), rgba(20,18,8,0.8)); transform: translateY(-3px); box-shadow: 0 10px 36px rgba(212,175,55,0.07), 0 4px 20px rgba(0,0,0,0.4); }
.qa-btn::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(212,175,55,0.15), transparent);
}
.qa-btn:hover { border-color: var(--border-g); background: #141414; transform: translateY(-2px); }
.qa-icon {
  width: 32px; height: 32px; border-radius: 8px; margin-bottom: 12px;
  background: rgba(212,175,55,0.08); border: 1px solid rgba(212,175,55,0.18);
  display: grid; place-items: center;
}
.qa-icon svg { width: 14px; height: 14px; stroke: var(--gold); fill: none; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.qa-label { font-size: 13px; font-weight: 500; color: var(--text); }
.qa-sub   { font-size: 11.5px; color: var(--muted); margin-top: 3px; }

/* ── PROFILE COMPLETION ── */
.profile-bar-wrap { margin-bottom: 8px; }
.profile-bar-header { display: flex; justify-content: space-between; margin-bottom: 8px; }
.profile-bar-label { font-size: 13px; color: var(--muted); }
.profile-bar-pct   { font-size: 13px; font-weight: 600; color: var(--gold); }
.profile-bar-bg { height: 6px; background: rgba(255,255,255,0.06); border-radius: 100px; overflow: hidden; }
.profile-bar-fill { height: 100%; border-radius: 100px; background: linear-gradient(90deg, #8B6914, var(--gold)); }
.profile-items { display: flex; flex-direction: column; gap: 10px; margin-top: 16px; }
.profile-item { display: flex; align-items: center; gap: 10px; font-size: 13px; }
.pi-check {
  width: 18px; height: 18px; border-radius: 5px; flex-shrink: 0;
  display: grid; place-items: center; font-size: 10px;
}
.pi-check.done { background: rgba(46,107,62,0.15); color: #4CAF70; border: 1px solid rgba(46,107,62,0.25); }
.pi-check.todo { background: rgba(255,255,255,0.04); color: var(--subtle); border: 1px solid rgba(255,255,255,0.08); }
.pi-label { color: var(--text); }
.pi-label.todo { color: var(--muted); }

/* ── BOTTOM ROW ── */
.dash-bottom-row {
  display: grid; grid-template-columns: 1fr 340px;
  gap: 20px;
}
@media (max-width: 760px) { .dash-bottom-row { grid-template-columns: 1fr; } }
@media (max-width: 760px)  { .dash-bottom-row { grid-template-columns: 1fr; } }

/* ── RESPONSIVE SIDEBAR ── */
@media (max-width: 900px) {
  .dash-main { margin-left: 0; }
}


.qa-badge {
  margin-top: 6px;
  font-size: 10px;
  background: rgba(212,175,55,0.12);
  color: #C9A227;
  border: 1px solid rgba(212,175,55,0.2);
  padding: 2px 8px;
  border-radius: 4px;
  display: inline-block;
}

@media (max-width: 900px) {
  .sidebar {
    transform: translateX(-100%);
    transition: transform 0.3s ease;
    display: flex;
  }
  .sidebar.open { transform: translateX(0); }

  .sidebar-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.6);
    z-index: 99;
    backdrop-filter: blur(2px);
  }
  .sidebar-overlay.open { display: block; }

  .dash-topbar-menu-btn {
    display: flex;
    align-items: center;
    width: 34px; height: 34px;
    border-radius: 8px;
    border: 1px solid rgba(255,255,255,0.07);
    background: rgba(255,255,255,0.04);
    place-items: center; cursor: pointer;
  }
  .dash-topbar-menu-btn svg {
    width: 16px; height: 16px;
    stroke: var(--muted);
    fill: none; stroke-width: 1.7;
    stroke-linecap: round;
  }
}

@media (min-width: 901px) {
  .dash-topbar-menu-btn { display: none; }
}

@media (max-width: 600px) {
  .dash-body { padding: 20px 16px; }
  .dash-topbar { padding: 0 16px; }
  .topbar-search { display: none; }
  .stat-row { grid-template-columns: 1fr 1fr; gap: 12px; }
  .stat-num { font-size: 24px; }
  .welcome-strip h2 { font-size: 20px; }
  .welcome-actions { width: 100%; }
  .welcome-actions .btn-primary { flex: 1; justify-content: center; }
}

.stat-top-role-row {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  color: var(--text-muted, #A1A1AA);
}
.stat-role-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  flex-shrink: 0;
}
.stat-role-name {
  flex: 1;
  color: #E5E5E5;
  font-size: 12px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.stat-role-pct {
  font-size: 12px;
  font-weight: 700;
  color: var(--gold, #D4AF37);
}
.stat-card-wide {
  grid-column: span 1;
}
