
    :root {
      --navy: #1F3864;
      --navy-dark: #152847;
      --gold: #D4A600;
      --gold-light: #F0C000;
      --white: #ffffff;
      --light-gray: #f4f6f9;
      --text: #2d2d2d;
      --text-light: #666;
    }
    * { margin: 0; padding: 0; box-sizing: border-box; }
    body { font-family: 'Segoe UI', Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Segoe UI Symbol', 'Noto Color Emoji'; color: var(--text); background: var(--light-gray); }

    /* NAV */
    nav {
      position: sticky; top: 0; z-index: 1000;
      background: var(--navy); padding: 0 2rem;
      display: flex; align-items: center; justify-content: space-between;
      box-shadow: 0 2px 10px rgba(0,0,0,0.3);
    }
    .nav-brand { display: flex; align-items: center; gap: 0.75rem; text-decoration: none; padding: 1rem 0; }
    .nav-brand .logo-circle {
      width: 42px; height: 42px; border-radius: 50%;
      background: var(--gold); color: var(--navy);
      display: flex; align-items: center; justify-content: center;
      font-weight: 900; font-size: 1rem; letter-spacing: -1px;
    }
    .nav-brand span { color: var(--white); font-size: 1.1rem; font-weight: 700; }
    .nav-brand span em { color: var(--gold); font-style: normal; }
    .nav-links { display: flex; gap: 0.25rem; }
    .nav-links a {
      color: rgba(255,255,255,0.85); text-decoration: none;
      padding: 0.5rem 1rem; border-radius: 4px;
      font-size: 0.95rem; transition: all 0.2s;
    }
    .nav-links a:hover, .nav-links a.active {
      background: rgba(196,154,0,0.2); color: var(--gold-light);
    }
    .nav-links a.active { font-weight: 600; }
    .nav-cta {
      background: var(--gold); color: var(--navy) !important;
      font-weight: 700 !important; padding: 0.5rem 1.25rem !important;
      border-radius: 4px !important;
    }
    .nav-cta:hover { background: var(--gold-light) !important; }

    /* ARTICLE HEADER */
    .article-hero {
      background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 60%, #2a4a80 100%);
      color: white; padding: 4rem 2rem 3rem; text-align: center;
    }
    .article-hero .breadcrumb {
      font-size: 0.85rem; color: rgba(255,255,255,0.88); margin-bottom: 1.5rem;
    }
    .article-hero .breadcrumb a { color: var(--gold-light); text-decoration: none; }
    .article-hero .breadcrumb a:hover { text-decoration: underline; }
    .article-hero h1 {
      font-size: clamp(1.8rem, 4vw, 2.6rem); font-weight: 800;
      line-height: 1.2; max-width: 750px; margin: 0 auto 1rem;
    }
    .article-meta {
      font-size: 0.9rem; color: rgba(255,255,255,0.9);
      display: flex; justify-content: center; gap: 1.5rem; flex-wrap: wrap;
    }
    .article-meta strong { color: var(--gold-light); }

    /* ARTICLE BODY */
    .article-container {
      max-width: 760px; margin: 0 auto; padding: 3rem 2rem;
    }
    .article-body {
      background: white; border-radius: 12px; padding: 2.5rem;
      box-shadow: 0 2px 12px rgba(0,0,0,0.07); line-height: 1.85; font-size: 1.05rem;
    }
    .article-body h2 {
      color: var(--navy); font-size: 1.5rem; margin-top: 2.5rem; margin-bottom: 1rem;
      padding-bottom: 0.5rem; border-bottom: 2px solid var(--gold);
    }
    .article-body h2:first-child { margin-top: 0; }
    .article-body p { margin-bottom: 1.25rem; color: #333; }
    .article-body strong { color: var(--navy); }

    .callout {
      background: rgba(31,56,100,0.06); border-left: 4px solid var(--gold);
      padding: 1.25rem 1.5rem; border-radius: 0 8px 8px 0;
      margin: 1.5rem 0; font-size: 0.95rem;
    }
    .callout strong { color: var(--navy); }

    /* CTA BOX */
    .article-cta {
      background: linear-gradient(135deg, var(--navy), var(--navy-dark));
      color: white; border-radius: 12px; padding: 2.5rem;
      text-align: center; margin-top: 2.5rem;
    }
    .article-cta h3 { font-size: 1.3rem; margin-bottom: 0.75rem; }
    .article-cta p { color: rgba(255,255,255,0.92); margin-bottom: 1.5rem; font-size: 0.95rem; }
    .article-cta a {
      display: inline-block; background: var(--gold); color: var(--navy);
      padding: 0.85rem 2rem; border-radius: 6px; font-weight: 700;
      text-decoration: none; font-size: 1rem; transition: all 0.2s;
    }
    .article-cta a:hover { background: var(--gold-light); transform: translateY(-2px); }

    /* AUTHOR BOX */
    .author-box {
      background: white; border-radius: 12px; padding: 2rem;
      box-shadow: 0 2px 12px rgba(0,0,0,0.07); margin-top: 2rem;
      display: flex; gap: 1.5rem; align-items: center;
    }
    .author-avatar {
      width: 72px; height: 72px; border-radius: 50%;
      background: var(--navy); color: var(--gold);
      display: flex; align-items: center; justify-content: center;
      font-weight: 900; font-size: 1.5rem; flex-shrink: 0;
    }
    .author-info h4 { color: var(--navy); margin-bottom: 0.25rem; }
    .author-info p { font-size: 0.88rem; color: var(--text-light); line-height: 1.5; }
    .author-info a { color: #856800; text-decoration: none; font-weight: 600; font-size: 0.85rem; }

    /* BACK LINK */
    .back-link {
      display: inline-flex; align-items: center; gap: 0.4rem;
      color: var(--gold); font-weight: 600; text-decoration: none;
      margin-top: 2rem; font-size: 0.95rem;
    }
    .back-link:hover { color: var(--navy); }

    /* FOOTER */
    footer {
      background: var(--navy-dark); color: rgba(255,255,255,0.88);
      text-align: center; padding: 2rem; font-size: 0.85rem; margin-top: 2rem;
    }
    footer a { color: var(--gold); text-decoration: none; }

    @media (max-width: 600px) {
        .nav-toggle { display: flex; }
  nav { flex-wrap: wrap; }
  .nav-links {
    display: none;
    width: 100%;
    flex-direction: column;
    padding: 0.5rem 0 1rem;
    gap: 0;
  }
  .nav-links.is-open { display: flex; }
  .nav-links a {
    padding: 0.75rem 1.5rem;
    border-radius: 4px;
    font-size: 1rem;
    border-bottom: 1px solid rgba(255,255,255,0.08);
  }
  .nav-links a:last-child { border-bottom: none; }
      .article-body { padding: 1.5rem; }
      .author-box { flex-direction: column; text-align: center; }
    }
  


/* ===== HAMBURGER NAV (added by usability-css-updates.py) ===== */
.skip-link {
  position: absolute;
  top: -100%;
  left: 0;
  background: var(--gold);
  color: var(--navy);
  padding: 0.5rem 1rem;
  font-weight: 700;
  font-size: 0.9rem;
  z-index: 9999;
  text-decoration: none;
  border-radius: 0 0 4px 0;
}
.skip-link:focus { top: 0; }

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 28px;
  height: 20px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 1001;
}
.nav-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(9px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-9px) rotate(-45deg); }

/* ===== UTILITY CLASSES (auto-generated by css-refactor.py) ===== */
.u-svg-inline { display:inline; vertical-align:-0.125em; }
.u-svg-middle { display:inline !important; vertical-align:middle; }
.u-contents { display:contents; }
.u-hidden { display:none; }
.u-hidden-msg { display:none; margin-top:1rem; color:rgba(255,255,255,0.9); font-size:0.9rem; }
.u-flex-center { display:flex; gap:1rem; justify-content:center; flex-wrap:wrap; }
.u-grid-halves { display:grid; grid-template-columns:1fr 1fr; gap:2rem; max-width:900px; margin:0 auto; }
.u-btn-ghost { display:inline-flex; align-items:center; gap:0.5rem; margin-top:1.25rem; background:rgba(255,255,255,0.1); border:1px solid rgba(255,255,255,0.25); color:rgba(255,255,255,0.9); padding:0.5rem 1.25rem; border-radius:6px; text-decoration:none; font-size:0.88rem; font-weight:600; transition:all 0.2s; }
.footer-linkedin-link { display:inline-flex; align-items:center; gap:0.4rem; color:rgba(255,255,255,0.88); text-decoration:none; font-size:0.85rem; transition:color 0.2s; }
.footer-linkedin-link:hover { color:var(--gold-light); }
.u-bg-light { background:var(--light-gray); }
.u-bg-navy-padded { background:var(--navy); padding:4rem 2rem; }
.u-badge-gold { background:rgba(196,154,0,0.15); border:1px solid rgba(196,154,0,0.35); color:var(--gold-light) !important; font-weight:600; }
.u-card-bordered { background:rgba(255,255,255,0.05); border:1px solid rgba(196,154,0,0.3); border-top:4px solid var(--gold); border-radius:12px; padding:2rem; }
.u-mt-5 { margin-top:1.25rem; }
.u-mt-2 { margin-top:0.5rem; }
.u-mt-4 { margin-top:1rem; }
.u-mr-4 { margin-right:1rem; }
.u-center { margin:0 auto; text-align:center; }
.u-note-center { text-align:center; color:var(--text-light); max-width:580px; margin:0 auto 2rem; line-height:1.7; }
.u-tc-mb { text-align:center; margin-bottom:2.5rem; }
.u-tc { text-align:center; }
.u-subtitle-light { color:rgba(255,255,255,0.9); max-width:580px; margin:0 auto; line-height:1.7; }
.u-body-light { color:rgba(255,255,255,0.92); font-size:0.95rem; line-height:1.7; margin-bottom:1.25rem; }
.u-gold-title { color:var(--gold-light); font-size:1.15rem; margin-bottom:0.75rem; }
.u-link-gold { color:var(--gold-light); font-size:0.9rem; font-weight:600; text-decoration:none; }
.u-subsection-text { color:var(--text-light); max-width:550px; margin:0 auto; line-height:1.7; }
.u-white-mb { color:var(--white); margin-bottom:0.5rem; }
.u-gold { color:var(--gold-light); }
.u-navy-bold { color:var(--navy); font-weight:600; }
.u-error-text { color:var(--error); }
.u-icon-lg { font-size:2.5rem; margin-bottom:1rem; }
.u-label-sm { font-size:0.85rem; color:var(--text-light); margin-bottom:0.75rem; }

/* ===== PREFERS REDUCED MOTION ===== */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
