/* =========================
   Base / Theme
   ========================= */

   :root {
    --bg: #ECEAE6;
    --fg: #0F0F0F;
    --link: #0B3D91;     /* NASA blue */
    --visited: #4B2E83;  /* muted purple */
    --rule: #C8C8C8;
  }
  
  * {
    box-sizing: border-box;
    overflow-wrap: anywhere;
  }
  
  html,
  body {
    margin: 0;
    padding: 0;
    background: var(--bg);
    color: var(--fg);
    font-family: "Courier New", Courier, monospace;
    line-height: 1.5;
  }

  /* =========================
     Layout
     ========================= */
  
  .wrap {
    width: 40%;
    max-width: 820px;
    margin: 0 auto;
    padding: 28px 18px;
  }
  
  /* Push the hero down on desktop only */
  @media (min-width: 761px) {
    .wrap {
      padding-top: 100px;
    }
  }
  
  /* Mobile: full width, tighter padding */
  @media (max-width: 760px) {
    .wrap {
      width: 100%;
      padding: 18px 12px;
    }
  }
  
  /* Space between major sections (Projects, Speaking, etc.) */
  section {
    margin-top: 80px;
  }
  
  /* =========================
     Typography
     ========================= */
  
  h1 {
    font-size: 26px;
    margin: 0 0 6px 0;
    font-weight: 700;
  }
  
  h2 {
    font-size: 20px;
    margin: 18px 0 10px 0;
    font-weight: 700;
  }
  
  p {
    margin: 0 0 14px 0;
  }
  
  .subtitle {
    margin: 0 0 18px 0;
  }
  
  /* =========================
     Links
     ========================= */
  
  .links {
    margin-top: 10px;
  }
  
  .sep {
    padding: 0 8px;
  }
  
  a {
    text-decoration: none;
  }

  a:link {
    color: var(--link);
  }
  
  a:visited {
    color: var(--visited);
  }
  
  a:hover {
    text-decoration: underline;
  }
  
  a:active {
    text-decoration: underline;
  }
  
  /* =========================
     Rules / Dividers
     ========================= */
  
  hr {
    border: 0;
    border-top: 1px solid var(--rule);
    margin: 18px 0;
  }
  
  .divider {
    border: 0;
    border-top: 1px solid var(--rule);
    margin: 14px 0;
  }
  
  /* =========================
     Footer
     ========================= */
  
  footer {
    margin-top: 40px;
  }
  
  /* =========================
     Shared: Item blocks (Projects / Speaking)
     ========================= */
  
  .project-list {
    margin-top: 10px;
  }
  
  .project {
    margin: 0;
  }
  
  .project-title {
    display: inline-block;
    font-weight: 700;
    margin-bottom: 6px;
  }
  
  .project-desc,
  .talk-desc {
    margin: 6px 0;
    max-width: 70ch;
  }
  
  .project-stack {
    margin: 0 0 2px 0;
    font-size: 13px;
  }
  
  /* =========================
     Speaking
     ========================= */
  
  .talk-title {
    margin: 6px 0;
  }

  .speaking-list {
    margin: 0;
    padding-left: 18px;
  }
  
  .speaking-list li {
    margin-bottom: 10px;
  }
  
  