    /* --- Reset & Base --- */
    *,
    *::before,
    *::after {
      box-sizing: border-box;
    }

    html {
      scroll-behavior: smooth;
    }

    body {
      margin: 0;
      font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
      background: #f8f9fa;
      color: #333;
      line-height: 1.6;
    }

    a {
      color: #0a4275;
    }

    .container {
      width: 95%;
      margin: 0 auto;
    }

    /* --- Top Nav (reusing your palette) --- */
    nav {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 16px 30px 0 10px;
      background-color: #0a4275;
      color: #fff;
      min-height: 120px;
    }

    nav h1 {
      font-size: 24px;
      font-weight: 700;
      margin: 0;
    }

    .logo img {
      height: 120px;
      width: 120px;
      object-fit: contain;
    }

    @media (max-width: 768px) {
      nav {
        flex-direction: column;
        gap: 8px;
        padding: 12px 16px;
        min-height: auto;
        text-align: center;
      }

      .logo img {
        height: 90px;
        width: auto;
      }
    }

    /* --- Hero --- */
    .post-hero {
      background: linear-gradient(0deg, rgba(10, 66, 117, 0.08), rgba(10, 66, 117, 0.08));
      padding: 18px 0 22px;
    }

    .post-hero__eyebrow {
      color: #0a4275;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: .04em;
      font-size: 12px;
    }

    .post-hero h1 {
      color: #0a4275;
      margin: .25rem 0 .5rem;
      font-size: clamp(24px, 3vw, 34px);
      line-height: 1.2;
    }

    .post-hero p {
      max-width: 70ch;
    }

    /* --- Meta / Actions --- */
    .post-meta {
      display: flex;
      flex-wrap: wrap;
      gap: 10px 16px;
      color: #555;
      font-size: 14px;
      align-items: center;
    }

    .meta-dot {
      width: 4px;
      height: 4px;
      background: #bbb;
      border-radius: 50%;
      display: inline-block;
      margin: 0 6px;
    }

    .actions {
      margin-left: auto;
      display: flex;
      gap: 10px;
    }

    .btn {
      appearance: none;
      border: 1px solid #90caf9;
      background: #e3f2fd;
      color: #0a4275;
      border-radius: 8px;
      padding: 8px 12px;
      font-weight: 600;
      cursor: pointer;
      display: inline-flex;
      align-items: center;
      gap: 8px;
    }

    .btn:hover {
      background: #d6ecff;
    }

    /* --- Layout: TOC + Article --- */
    .layout {
      display: grid;
      grid-template-columns: 260px 1fr;
      gap: 24px;
      align-items: start;
      margin: 18px auto 26px;
    }

    @media (max-width: 1024px) {
      .layout {
        grid-template-columns: 1fr;
      }
    }

    /* --- TOC --- */
    .toc {
      position: sticky;
      top: 12px;
      background: #fff;
      border: 1px solid #eee;
      border-radius: 12px;
      padding: 12px;
      box-shadow: 0 2px 10px rgba(0, 0, 0, .06);
    }

    .toc h2 {
      font-size: 14px;
      letter-spacing: .02em;
      color: #0a4275;
      margin-bottom: 8px;
      text-transform: uppercase;
    }

    .toc ul {
      list-style: none;
      padding-left: 0;
      display: grid;
      gap: 6px;
    }

    .toc a {
      text-decoration: none;
      color: #0a4275;
      font-size: 14px;
    }

    .toc a:hover {
      text-decoration: underline;
    }

    .toc-toggle {
      display: none;
      margin: 8px 0 0;
    }

    @media (max-width: 1024px) {
      .toc {
        position: relative;
      }

      .toc-toggle {
        display: block;
      }

      .toc[aria-expanded="false"] ul {
        display: none;
      }
    }

    /* --- Article --- */
    article.post {
      background: #fff;
      border-radius: 12px;
      box-shadow: 0 2px 10px rgba(0, 0, 0, .06);
      padding: 18px;
    }

    .post__header {
      margin-bottom: 8px;
    }

    .post__figure {
      margin: 0 0 14px;
    }

    .post__figure img {
      width: 100%;
      height: auto;
      border-radius: 10px;
    }

    .post__content {
      display: grid;
      gap: 14px;
      font-size: 16px;
    }

    .post__content h2 {
      color: #060606;
      font-size: clamp(18px, 2.2vw, 22px);
      margin: 10px 0 4px;
    }

    .post__content p {
      margin: 0;
    }

    .key-list {
      padding-left: 18px;
    }

    /* --- Callouts / Tags --- */
    .tag {
      display: inline-flex;
      gap: 8px;
      align-items: center;
      background: #0a4275;
      color: #fff;
      padding: 4px 10px;
      border-radius: 999px;
      font-size: 12px;
      font-weight: 700;
    }

    /* --- Progress bar --- */
    .progress {
      position: fixed;
      left: 0;
      top: 0;
      height: 3px;
      background: #0a4275;
      width: 0%;
      z-index: 9999;
      transition: width .1s linear;
    }

    /* --- Footer (as provided) --- */
    footer {
      background-color: #0a4275;
      padding: 20px;
      text-align: center;
      color: white;
    }

    footer a {
      color: rgb(228, 212, 25);
    }



    /* Footer layout */
.site-footer {
  background-color:#0a4275;
  color:#fff;
  padding:24px 16px;
}
.site-footer a { color: rgb(228,212,25); text-decoration:none; }
.site-footer a:hover { text-decoration:underline; }

/* Two-column flex: logo left, content right */
.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 24px;
}

/* Logo sizing */
.footer-logo img {
  display:block;
  width:auto;
  height:80px;         /* tweak if you want larger/smaller */
  object-fit:contain;
}

/* Right column */
.footer-right {
  text-align:right;    /* pushes text to the opposite side of the logo */
}
.footer-links {
  margin:0 0 6px 0;
  font-weight:600;
}
.footer-powered {
  margin:0;
  opacity:.95;
}

/* Mobile: stack vertically, center for readability */
@media (max-width: 768px) {
  .footer-inner {
    flex-direction:column;
    align-items:center;
    text-align:center;
  }
  .footer-right {
    text-align:center;
  }
  .footer-logo img {
    height:72px;
  }
}


#scrollProgress {
            position: fixed;
            top: 10;
            left: 0;
            width: 0%;
            height: 4.5px;
            /* Adjust the height as needed */
            background: linear-gradient(to right, #f11818, #3f2cee);
            /* Customize the color */
            z-index: 100;
        }