    /* 1. Base Setup & Smooth Scrolling */
    html {
      scroll-behavior: smooth;
      font-size: 18px;
    }
    body {
      margin: 0;
      padding: 0;
      background-color: #fcfbf9; /* Soft cream background */
      color: #333;
      font-family: Georgia, 'Times New Roman', serif;
      line-height: 1.6;
    }

    /* 2. Layout & Containers */
    .container-650px {
      max-width: 650px;
      margin: 0 auto;
      /* UPDATED: Top padding set to 0 so the navbar sits flush at the very top */
      padding: 0 1rem 2rem 1rem; 
    }
    section {
      padding-top: 3rem;
      margin-bottom: 3rem;
      border-bottom: 1px dashed #ccc;
      /* UPDATED: Stops the browser from scrolling the section behind the sticky nav */
      scroll-margin-top: 80px; 
    }
    section:last-of-type {
      border-bottom: none;
    }

   /* 3. Navigation - NOW STICKY! */
    .navbar {
      display: flex;
      align-items: center;
      gap: 1rem;
      padding: .5rem 0 .5rem 0; /* Gives it breathing room top and bottom */
      border-bottom: 2px solid #222;
      margin-bottom: 2rem;
      
      /* The Sticky Magic */
      position: sticky;
      top: 0;
      background-color: #fcfbf9; /* Matches body so it covers scrolling text */
      z-index: 1000; /* Keeps it on top of everything else */
    }
    .navbar-link {
      text-decoration: none;
      color: #555;
      font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
      font-weight: bold;
      text-transform: lowercase;
      transition: color 0.2s;
    }
    .navbar-link:hover {
      color: #d9534f; /* Spicy red hover */
    }
    .image {
      max-height: 30px;
    }

    /* 4. Typography & Masthead */
    .masthead {
      display: flex;
      flex-direction: row;
      align-items: flex-start;
      justify-content: space-between;
      gap: 2rem; /* Breathing room between text and image */
    }
    .div-block-12 {
      flex: 1; /* Lets the text take up the available space */
    }
    .deckhead-img-copy {
      max-width: 180px; /* Keeps the SVG size contained */
      height: auto;
      flex-shrink: 0;
    }
    /* CSS Drop Cap */
    .has-dropcap::first-letter {
      float: left;
      font-size: 3rem;           /* Makes the letter huge */
      line-height: .9;            /* Adjusts vertical alignment with the text */
      padding-right: 0.3rem;       /* Space between the letter and the rest of the word */
      padding-top: 0.2rem;
      font-family: Georgia, 'Times New Roman', serif; /* Change this to match any font! */
      color: #1A365D;            
      font-weight: bold;
    }

    /* Stacks them on mobile devices */
    @media (max-width: 600px) {
      .masthead {
        flex-direction: column-reverse; /* Keeps text on top on mobile */
        align-items: center;
        text-align: center;
      }
    }

    .display-copy {
      font-size: 3rem;
      margin: 0 0 0.5rem 0;
      line-height: 1.1;
    }
    .display-2nd-line, .display-3rd-line, .display-4th-line {
      font-style: italic;
      color: #666;
    }
    .author-lede {
      margin-top: 1rem;
      font-family: monospace;
      text-transform: uppercase;
      font-size: 0.85rem;
      letter-spacing: 1px;
    }
    h3.section-header-home {
      font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
      font-size: 1.5rem;
      margin-bottom: 1.5rem;
      color: #222;
    }
    p {
      margin-bottom: 1.5rem;
    }
    a {
      color: #1D5C63;
      text-decoration: none;
      text-decoration-color: rgba(0, 86, 179, 0.4);
    }
    a:hover {
      text-decoration-color: #1D5C63;
    }

    /* 5. Quotes & Articles */
    .quote-block {
      background: #f4f1ea;
      padding: 1.5rem;
      margin: 2rem 0;
      border-left: 4px solid #4A6572; /*old redd9534f*/
      /* Box-sizing ensures padding doesn't push width, div will take full width naturally */
      box-sizing: border-box;
    }
    .text-block-12 {
      color: #d9534f; /* Spicy red stars */
      margin-bottom: 0.5rem;
      font-size: 1.2rem;
    }
    .lead-quote {
      font-size: 1.3rem; /* Made slightly larger for prominence */
      font-style: italic;
      line-height: 1.4;
      margin-bottom: 0.5rem;
    }
    .lead-quote-name {
      font-size: 0.95rem;
      color: #777;
      font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    }
    
    .drop-cap {
      float: left;
      margin-right: 10px;
      margin-top: 5px;
      max-width: 40px;
    }
    
    /* UPDATED: Centered Image */
    .image-3 {
      max-width: 100%;
      height: auto;
      display: block;       /* Forces it to act as a block element */
      margin: 2rem auto;    /* Centers it horizontally */
    }

    .cardinal-div {
      display: block;
      margin: 1rem auto;
      width: 300px;      /* Set a fixed width */
      height: 60px;      /* Set a strict short height */
      object-fit: cover; /* Crops the top and bottom off if it overflows */
      object-position: center; /* Ensures the bird stays in the middle of the crop */
    }

    /* 6. Lists & Posts */
    .auto-list-item-2, .div-block-18, .auto-list-item-3 {
      margin-bottom: 1.5rem;
    }
    .list-item-link, .popular-link-title {
      font-size: 1.2rem;
      font-weight: bold;
      text-decoration: none;
      color: #222;
      display: block;
      margin-bottom: 0.2rem;
    }
    .list-item-link:hover, .popular-link-title:hover {
      color: #d9534f;
    }
    .meta-date {
      font-family: monospace;
      font-size: 0.9rem;
      color: #888;
      text-transform: uppercase;
    }
    .popular-link-summary {
      font-size: 1rem;
      color: #555;
    }

    /* 7. Footer */
    .footer {
      text-align: center;
      padding-top: 2rem;
      font-size: 0.9rem;
      color: #777;
    }
    .ft-img {
      max-width: 100px;
      margin: 0 auto 1rem;
      display: block;
    }
    .dedication {
      margin: 1rem 0;
      font-style: italic;
    }