/* ============================================
   LEOASTRODEN — LISTICLE PAGE STYLES
   Used on: things-only-leos-understand, best-jobs, leo-money-habits
   Requires: main.css loaded first
   ============================================ */

/* --- ARTICLE INTRO --- */
.article-intro {
  font-size: 19px;
  line-height: 1.7;
  color: var(--near-black);
  margin-bottom: var(--space-2xl);
}

/* --- NUMBERED LIST ITEMS --- */
.list-item {
  margin-bottom: var(--space-2xl);
  padding-bottom: var(--space-2xl);
  border-bottom: 1px solid var(--light-border);
}
.list-item:last-child { border-bottom: none; }
.list-item-header {
  display: flex;
  align-items: flex-start;
  gap: var(--space-md);
  margin-bottom: var(--space-md);
}
.list-number {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 48px;
  height: 48px;
  background: var(--leo-amber);
  color: var(--white);
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: 22px;
  flex-shrink: 0;
}
.list-item-title {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 22px;
  line-height: 1.25;
  color: var(--near-black);
  padding-top: 8px;
}
.list-item-body {
  font-size: 17px;
  line-height: 1.7;
  color: var(--near-black);
  padding-left: 64px;
}
.list-item-body p { margin-bottom: var(--space-md); }
.list-item-body p:last-child { margin-bottom: 0; }

/* --- CAREER PAGE: Trait Tags --- */
.trait-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: var(--space-sm);
}
.trait-tag {
  display: inline-block;
  padding: 2px 8px;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.trait-tag.leadership { background: var(--leo-amber-light); color: #92400E; }
.trait-tag.creative { background: var(--electric-purple-light); color: #5B21B6; }
.trait-tag.spotlight { background: #FEE2E2; color: #991B1B; }
.trait-tag.money { background: var(--success-green-light); color: #065F46; }
.trait-tag.independence { background: #DBEAFE; color: #1E40AF; }

/* --- CAREER PAGE: Career Match Box --- */
.career-match-box {
  background: linear-gradient(135deg, #FFF7ED, #FFEDD5);
  border: 2px solid var(--hot-orange);
  padding: var(--space-lg);
  margin-bottom: var(--space-2xl);
}
.career-match-box h3 {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 18px;
  margin-bottom: var(--space-md);
  display: flex;
  align-items: center;
  gap: var(--space-sm);
}
.career-match-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-md);
}
.career-match-col h4 {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--muted);
  margin-bottom: var(--space-sm);
}
.career-match-col ul {
  list-style: none;
  font-size: 14px;
  line-height: 1.8;
}

/* --- MONEY PAGE: Money Meter --- */
.money-meter {
  margin: var(--space-xl) 0;
  padding: var(--space-lg);
  border: 2px solid var(--light-border);
}
.money-meter h3 {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 18px;
  margin-bottom: var(--space-lg);
  text-align: center;
}
.meter-row {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  margin-bottom: var(--space-md);
}
.meter-row:last-child { margin-bottom: 0; }
.meter-label {
  width: 120px;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  flex-shrink: 0;
}
.meter-bar-bg { flex: 1; height: 24px; background: var(--off-white); }
.meter-bar-fill {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding-right: 8px;
  font-size: 12px;
  font-weight: 800;
  color: var(--white);
}
.meter-bar-fill.spend { background: var(--hot-orange); }
.meter-bar-fill.save { background: var(--success-green); }
.meter-bar-fill.gift { background: var(--leo-amber); }
.meter-bar-fill.invest { background: var(--electric-purple); }
.meter-bar-fill.impulse { background: var(--soft-pink); }

/* ============================================
   LISTICLE RESPONSIVE
   ============================================ */
@media (max-width: 768px) {
  .list-item-body { padding-left: 0; margin-top: var(--space-sm); }
  .list-item-header { gap: var(--space-sm); }
  .list-number { min-width: 40px; height: 40px; font-size: 18px; }
  .list-item-title { font-size: 19px; padding-top: 5px; }
  .meter-label { width: 80px; font-size: 12px; }
  .career-match-grid { grid-template-columns: 1fr; }
}
