/* =============================================
   STATS BAR — stats.css
   ============================================= */
.stats-bar {
  background: var(--accent);
  padding: 36px 5%;
  display: flex;
  justify-content: center;
}

.stat {
  flex: 1;
  text-align: center;
  padding: 12px 24px;
  border-right: 1px solid rgba(255,255,255,0.2);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}
.stat:last-child { border-right: none; }

.stat-num {
  font-family: var(--font-serif);
  font-size: 36px;
  color: var(--white);
  font-weight: 700;
  line-height: 1;
}
.stat-label {
  font-size: 13px;
  color: rgba(255,255,255,0.82);
  letter-spacing: 0.4px;
}
