/* ================================================================
   TVACU Financial Wellness — Main Stylesheet
   ================================================================ */

/* ===== DESIGN TOKENS ===== */
:root {
  --tvacu-navy:       #1A2744;
  --tvacu-blue:       #2A5FA5;
  --tvacu-light-blue: #4A8FD4;
  --tvacu-sky:        #E8F1FA;
  --tvacu-gold:       #C8A84E;
  --tvacu-crimson:    #9E1B32;
  --tvacu-warm-white: #FAF9F7;
  --tvacu-sand:       #F3F0EA;
  --tvacu-text:       #2C3041;
  --tvacu-text-light: #5A6178;
  --tvacu-border:     #DDE3EC;
  --serif: 'Playfair Display', Georgia, serif;
  --sans:  'Source Sans 3', -apple-system, sans-serif;
}

/* ===== RESET & BASE ===== */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.6;
  color: var(--tvacu-text);
  background: var(--tvacu-warm-white);
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { transition: color 0.2s; }

.container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ===== TOP BAR ===== */
.top-bar {
  background: var(--tvacu-navy);
  padding: 8px 0;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.7);
}
.top-bar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.top-bar a {
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
  margin-left: 20px;
  transition: color 0.2s;
}
.top-bar a:hover { color: var(--tvacu-gold); }
.top-bar .ncua { font-size: 11px; opacity: 0.6; }
.top-bar-links { display: flex; align-items: center; }

/* ===== HEADER / NAV ===== */
header {
  background: white;
  border-bottom: 1px solid var(--tvacu-border);
  padding: 16px 0;
  position: sticky;
  top: 0;
  z-index: 900;
  box-shadow: 0 2px 20px rgba(26, 39, 68, 0.06);
}
header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo-area {
  display: flex;
  align-items: center;
  text-decoration: none;
}
.logo-img {
  height: 48px;
  width: auto;
  display: block;
}
.footer-logo {
  height: 44px;
  width: auto;
  display: block;
  background: white;
  padding: 8px 12px;
  border-radius: 8px;
  margin-bottom: 12px;
}

nav {
  display: flex;
  gap: 24px;
  align-items: center;
}
nav a {
  font-size: 14.5px;
  font-weight: 600;
  color: var(--tvacu-text);
  text-decoration: none;
  transition: color 0.2s;
  position: relative;
}
nav a:hover { color: var(--tvacu-blue); }
nav a.active { color: var(--tvacu-blue); }
nav a.active::after {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--tvacu-blue);
  border-radius: 1px;
}

.cta-subscribe {
  background: var(--tvacu-blue) !important;
  color: white !important;
  padding: 10px 22px;
  border-radius: 8px;
  font-weight: 600 !important;
  font-size: 14px !important;
  transition: all 0.2s;
}
.cta-subscribe:hover {
  background: var(--tvacu-navy) !important;
}
.cta-subscribe::after { display: none !important; }

/* Mobile nav toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  background: none;
  border: none;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--tvacu-text);
  border-radius: 2px;
  transition: all 0.3s;
}

/* ===== SHARED BUTTONS ===== */
.btn-primary {
  background: var(--tvacu-gold);
  color: var(--tvacu-navy);
  padding: 14px 30px;
  border-radius: 10px;
  font-weight: 700;
  font-size: 15px;
  text-decoration: none;
  transition: all 0.25s;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.btn-primary:hover {
  background: #d4b65e;
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(200, 168, 78, 0.3);
  color: var(--tvacu-navy);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: white;
  padding: 14px 30px;
  border-radius: 10px;
  font-weight: 600;
  font-size: 15px;
  text-decoration: none;
  transition: all 0.25s;
}
.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.18);
  color: white;
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 28px;
  border: 2px solid var(--tvacu-blue);
  color: var(--tvacu-blue);
  border-radius: 10px;
  font-weight: 700;
  font-size: 15px;
  text-decoration: none;
  transition: all 0.25s;
}
.btn-outline:hover {
  background: var(--tvacu-blue);
  color: white;
}

/* ===== SECTION SHARED ===== */
.section-header {
  text-align: center;
  margin-bottom: 48px;
}
.section-tag {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--tvacu-blue);
  margin-bottom: 12px;
}
.section-header h2 {
  font-family: var(--serif);
  font-size: 36px;
  font-weight: 700;
  color: var(--tvacu-navy);
  margin-bottom: 14px;
}
.section-header p {
  font-size: 17px;
  color: var(--tvacu-text-light);
  max-width: 580px;
  margin: 0 auto;
  line-height: 1.6;
}

/* ===== PAGE BANNER (inner pages) ===== */
.page-banner {
  background: linear-gradient(165deg, var(--tvacu-navy) 0%, #1e3562 55%, var(--tvacu-blue) 100%);
  padding: 56px 0 60px;
  position: relative;
  overflow: hidden;
}
.page-banner::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(200, 168, 78, 0.1) 0%, transparent 70%);
  border-radius: 50%;
}
.page-banner::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--tvacu-gold), var(--tvacu-crimson), var(--tvacu-gold));
}
.page-banner .container { position: relative; z-index: 1; }
.page-banner-tag {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--tvacu-gold);
  margin-bottom: 12px;
}
.page-banner h2 {
  font-family: var(--serif);
  font-size: 40px;
  font-weight: 700;
  color: white;
  margin-bottom: 14px;
  line-height: 1.15;
}
.page-banner p {
  font-size: 17px;
  color: rgba(255, 255, 255, 0.72);
  max-width: 560px;
  line-height: 1.65;
}

/* ===== HERO ===== */
.hero {
  background: linear-gradient(165deg, var(--tvacu-navy) 0%, #1e3562 55%, var(--tvacu-blue) 100%);
  padding: 80px 0 90px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(200, 168, 78, 0.12) 0%, transparent 70%);
  border-radius: 50%;
}
.hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 6px;
  background: linear-gradient(90deg, var(--tvacu-gold), var(--tvacu-crimson), var(--tvacu-gold));
}
.hero .container { position: relative; z-index: 1; }
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 60px;
  align-items: center;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  padding: 8px 16px;
  border-radius: 50px;
  color: var(--tvacu-gold);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.5px;
  margin-bottom: 24px;
}
.hero-badge .dot {
  width: 6px;
  height: 6px;
  background: var(--tvacu-gold);
  border-radius: 50%;
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}
.hero h2 {
  font-family: var(--serif);
  font-size: 48px;
  font-weight: 700;
  color: white;
  line-height: 1.15;
  margin-bottom: 20px;
}
.hero h2 em {
  font-style: italic;
  color: var(--tvacu-gold);
}
.hero p {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.65;
  max-width: 520px;
  margin-bottom: 32px;
}
.hero-actions { display: flex; gap: 14px; }

/* Hero rate card */
.hero-card {
  background: var(--tvacu-navy);
  border-radius: 16px;
  padding: 28px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.25);
  position: relative;
}
.hero-card::before {
  content: 'FREE FOR EVERYONE';
  position: absolute;
  top: -12px;
  left: 28px;
  background: var(--tvacu-crimson);
  color: white;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  padding: 5px 14px;
  border-radius: 6px;
}
.rate-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 0;
  border-bottom: 1px solid var(--tvacu-border);
}
.rate-row:last-child { border-bottom: none; }
.rate-label { font-size: 14px; color: var(--tvacu-text-light); font-weight: 500; }
.rate-values { display: flex; gap: 16px; align-items: baseline; }
.rate-national { font-size: 13px; color: #aaa; text-decoration: line-through; }
.rate-tvacu { font-size: 22px; font-weight: 700; color: var(--tvacu-blue); }
.rate-tvacu small { font-size: 12px; color: var(--tvacu-text-light); font-weight: 500; }
.rate-arrow { color: #27ae60; font-size: 13px; font-weight: 700; }
.hero-card-footer {
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid var(--tvacu-border);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.hero-card-footer span { font-size: 12px; color: #aaa; }
.hero-card-footer a { font-size: 13px; color: var(--tvacu-blue); font-weight: 600; text-decoration: none; }
.hero-card-footer a:hover { color: var(--tvacu-navy); }

/* ===== LOCAL PULSE ===== */
.local-section { padding: 80px 0; background: white; }
.local-ticker {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
  margin-bottom: 40px;
}
.ticker-item {
  background: var(--tvacu-sand);
  border-radius: 12px;
  padding: 18px;
  text-align: center;
  border: 1px solid var(--tvacu-border);
  transition: all 0.2s;
}
.ticker-item:hover {
  border-color: var(--tvacu-light-blue);
  transform: translateY(-2px);
}
.ticker-emoji { font-size: 22px; margin-bottom: 6px; display: block; }
.ticker-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  color: var(--tvacu-text-light);
  margin-bottom: 4px;
}
.ticker-value {
  font-size: 20px;
  font-weight: 800;
  color: var(--tvacu-navy);
  font-family: var(--serif);
}
.ticker-sub { font-size: 11px; color: var(--tvacu-text-light); margin-top: 2px; }

.local-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 28px;
}
.local-headline {
  background: var(--tvacu-sand);
  border-radius: 14px;
  padding: 24px;
  border: 1px solid var(--tvacu-border);
  margin-bottom: 14px;
  transition: all 0.2s;
}
.local-headline:hover { border-color: var(--tvacu-light-blue); }
.local-headline:last-child { margin-bottom: 0; }
.hl-tag {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 6px;
}
.hl-tag.economy { color: var(--tvacu-blue); }
.hl-tag.campus  { color: var(--tvacu-crimson); }
.hl-tag.housing { color: #27ae60; }
.local-headline h3 {
  font-family: var(--serif);
  font-size: 17px;
  font-weight: 700;
  color: var(--tvacu-navy);
  margin-bottom: 5px;
  line-height: 1.3;
}
.local-headline p { font-size: 13.5px; color: var(--tvacu-text-light); line-height: 1.5; }

.local-sidebar {
  background: var(--tvacu-navy);
  border-radius: 14px;
  padding: 28px;
  color: white;
}
.local-sidebar h3 {
  font-family: var(--serif);
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 18px;
  color: var(--tvacu-gold);
}
.bama-score {
  background: rgba(158, 27, 50, 0.3);
  border: 1px solid rgba(158, 27, 50, 0.5);
  border-radius: 10px;
  padding: 16px;
  margin-bottom: 16px;
  text-align: center;
}
.bama-score .teams { font-size: 14px; font-weight: 600; margin-bottom: 4px; }
.bama-score .score {
  font-size: 28px;
  font-weight: 800;
  color: var(--tvacu-gold);
  font-family: var(--serif);
}
.bama-score .label { font-size: 11px; color: rgba(255, 255, 255, 0.5); margin-top: 4px; }
.sidebar-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 14px;
}
.sidebar-item:last-child { border-bottom: none; }
.sidebar-item span:first-child { color: rgba(255, 255, 255, 0.6); }
.sidebar-item span:last-child { font-weight: 600; }

/* ===== MONDAY / TVACU TIDE BRIEFING ===== */
.briefing-section { padding: 80px 0; background: var(--tvacu-sky); }
.briefing-preview {
  background: white;
  border-radius: 16px;
  padding: 40px;
  max-width: 700px;
  margin: 0 auto;
  position: relative;
  border: 1px solid var(--tvacu-border);
  box-shadow: 0 8px 32px rgba(42, 95, 165, 0.08);
}
.email-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
  padding-bottom: 20px;
  border-bottom: 2px solid var(--tvacu-navy);
}
.email-logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}
.email-logo img {
  height: 36px;
  width: auto;
  display: block;
}
.email-from h4 { font-size: 15px; font-weight: 700; color: var(--tvacu-navy); }
.email-from p  { font-size: 12px; color: var(--tvacu-text-light); }
.email-subject {
  font-family: var(--serif);
  font-size: 24px;
  font-weight: 700;
  color: var(--tvacu-navy);
  margin-bottom: 20px;
  line-height: 1.3;
}
.email-body-item {
  display: flex;
  gap: 14px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  align-items: flex-start;
}
.email-body-item:last-child { border-bottom: none; }
.email-icon {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  flex-shrink: 0;
  margin-top: 2px;
}
.email-icon.rates  { background: #e8f5e9; }
.email-icon.local  { background: #fff3e0; }
.email-icon.tip    { background: #e3f2fd; }
.email-icon.bama   { background: var(--tvacu-crimson); color: white; font-size: 13px; font-weight: 800; }
.email-body-item h5 { font-size: 14px; font-weight: 700; color: var(--tvacu-text); margin-bottom: 3px; }
.email-body-item p  { font-size: 13px; color: var(--tvacu-text-light); line-height: 1.5; }
.briefing-cta { text-align: center; margin-top: 32px; }

/* ===== FINANCIAL HEALTH SCORE ===== */
.fhs-section { padding: 80px 0; background: white; overflow: hidden; }
.fhs-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.fhs-content h2 {
  font-family: var(--serif);
  font-size: 34px;
  font-weight: 700;
  color: var(--tvacu-navy);
  margin-bottom: 16px;
  line-height: 1.2;
}
.fhs-content > p {
  font-size: 17px;
  color: var(--tvacu-text-light);
  line-height: 1.65;
  margin-bottom: 24px;
}
.fhs-features { list-style: none; margin-bottom: 28px; }
.fhs-features li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 14px;
  font-size: 15px;
  color: var(--tvacu-text);
  line-height: 1.5;
}
.fhs-check {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: #e8f5e9;
  color: #27ae60;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 800;
  flex-shrink: 0;
  margin-top: 1px;
}

.fhs-widget {
  background: linear-gradient(160deg, var(--tvacu-navy), #1e3a65);
  border-radius: 20px;
  padding: 36px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(26, 39, 68, 0.25);
}
.fhs-widget::before {
  content: '';
  position: absolute;
  top: -40%;
  right: -30%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(200, 168, 78, 0.12), transparent 70%);
  border-radius: 50%;
}
.fhs-widget-header { text-align: center; margin-bottom: 28px; position: relative; }
.fhs-widget-header h3 {
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 700;
  color: white;
  margin-bottom: 6px;
}
.fhs-widget-header p { font-size: 13px; color: rgba(255, 255, 255, 0.55); }

.fhs-score-ring {
  width: 180px;
  height: 180px;
  margin: 0 auto 24px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.fhs-score-ring svg { position: absolute; top: 0; left: 0; transform: rotate(-90deg); }
.fhs-score-ring .score-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  z-index: 1;
}
.fhs-score-ring .score-number {
  font-family: var(--sans);
  font-size: 52px;
  font-weight: 700;
  color: white;
  line-height: 1;
  font-variant-numeric: lining-nums tabular-nums;
}
.fhs-score-ring .score-label {
  font-size: 13px;
  color: var(--tvacu-gold);
  font-weight: 700;
  letter-spacing: 0.5px;
}

.fhs-categories { position: relative; }
.fhs-cat {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.fhs-cat:last-child { border-bottom: none; }
.fhs-cat-left { display: flex; align-items: center; gap: 10px; }
.fhs-cat-icon {
  width: 28px;
  height: 28px;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
}
.fhs-cat-icon.saving   { background: rgba(39, 174, 96, 0.2); }
.fhs-cat-icon.spending { background: rgba(52, 152, 219, 0.2); }
.fhs-cat-icon.debt     { background: rgba(231, 76, 60, 0.2); }
.fhs-cat-icon.planning { background: rgba(200, 168, 78, 0.2); }
.fhs-cat-name { font-size: 14px; color: rgba(255, 255, 255, 0.75); }
.fhs-cat-bar {
  width: 100px;
  height: 6px;
  border-radius: 3px;
  background: rgba(255, 255, 255, 0.1);
  overflow: hidden;
}
.fhs-cat-fill { height: 100%; border-radius: 3px; }
.fhs-cat-fill.good  { background: #27ae60; }
.fhs-cat-fill.ok    { background: var(--tvacu-gold); }
.fhs-cat-fill.needs { background: #e67e22; }
.fhs-cat-score { font-size: 14px; font-weight: 700; color: white; width: 30px; text-align: right; }

.fhs-widget-cta {
  display: block;
  text-align: center;
  margin-top: 24px;
  background: var(--tvacu-gold);
  color: var(--tvacu-navy);
  padding: 14px 28px;
  border-radius: 10px;
  font-weight: 700;
  font-size: 15px;
  text-decoration: none;
  transition: all 0.25s;
  position: relative;
}
.fhs-widget-cta:hover { background: #d4b65e; color: var(--tvacu-navy); }

/* ===== LIFE STAGE PATHWAYS ===== */
.pathways-section { padding: 80px 0; background: var(--tvacu-sand); }
.pathway-track {
  display: flex;
  gap: 0;
  margin-bottom: 40px;
  position: relative;
}
.pathway-track::before {
  content: '';
  position: absolute;
  top: 42px;
  left: 60px;
  right: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--tvacu-crimson), var(--tvacu-blue), #27ae60, var(--tvacu-gold));
  border-radius: 2px;
  z-index: 0;
}
.pathway-stage {
  flex: 1;
  text-align: center;
  position: relative;
  z-index: 1;
  cursor: pointer;
  transition: transform 0.2s;
}
.pathway-stage:hover { transform: translateY(-4px); }
.pathway-dot {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  margin: 0 auto 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  border: 3px solid white;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}
.pathway-dot.highschool { background: #fce4ec; }
.pathway-dot.college    { background: var(--tvacu-crimson); color: white; font-size: 16px; font-weight: 800; }
.pathway-dot.workforce  { background: #e3f2fd; }
.pathway-dot.family     { background: #e8f5e9; }
.pathway-dot.homebuyer  { background: #fff3e0; }
.pathway-dot.retirement { background: var(--tvacu-gold); color: white; font-size: 16px; }
.pathway-stage h4 { font-size: 13px; font-weight: 700; color: var(--tvacu-navy); margin-bottom: 3px; }
.pathway-stage p  { font-size: 11.5px; color: var(--tvacu-text-light); line-height: 1.4; max-width: 130px; margin: 0 auto; }

.pathway-detail-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.pathway-card {
  background: white;
  border-radius: 14px;
  padding: 24px;
  border: 1px solid var(--tvacu-border);
  transition: all 0.3s;
  position: relative;
  overflow: hidden;
  text-decoration: none;
  display: block;
  color: inherit;
}
.pathway-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 36px rgba(42, 95, 165, 0.1);
  border-color: var(--tvacu-light-blue);
}
.pathway-card-tag {
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 4px;
  display: inline-block;
  margin-bottom: 12px;
}
.pathway-card-tag.hs  { background: #fce4ec; color: #c62828; }
.pathway-card-tag.col { background: rgba(158, 27, 50, 0.1); color: var(--tvacu-crimson); }
.pathway-card-tag.wf  { background: #e3f2fd; color: #1565c0; }
.pathway-card-tag.hb  { background: #e8f5e9; color: #2e7d32; }
.pathway-card-tag.fam { background: #fff3e0; color: #e65100; }
.pathway-card-tag.ret { background: rgba(200, 168, 78, 0.15); color: #8d6e0f; }
.pathway-card h3 {
  font-family: var(--serif);
  font-size: 17px;
  font-weight: 700;
  color: var(--tvacu-navy);
  margin-bottom: 8px;
  line-height: 1.3;
}
.pathway-card p  { font-size: 13.5px; color: var(--tvacu-text-light); line-height: 1.55; margin-bottom: 14px; }
.pathway-card-meta { font-size: 12px; color: var(--tvacu-blue); font-weight: 700; }

/* ===== PATHWAY STICKY NAV ===== */
.pathway-sticky-nav {
  position: sticky;
  top: 80px;
  z-index: 800;
  background: white;
  border-bottom: 2px solid var(--tvacu-border);
  box-shadow: 0 4px 16px rgba(26, 39, 68, 0.07);
}
.pathway-nav-pills {
  display: flex;
  gap: 4px;
  padding: 10px 0;
  overflow-x: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.pathway-nav-pills::-webkit-scrollbar { display: none; }
.pathway-nav-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 7px 18px;
  border-radius: 50px;
  font-size: 13.5px;
  font-weight: 600;
  font-family: var(--sans);
  color: var(--tvacu-text-light);
  text-decoration: none;
  white-space: nowrap;
  flex-shrink: 0;
  border: 1.5px solid transparent;
  transition: all 0.2s;
}
.pathway-nav-pill:hover {
  color: var(--tvacu-blue);
  background: var(--tvacu-sky);
}
.pathway-nav-pill.active {
  background: var(--tvacu-navy);
  color: white;
  border-color: var(--tvacu-navy);
}

/* ===== PATHWAY DETAIL SECTIONS ===== */
.pathway-detail-section { padding: 64px 0; border-top: 1px solid var(--tvacu-border); }

.pds-tag-row { display: flex; align-items: center; gap: 12px; margin-bottom: 20px; }
.pds-emoji { font-size: 30px; line-height: 1; }

.pds-heading {
  font-family: var(--serif);
  font-size: 30px;
  font-weight: 700;
  color: var(--tvacu-navy);
  margin-bottom: 14px;
  line-height: 1.2;
}
.pds-framing {
  font-size: 17px;
  color: var(--tvacu-text-light);
  line-height: 1.65;
  max-width: 760px;
  margin-bottom: 40px;
  padding-bottom: 32px;
  border-bottom: 1px solid var(--tvacu-border);
}

.pds-goals { display: flex; flex-direction: column; gap: 32px; margin-bottom: 44px; }

.pds-goal { display: grid; grid-template-columns: 44px 1fr; gap: 0 20px; align-items: start; }

.pds-goal-num {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--tvacu-navy);
  color: white;
  font-size: 15px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 3px;
}

.pds-goal-body h3 {
  font-family: var(--serif);
  font-size: 18px;
  font-weight: 700;
  color: var(--tvacu-navy);
  margin-bottom: 8px;
  line-height: 1.3;
}
.pds-goal-why {
  font-size: 15px;
  color: var(--tvacu-text);
  line-height: 1.7;
  margin-bottom: 12px;
}

.pds-resources { display: flex; flex-wrap: wrap; align-items: center; gap: 8px; }
.pds-resources-label {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  color: var(--tvacu-text-light);
}
.pds-resource-link {
  font-size: 13px;
  font-weight: 600;
  color: var(--tvacu-blue);
  text-decoration: none;
  background: var(--tvacu-sky);
  padding: 4px 12px;
  border-radius: 20px;
  transition: all 0.15s;
  border: 1px solid transparent;
}
.pds-resource-link:hover { background: var(--tvacu-blue); color: white; }

.pds-tvacu {
  background: linear-gradient(135deg, var(--tvacu-navy), #1e3562);
  border-radius: 14px;
  padding: 28px 32px;
  margin-bottom: 28px;
}
.pds-tvacu h4 {
  font-family: var(--serif);
  font-size: 16px;
  font-weight: 700;
  color: var(--tvacu-gold);
  margin-bottom: 10px;
}
.pds-tvacu p {
  font-size: 14.5px;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.65;
  margin-bottom: 16px;
  max-width: 680px;
}
.pds-tvacu a {
  font-size: 13.5px;
  font-weight: 700;
  color: var(--tvacu-gold);
  text-decoration: none;
  transition: opacity 0.2s;
}
.pds-tvacu a:hover { opacity: 0.75; }

.pds-next {
  display: flex;
  align-items: center;
  gap: 10px;
  padding-top: 24px;
  border-top: 1px solid var(--tvacu-border);
}
.pds-next span { font-size: 13px; color: var(--tvacu-text-light); }
.pds-next a { font-size: 14px; font-weight: 700; color: var(--tvacu-blue); text-decoration: none; }
.pds-next a:hover { color: var(--tvacu-navy); }

/* Pathway stage as link */
a.pathway-stage { text-decoration: none; color: inherit; }

@media (max-width: 600px) {
  .pds-goal { grid-template-columns: 36px 1fr; gap: 0 14px; }
  .pds-goal-num { width: 32px; height: 32px; font-size: 13px; }
  .pds-heading { font-size: 24px; }
  .pds-tvacu { padding: 22px 20px; }
}

/* ===== CHECKLISTS & GUIDES ===== */
.guides-section { padding: 80px 0; background: white; }
.guides-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.guide-card {
  border: 2px solid var(--tvacu-border);
  border-radius: 14px;
  padding: 24px;
  transition: all 0.3s;
  position: relative;
  text-decoration: none;
  display: block;
  color: inherit;
}
.guide-card:hover {
  border-color: var(--tvacu-blue);
  transform: translateY(-4px);
  box-shadow: 0 12px 36px rgba(42, 95, 165, 0.1);
}
.guide-type {
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.guide-type.checklist { color: #27ae60; }
.guide-type.guide     { color: var(--tvacu-blue); }
.guide-type.worksheet { color: #e67e22; }
.guide-card h3 {
  font-family: var(--serif);
  font-size: 16px;
  font-weight: 700;
  color: var(--tvacu-navy);
  margin-bottom: 8px;
  line-height: 1.3;
}
.guide-card p { font-size: 13px; color: var(--tvacu-text-light); line-height: 1.5; margin-bottom: 14px; }
.guide-preview { font-size: 12px; color: var(--tvacu-text-light); }
.guide-preview .check { color: #27ae60; margin-right: 6px; font-weight: 700; }
.guide-preview div { margin-bottom: 4px; }
.guide-dl {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 12px;
  font-size: 13px;
  font-weight: 700;
  color: var(--tvacu-blue);
}

/* ===== CONTENT LIBRARY ===== */
.library-section { padding: 80px 0; background: var(--tvacu-sky); }
.topic-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.topic-card {
  background: white;
  border-radius: 14px;
  padding: 28px;
  transition: all 0.3s;
  border: 1px solid transparent;
  text-decoration: none;
  display: block;
  color: inherit;
}
.topic-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 36px rgba(42, 95, 165, 0.12);
  border-color: var(--tvacu-light-blue);
}
.topic-emoji { font-size: 28px; margin-bottom: 14px; display: block; }
.topic-card h3 {
  font-family: var(--serif);
  font-size: 19px;
  font-weight: 700;
  color: var(--tvacu-navy);
  margin-bottom: 8px;
}
.topic-card p  { font-size: 14px; color: var(--tvacu-text-light); line-height: 1.6; margin-bottom: 14px; }
.article-count { font-size: 12px; font-weight: 700; color: var(--tvacu-blue); letter-spacing: 0.5px; }

/* ===== HOMEPAGE TOPICS SECTION ===== */
.topics-section { padding: 80px 0; background: var(--tvacu-warm-white); }
.topics-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.topics-grid .topic-card {
  background: white;
  border: 1px solid var(--tvacu-border);
  box-shadow: 0 2px 12px rgba(26,39,68,0.05);
}
.topic-icon { font-size: 32px; margin-bottom: 16px; display: block; }
.topic-link { font-size: 13px; font-weight: 700; color: var(--tvacu-blue); letter-spacing: 0.3px; }
.btn-outline-dark {
  display: inline-block;
  padding: 14px 32px;
  border: 2px solid var(--tvacu-navy);
  color: var(--tvacu-navy);
  border-radius: 8px;
  font-weight: 700;
  font-size: 15px;
  text-decoration: none;
  transition: all 0.2s;
}
.btn-outline-dark:hover { background: var(--tvacu-navy); color: white; }
@media (max-width: 900px) { .topics-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 500px) { .topics-grid { grid-template-columns: 1fr; } }

/* ===== VETERANS & MILITARY SECTION ===== */
.veterans-section {
  padding: 80px 0;
  background: var(--tvacu-navy);
  color: white;
}
.veterans-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 64px;
  align-items: start;
}
.section-tag-light {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--tvacu-gold);
  margin-bottom: 16px;
}
.veterans-intro h2 {
  font-family: var(--serif);
  font-size: 34px;
  font-weight: 800;
  color: white;
  margin-bottom: 20px;
  line-height: 1.2;
}
.veterans-intro p {
  color: rgba(255,255,255,0.75);
  line-height: 1.7;
  margin-bottom: 16px;
}
.veterans-open {
  font-size: 14px;
  color: rgba(255,255,255,0.5) !important;
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 16px;
  margin-top: 4px;
}
.veterans-topics {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.veterans-topic-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 12px;
  padding: 20px;
  display: flex;
  gap: 14px;
  align-items: flex-start;
  transition: background 0.2s;
  text-decoration: none;
  color: inherit;
}
.veterans-topic-card:hover { background: rgba(255,255,255,0.1); }
.vt-icon { font-size: 24px; flex-shrink: 0; margin-top: 2px; }
.veterans-topic-card h4 {
  font-family: var(--serif);
  font-size: 16px;
  font-weight: 700;
  color: white;
  margin-bottom: 6px;
}
.veterans-topic-card p {
  font-size: 13px;
  color: rgba(255,255,255,0.65);
  line-height: 1.6;
  margin: 0;
}
@media (max-width: 960px) {
  .veterans-grid { grid-template-columns: 1fr; gap: 40px; }
  .veterans-topics { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 560px) { .veterans-topics { grid-template-columns: 1fr; } }

/* ===== CTA SUBSCRIBE SECTION ===== */
.cta-section {
  padding: 80px 0;
  background: linear-gradient(165deg, var(--tvacu-navy), #1e3562);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute;
  bottom: -100px;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 300px;
  background: radial-gradient(ellipse, rgba(200, 168, 78, 0.1), transparent 70%);
}
.cta-section h2 {
  font-family: var(--serif);
  font-size: 38px;
  font-weight: 700;
  color: white;
  margin-bottom: 16px;
  position: relative;
}
.cta-section p {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.65);
  max-width: 500px;
  margin: 0 auto 36px;
  line-height: 1.6;
  position: relative;
}
.subscribe-form {
  display: flex;
  gap: 12px;
  max-width: 480px;
  margin: 0 auto;
  position: relative;
}
.subscribe-form input {
  flex: 1;
  padding: 16px 20px;
  border-radius: 10px;
  border: 2px solid rgba(255, 255, 255, 0.15);
  background: rgba(255, 255, 255, 0.08);
  color: white;
  font-size: 15px;
  font-family: var(--sans);
  outline: none;
}
.subscribe-form input::placeholder { color: rgba(255, 255, 255, 0.4); }
.subscribe-form input:focus { border-color: var(--tvacu-gold); }
.subscribe-form button {
  padding: 16px 28px;
  background: var(--tvacu-gold);
  color: var(--tvacu-navy);
  border: none;
  border-radius: 10px;
  font-weight: 700;
  font-size: 15px;
  font-family: var(--sans);
  cursor: pointer;
  transition: all 0.25s;
  white-space: nowrap;
}
.subscribe-form button:hover { background: #d4b65e; }

/* ===== NEWSLETTER PAGE ===== */
.newsletter-section { padding: 80px 0; background: white; }
.newsletter-form-wrapper {
  max-width: 560px;
  margin: 0 auto;
  background: var(--tvacu-sand);
  border-radius: 16px;
  padding: 40px;
  border: 1px solid var(--tvacu-border);
}
.newsletter-form-wrapper h3 {
  font-family: var(--serif);
  font-size: 24px;
  font-weight: 700;
  color: var(--tvacu-navy);
  margin-bottom: 8px;
}
.newsletter-form-wrapper p {
  font-size: 15px;
  color: var(--tvacu-text-light);
  margin-bottom: 24px;
  line-height: 1.6;
}
.form-group { margin-bottom: 16px; }
.form-group label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--tvacu-text);
  margin-bottom: 6px;
}
.form-group input {
  width: 100%;
  padding: 12px 16px;
  border-radius: 8px;
  border: 1.5px solid var(--tvacu-border);
  background: white;
  font-size: 15px;
  font-family: var(--sans);
  color: var(--tvacu-text);
  outline: none;
  transition: border-color 0.2s;
}
.form-group input:focus { border-color: var(--tvacu-blue); }
.form-submit {
  width: 100%;
  padding: 14px;
  background: var(--tvacu-blue);
  color: white;
  border: none;
  border-radius: 10px;
  font-weight: 700;
  font-size: 16px;
  font-family: var(--sans);
  cursor: pointer;
  transition: background 0.25s;
  margin-top: 8px;
}
.form-submit:hover { background: var(--tvacu-navy); }
.form-disclaimer { font-size: 12px; color: var(--tvacu-text-light); margin-top: 12px; text-align: center; line-height: 1.5; }

.archive-section { padding: 60px 0 80px; background: var(--tvacu-sky); }
.archive-empty {
  text-align: center;
  padding: 60px 24px;
  background: white;
  border-radius: 16px;
  border: 1px solid var(--tvacu-border);
  max-width: 480px;
  margin: 0 auto;
}
.archive-empty .empty-icon { font-size: 48px; margin-bottom: 16px; display: block; }
.archive-empty h3 {
  font-family: var(--serif);
  font-size: 22px;
  color: var(--tvacu-navy);
  margin-bottom: 8px;
}
.archive-empty p { font-size: 15px; color: var(--tvacu-text-light); line-height: 1.6; }

/* ===== HEALTH SCORE PAGE ===== */
.hs-intro-section { padding: 80px 0; background: white; }
.hs-intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

/* ===== FOOTER ===== */
footer {
  background: var(--tvacu-navy);
  padding: 40px 0 24px;
  color: rgba(255, 255, 255, 0.5);
  font-size: 13px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 32px;
}
.footer-brand h3 {
  font-family: var(--serif);
  font-size: 18px;
  font-weight: 700;
  color: white;
  margin-bottom: 8px;
}
.footer-brand p { line-height: 1.6; }
.footer-col h4 {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 14px;
}
.footer-col a {
  display: block;
  color: rgba(255, 255, 255, 0.5);
  text-decoration: none;
  margin-bottom: 8px;
  font-size: 14px;
  transition: color 0.2s;
}
.footer-col a:hover { color: var(--tvacu-gold); }
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}
.footer-bottom span { font-size: 12px; opacity: 0.5; }
.footer-compliance-logos {
  display: flex;
  align-items: center;
  gap: 16px;
}
.compliance-logo {
  height: 36px;
  width: auto;
  opacity: 0.75;
}

.footer-powered-by {
  text-align: center;
  padding-top: 16px;
  font-size: 11px;
  opacity: 0.4;
}
.footer-powered-by a {
  color: white;
  text-decoration: none;
  letter-spacing: 0.03em;
}
.footer-powered-by a:hover { opacity: 0.8; }

/* ===== DISCLAIMER BAR ===== */
.disclaimer-bar {
  background: var(--tvacu-sand);
  border-top: 1px solid var(--tvacu-border);
  padding: 12px 0;
  font-size: 12px;
  color: var(--tvacu-text-light);
  text-align: center;
  line-height: 1.5;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .hero-grid .fhs-widget { max-width: 460px; }
  .guides-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 900px) {
  .hero h2 { font-size: 36px; }
  .page-banner h2 { font-size: 32px; }
  .section-header h2 { font-size: 28px; }
  .hero { padding: 60px 0 70px; }
  .fhs-grid,
  .local-grid,
  .hs-intro-grid { grid-template-columns: 1fr; }
  .topic-grid { grid-template-columns: 1fr 1fr; }
  .pathway-detail-grid { grid-template-columns: 1fr 1fr; }
  .local-ticker { grid-template-columns: 1fr 1fr; }
  .pathway-track { flex-wrap: wrap; justify-content: center; gap: 16px; }
  .pathway-track::before { display: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 28px; }

  /* Mobile nav */
  nav { display: none; }
  nav.open { display: flex; flex-direction: column; align-items: flex-start; gap: 0; position: absolute; top: 100%; left: 0; right: 0; background: white; border-bottom: 1px solid var(--tvacu-border); padding: 12px 24px 20px; box-shadow: 0 8px 24px rgba(26,39,68,0.1); z-index: 800; }
  nav.open a { padding: 10px 0; width: 100%; border-bottom: 1px solid var(--tvacu-border); font-size: 16px; }
  nav.open a:last-child { border-bottom: none; margin-top: 8px; }
  nav.open a.active::after { display: none; }
  nav.open .cta-subscribe { text-align: center; }
  .nav-toggle { display: flex; }
  header { position: sticky; top: 0; }
  header .container { position: relative; }
}

@media (max-width: 600px) {
  .hero h2 { font-size: 30px; }
  .topic-grid { grid-template-columns: 1fr; }
  .pathway-detail-grid { grid-template-columns: 1fr; }
  .guides-grid { grid-template-columns: 1fr; }
  .local-ticker { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .subscribe-form { flex-direction: column; }
  .top-bar-links { display: none; }
  .briefing-preview { padding: 24px; }
}

/* ================================================================
   ARTICLE FILTER & CARDS (learn.html)
   ================================================================ */

.article-filter-section { padding: 60px 0 80px; background: var(--tvacu-sand); }

.filter-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 36px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--tvacu-border);
}

.filter-pills { display: flex; flex-wrap: wrap; gap: 8px; }

.filter-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 16px;
  border-radius: 50px;
  border: 1.5px solid var(--tvacu-border);
  background: white;
  color: var(--tvacu-text-light);
  font-size: 13.5px;
  font-weight: 600;
  font-family: var(--sans);
  cursor: pointer;
  transition: all 0.2s;
  white-space: nowrap;
}
.filter-pill:hover { border-color: var(--tvacu-blue); color: var(--tvacu-blue); }
.filter-pill.active { background: var(--tvacu-navy); border-color: var(--tvacu-navy); color: white; }
.pill-count { font-size: 11px; font-weight: 700; opacity: 0.6; }
.filter-pill.active .pill-count { opacity: 0.75; }

.article-showing { font-size: 13.5px; color: var(--tvacu-text-light); font-weight: 500; white-space: nowrap; }
.article-showing strong { color: var(--tvacu-navy); }

.article-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.article-card {
  background: white;
  border-radius: 14px;
  padding: 24px;
  border: 1px solid var(--tvacu-border);
  text-decoration: none;
  display: flex;
  flex-direction: column;
  transition: all 0.25s;
  color: inherit;
}
.article-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 32px rgba(42, 95, 165, 0.1);
  border-color: var(--tvacu-light-blue);
  color: inherit;
}
.article-card.featured { border-color: var(--tvacu-gold); border-width: 2px; }

.ac-header {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 14px;
}

.ac-featured-badge {
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  color: #8d6e0f;
  background: rgba(200, 168, 78, 0.18);
  padding: 3px 8px;
  border-radius: 4px;
}

.article-card h3 {
  font-family: var(--serif);
  font-size: 16px;
  font-weight: 700;
  color: var(--tvacu-navy);
  line-height: 1.35;
  margin-bottom: 10px;
}
.article-card p {
  font-size: 13.5px;
  color: var(--tvacu-text-light);
  line-height: 1.55;
  margin-bottom: 18px;
  flex: 1;
}

.ac-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
  padding-top: 14px;
  border-top: 1px solid var(--tvacu-border);
}
.ac-read-time { font-size: 12.5px; color: var(--tvacu-text-light); font-weight: 500; }
.ac-arrow { font-size: 16px; color: var(--tvacu-blue); font-weight: 700; transition: transform 0.2s; }
.article-card:hover .ac-arrow { transform: translateX(3px); }

@media (max-width: 900px) { .article-cards-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) {
  .article-cards-grid { grid-template-columns: 1fr; }
  .filter-pills { gap: 6px; }
  .filter-pill { padding: 7px 13px; font-size: 13px; }
  .filter-bar { flex-direction: column; align-items: flex-start; }
}

/* ================================================================
   ARTICLE PAGES
   ================================================================ */

.article-layout {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 48px;
  align-items: start;
  padding: 60px 0 80px;
}

/* Article body */
.article-body {
  min-width: 0;
}
.article-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 24px;
}
.article-topic-tag {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 4px;
  background: var(--tvacu-sky);
  color: var(--tvacu-blue);
}
.article-topic-tag.veterans { background: rgba(158,27,50,0.08); color: var(--tvacu-crimson); }
.article-topic-tag.budgeting { background: #e8f5e9; color: #2e7d32; }
.article-topic-tag.credit { background: #fff3e0; color: #e65100; }
.article-topic-tag.homebuying { background: var(--tvacu-sky); color: var(--tvacu-blue); }
.article-topic-tag.auto { background: #f3e5f5; color: #6a1b9a; }
.article-topic-tag.student-loans { background: #e3f2fd; color: #1565c0; }
.article-topic-tag.investing { background: rgba(200,168,78,0.15); color: #8d6e0f; }
.article-read-time {
  font-size: 13px;
  color: var(--tvacu-text-light);
}
.article-local-badge {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  color: var(--tvacu-crimson);
  background: rgba(158,27,50,0.06);
  padding: 3px 10px;
  border-radius: 4px;
}

.article-body h1 {
  font-family: var(--serif);
  font-size: 36px;
  font-weight: 700;
  color: var(--tvacu-navy);
  line-height: 1.2;
  margin-bottom: 16px;
}
.article-body .article-deck {
  font-size: 18px;
  color: var(--tvacu-text-light);
  line-height: 1.65;
  margin-bottom: 32px;
  padding-bottom: 32px;
  border-bottom: 1px solid var(--tvacu-border);
}

/* Prose styles */
.article-prose h2 {
  font-family: var(--serif);
  font-size: 24px;
  font-weight: 700;
  color: var(--tvacu-navy);
  margin: 36px 0 12px;
  line-height: 1.3;
}
.article-prose h3 {
  font-family: var(--serif);
  font-size: 19px;
  font-weight: 700;
  color: var(--tvacu-navy);
  margin: 28px 0 10px;
  line-height: 1.3;
}
.article-prose p {
  font-size: 16px;
  color: var(--tvacu-text);
  line-height: 1.75;
  margin-bottom: 20px;
}
.article-prose ul,
.article-prose ol {
  margin: 0 0 20px 20px;
}
.article-prose li {
  font-size: 16px;
  color: var(--tvacu-text);
  line-height: 1.7;
  margin-bottom: 8px;
}
.article-prose strong {
  font-weight: 700;
  color: var(--tvacu-navy);
}
.article-prose a {
  color: var(--tvacu-blue);
  font-weight: 600;
  text-decoration: none;
}
.article-prose a:hover {
  text-decoration: underline;
}

/* Callout / highlight box */
.article-callout {
  background: var(--tvacu-sky);
  border-left: 4px solid var(--tvacu-blue);
  border-radius: 0 10px 10px 0;
  padding: 20px 24px;
  margin: 28px 0;
}
.article-callout.gold {
  background: rgba(200,168,78,0.08);
  border-left-color: var(--tvacu-gold);
}
.article-callout.crimson {
  background: rgba(158,27,50,0.06);
  border-left-color: var(--tvacu-crimson);
}
.article-callout.green {
  background: #e8f5e9;
  border-left-color: #27ae60;
}
.article-callout p {
  margin: 0;
  font-size: 15px;
  line-height: 1.65;
}
.article-callout strong {
  display: block;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  color: var(--tvacu-blue);
  margin-bottom: 6px;
}
.article-callout.gold strong { color: #8d6e0f; }
.article-callout.crimson strong { color: var(--tvacu-crimson); }
.article-callout.green strong { color: #2e7d32; }

/* Key number / stat highlight */
.article-stat-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin: 28px 0;
}
.article-stat {
  background: white;
  border: 1px solid var(--tvacu-border);
  border-radius: 12px;
  padding: 20px;
  text-align: center;
}
.article-stat .stat-number {
  font-family: var(--serif);
  font-size: 32px;
  font-weight: 800;
  color: var(--tvacu-navy);
  line-height: 1;
  margin-bottom: 4px;
}
.article-stat .stat-label {
  font-size: 12px;
  color: var(--tvacu-text-light);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Article end CTA */
.article-end-cta {
  background: linear-gradient(135deg, var(--tvacu-navy), #1e3562);
  border-radius: 16px;
  padding: 36px;
  text-align: center;
  margin-top: 48px;
  position: relative;
  overflow: hidden;
}
.article-end-cta::before {
  content: '';
  position: absolute;
  top: -40%;
  right: -20%;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(200,168,78,0.12), transparent 70%);
  border-radius: 50%;
}
.article-end-cta h3 {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 700;
  color: white;
  margin-bottom: 10px;
  position: relative;
}
.article-end-cta p {
  font-size: 15px;
  color: rgba(255,255,255,0.65);
  margin-bottom: 20px;
  line-height: 1.6;
  position: relative;
}

/* Article sidebar */
.article-sidebar {
  position: sticky;
  top: 80px;
}
.sidebar-card {
  background: var(--tvacu-sand);
  border-radius: 14px;
  padding: 24px;
  border: 1px solid var(--tvacu-border);
  margin-bottom: 20px;
}
.sidebar-card h4 {
  font-family: var(--serif);
  font-size: 16px;
  font-weight: 700;
  color: var(--tvacu-navy);
  margin-bottom: 14px;
}
.sidebar-card ul {
  list-style: none;
  margin: 0;
}
.sidebar-card ul li {
  font-size: 14px;
  padding: 8px 0;
  border-bottom: 1px solid var(--tvacu-border);
  line-height: 1.4;
}
.sidebar-card ul li:last-child { border-bottom: none; }
.sidebar-card ul li a {
  color: var(--tvacu-blue);
  text-decoration: none;
  font-weight: 600;
}
.sidebar-card ul li a:hover { text-decoration: underline; }
.sidebar-score-cta {
  background: linear-gradient(135deg, var(--tvacu-navy), #1e3562);
  border-radius: 14px;
  padding: 24px;
  text-align: center;
  color: white;
}
.sidebar-score-cta h4 {
  font-family: var(--serif);
  font-size: 17px;
  font-weight: 700;
  color: white;
  margin-bottom: 8px;
}
.sidebar-score-cta p {
  font-size: 13px;
  color: rgba(255,255,255,0.6);
  margin-bottom: 16px;
  line-height: 1.5;
}

/* Related articles */
.related-articles {
  padding: 60px 0 80px;
  background: var(--tvacu-sky);
}
.related-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.related-card {
  background: white;
  border-radius: 12px;
  padding: 22px;
  border: 1px solid var(--tvacu-border);
  text-decoration: none;
  display: block;
  transition: all 0.25s;
}
.related-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 28px rgba(42,95,165,0.1);
  border-color: var(--tvacu-light-blue);
}
.related-card-tag {
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--tvacu-blue);
  margin-bottom: 8px;
}
.related-card h4 {
  font-family: var(--serif);
  font-size: 16px;
  font-weight: 700;
  color: var(--tvacu-navy);
  line-height: 1.3;
  margin-bottom: 6px;
}
.related-card p {
  font-size: 13px;
  color: var(--tvacu-text-light);
  line-height: 1.5;
}

/* Breadcrumb */
.breadcrumb {
  padding: 14px 0;
  font-size: 13px;
  color: var(--tvacu-text-light);
  border-bottom: 1px solid var(--tvacu-border);
  background: white;
}
.breadcrumb a {
  color: var(--tvacu-blue);
  text-decoration: none;
  font-weight: 600;
}
.breadcrumb a:hover { text-decoration: underline; }
.breadcrumb span { margin: 0 8px; opacity: 0.4; }

/* Article responsive */
@media (max-width: 900px) {
  .article-layout { grid-template-columns: 1fr; }
  .article-sidebar { position: static; }
  .article-body h1 { font-size: 28px; }
  .article-stat-row { grid-template-columns: 1fr 1fr; }
  .related-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 600px) {
  .article-body h1 { font-size: 24px; }
  .article-stat-row { grid-template-columns: 1fr; }
  .related-grid { grid-template-columns: 1fr; }
  .article-end-cta { padding: 28px 20px; }
}
