
    /* =========================================================
       BRAND COLOUR SYSTEM
    ========================================================= */
    :root {
      --dark:       #13544E;
      --heading:    #095D40;
      --accent:     #6C9A40;
      --cta:        #008060;
      --lime:       #D3E162;
      --lime-light: #E4F577;
      --bg:         #FBF7ED;
      --alt:        #E0EDD4;
      --text:       #212B36;
      --muted:      #5a6a75;
      --white:      #ffffff;
      --error:      #ef4444;
      --radius:     12px;
      --radius-lg:  20px;
      --shadow:     0 4px 24px rgba(9,93,64,0.09);
      --shadow-lg:  0 8px 40px rgba(9,93,64,0.14);
      --shadow-xl:  0 16px 64px rgba(9,93,64,0.18);
      --transition: all 0.25s ease;
    }
    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
    html { scroll-behavior: smooth; }
    body {
      font-family: 'Inter', sans-serif;
      background: var(--bg);
      color: var(--text);
      line-height: 1.65;
      -webkit-font-smoothing: antialiased;
    }
    a { text-decoration: none; color: inherit; }
    img { max-width: 100%; display: block; }
    .container    { max-width: 1100px; margin: 0 auto; padding: 0 24px; }
    .container-sm { max-width: 780px;  margin: 0 auto; padding: 0 24px; }

    /* =========================================================
       SHARED UTILITIES
    ========================================================= */
    .section-label {
      display: inline-flex; align-items: center; gap: 8px;
      background: var(--lime); color: var(--heading);
      font-size: 0.78rem; font-weight: 800;
      letter-spacing: 0.08em; text-transform: uppercase;
      padding: 6px 14px; border-radius: 100px; margin-bottom: 14px;
    }
    .section-label.white {
      background: rgba(211,225,98,0.18);
      border: 1px solid rgba(211,225,98,0.38);
      color: var(--lime);
    }
    .section-header { text-align: center; max-width: 640px; margin: 0 auto 48px; }
    .section-header h2 {
      font-size: clamp(1.6rem, 3vw, 2.2rem);
      font-weight: 900; color: var(--heading);
      letter-spacing: -0.02em; margin-bottom: 12px; line-height: 1.2;
    }
    .section-header p { font-size: 0.97rem; color: var(--muted); line-height: 1.7; }

    /* =========================================================
       SECTION 1 — FULL NAVIGATION
    ========================================================= */
    .site-nav {
      background: var(--white);
      border-bottom: 1px solid rgba(9,93,64,0.10);
      box-shadow: 0 2px 12px rgba(9,93,64,0.06);
      position: sticky; top: 0; z-index: 1000;
    }
    .site-nav-inner {
      display: flex; align-items: center;
      justify-content: space-between; height: 68px; gap: 12px;
    }
    .nav-logo { font-size: 1.15rem; font-weight: 900; color: var(--heading); flex-shrink: 0; }
    .nav-logo .acc { color: var(--accent); }
    .nav-links { display: flex; align-items: center; gap: 4px; list-style: none; flex: 1; justify-content: center; }
    .nav-links > li > a {
      display: flex; align-items: center; gap: 5px;
      font-size: 0.88rem; font-weight: 700; color: var(--text);
      padding: 8px 12px; border-radius: 8px; transition: var(--transition);
    }
    .nav-links > li > a:hover { background: var(--alt); color: var(--heading); }
    .nav-links > li > a.active { color: var(--cta); }
    .nav-cta-btn {
      display: inline-flex; align-items: center; gap: 7px;
      background: var(--cta); color: var(--white);
      font-size: 0.86rem; font-weight: 800;
      padding: 10px 20px; border-radius: 10px; transition: var(--transition);
      flex-shrink: 0;
    }
    .nav-cta-btn:hover { background: var(--heading); }
    .nav-toggle {
      display: none; background: none; border: none;
      font-size: 1.3rem; color: var(--heading); cursor: pointer; padding: 6px; border-radius: 6px;
    }

    /* =========================================================
       BREADCRUMB BAR
    ========================================================= */
    .breadcrumb-bar {
      background: var(--white);
      border-bottom: 1px solid rgba(9,93,64,0.08);
      padding: 10px 0;
    }
    .breadcrumb { display: flex; align-items: center; gap: 8px; font-size: 0.82rem; flex-wrap: wrap; }
    .breadcrumb a { color: var(--cta); font-weight: 600; transition: var(--transition); }
    .breadcrumb a:hover { color: var(--heading); }
    .breadcrumb span { color: var(--muted); }
    .breadcrumb i { color: var(--muted); font-size: 0.60rem; }
    .breadcrumb .sep { color: var(--muted); font-size: 0.58rem; }
    .breadcrumb .current { color: var(--heading); font-weight: 800; }

    /* =========================================================
       SECTION 2 — CATEGORY HEADER HERO
    ========================================================= */
    .cat-hero {
      background: linear-gradient(135deg, var(--dark) 0%, #0d6b62 52%, var(--heading) 100%);
      padding: 60px 0 72px; position: relative; overflow: hidden;
    }
    .cat-hero::before {
      content: ''; position: absolute; inset: 0;
      background: url("data:image/svg+xml,%3Csvg width='70' height='70' viewBox='0 0 70 70' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='35' cy='35' r='2' fill='%23ffffff' fill-opacity='0.025'/%3E%3C/svg%3E");
      pointer-events: none;
    }
    .cat-hero::after {
      content: ''; position: absolute; bottom: -100px; right: -100px;
      width: 400px; height: 400px;
      background: radial-gradient(circle, rgba(211,225,98,0.09) 0%, transparent 70%);
      pointer-events: none;
    }
    .cat-hero-inner {
      display: grid; grid-template-columns: 1fr 380px;
      gap: 52px; align-items: center; position: relative; z-index: 1;
    }

    /* Left — text */
    .cat-hero-left { color: var(--white); }
    .cat-hero-pill {
      display: inline-flex; align-items: center; gap: 8px;
      background: rgba(211,225,98,0.16); border: 1px solid rgba(211,225,98,0.35);
      color: var(--lime); font-size: 0.78rem; font-weight: 800;
      letter-spacing: 0.08em; text-transform: uppercase;
      padding: 6px 16px; border-radius: 100px; margin-bottom: 20px;
    }
    .cat-hero-icon-wrap {
      display: flex; align-items: center; gap: 18px; margin-bottom: 20px;
    }
    .cat-hero-icon {
      width: 72px; height: 72px; border-radius: 20px; flex-shrink: 0;
      display: flex; align-items: center; justify-content: center;
      font-size: 1.8rem; border: 2px solid rgba(211,225,98,0.30);
    }
    .cat-hero-left h1 {
      font-size: clamp(1.9rem, 4vw, 2.8rem);
      font-weight: 900; line-height: 1.12;
      letter-spacing: -0.025em; margin-bottom: 14px;
    }
    .cat-hero-left h1 span { color: var(--lime); }
    .cat-hero-left p {
      font-size: 1.02rem; color: rgba(255,255,255,0.82);
      line-height: 1.70; max-width: 520px; margin-bottom: 28px;
    }
    .cat-hero-badges { display: flex; flex-wrap: wrap; gap: 10px; }
    .cat-hero-badge {
      display: inline-flex; align-items: center; gap: 7px;
      background: rgba(255,255,255,0.10); border: 1px solid rgba(255,255,255,0.18);
      color: var(--white); font-size: 0.82rem; font-weight: 700;
      padding: 8px 14px; border-radius: 100px;
    }
    .cat-hero-badge i { color: var(--lime); font-size: 0.75rem; }

    /* Right — search card */
    .cat-search-card {
      background: var(--white); border-radius: var(--radius-lg);
      padding: 30px 26px; box-shadow: var(--shadow-xl);
    }
    .csc-label {
      font-size: 0.82rem; font-weight: 900; color: var(--heading);
      margin-bottom: 12px; display: flex; align-items: center; gap: 7px;
    }
    .csc-label i { color: var(--cta); }
    .csc-search-wrap { position: relative; margin-bottom: 18px; }
    .csc-search-input {
      width: 100%; padding: 12px 44px 12px 40px;
      border: 1.5px solid rgba(9,93,64,0.15); border-radius: var(--radius);
      background: var(--bg); color: var(--text);
      font-family: inherit; font-size: 0.92rem; outline: none; transition: var(--transition);
    }
    .csc-search-input:focus {
      border-color: var(--cta); background: var(--white);
      box-shadow: 0 0 0 3px rgba(0,128,96,0.10);
    }
    .csc-search-input::placeholder { color: #aab3bb; }
    .csc-search-icon {
      position: absolute; left: 13px; top: 50%; transform: translateY(-50%);
      color: var(--cta); font-size: 0.85rem; pointer-events: none;
    }
    .csc-clear {
      position: absolute; right: 13px; top: 50%; transform: translateY(-50%);
      color: var(--muted); font-size: 0.80rem; cursor: pointer;
      display: none; background: none; border: none; padding: 2px;
    }

    /* Category search results */
    .csc-results { display: flex; flex-direction: column; gap: 6px; }
    .csc-result-item {
      display: flex; align-items: center; gap: 10px;
      padding: 9px 12px; border-radius: var(--radius);
      background: var(--bg); border: 1.5px solid rgba(9,93,64,0.09);
      cursor: pointer; transition: var(--transition); text-decoration: none;
    }
    .csc-result-item:hover { border-color: var(--cta); background: rgba(0,128,96,0.04); }
    .csc-result-icon { color: var(--cta); font-size: 0.75rem; flex-shrink: 0; }
    .csc-result-text { font-size: 0.84rem; font-weight: 700; color: var(--heading); flex: 1; }
    .csc-result-time { font-size: 0.70rem; color: var(--muted); white-space: nowrap; }
    .csc-arrow { color: var(--cta); font-size: 0.68rem; flex-shrink: 0; transition: var(--transition); }
    .csc-result-item:hover .csc-arrow { transform: translateX(3px); }

    /* Quick stats row in card */
    .csc-stats { display: flex; gap: 10px; margin-top: 16px; }
    .csc-stat {
      flex: 1; text-align: center; padding: 10px 8px;
      background: var(--alt); border-radius: var(--radius);
    }
    .csc-stat strong { display: block; font-size: 1rem; font-weight: 900; color: var(--heading); }
    .csc-stat span   { font-size: 0.68rem; color: var(--muted); }

    /* =========================================================
       SECTION 3 — ARTICLES LIST
    ========================================================= */
    .articles-section { background: var(--bg); padding: 48px 0; }

    /* Sort & filter bar */
    .articles-toolbar {
      display: flex; align-items: center; justify-content: space-between;
      flex-wrap: wrap; gap: 12px; margin-bottom: 24px;
      padding: 14px 18px; background: var(--white);
      border-radius: var(--radius-lg); border: 1.5px solid rgba(9,93,64,0.09);
      box-shadow: var(--shadow);
    }
    .toolbar-left { display: flex; align-items: center; gap: 8px; flex-wrap: wrap; }
    .toolbar-tag {
      display: inline-flex; align-items: center; gap: 5px;
      font-size: 0.78rem; font-weight: 800; padding: 6px 13px;
      border-radius: 100px; cursor: pointer; transition: var(--transition);
      background: var(--bg); color: var(--muted);
      border: 1.5px solid rgba(9,93,64,0.10);
    }
    .toolbar-tag:hover { border-color: var(--cta); color: var(--cta); }
    .toolbar-tag.active { background: var(--cta); color: var(--white); border-color: var(--cta); }
    .toolbar-right { display: flex; align-items: center; gap: 10px; }
    .toolbar-sort {
      display: flex; align-items: center; gap: 6px;
      font-size: 0.82rem; font-weight: 700; color: var(--muted);
    }
    .toolbar-sort select {
      font-family: inherit; font-size: 0.82rem; font-weight: 700;
      color: var(--heading); background: var(--bg);
      border: 1.5px solid rgba(9,93,64,0.12); border-radius: 8px;
      padding: 6px 28px 6px 10px; outline: none; cursor: pointer;
      appearance: none;
      background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='7' viewBox='0 0 10 7'%3E%3Cpath d='M1 1l4 4 4-4' stroke='%235a6a75' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
      background-repeat: no-repeat; background-position: right 10px center;
    }
    .articles-count {
      font-size: 0.82rem; font-weight: 700; color: var(--muted);
      display: flex; align-items: center; gap: 6px;
    }
    .articles-count strong { color: var(--heading); }

    /* Article cards */
    .articles-list { display: flex; flex-direction: column; gap: 14px; }
    .article-card {
      background: var(--white); border-radius: var(--radius-lg);
      border: 1.5px solid rgba(9,93,64,0.09); box-shadow: var(--shadow);
      overflow: hidden; transition: var(--transition);
      display: flex; align-items: stretch;
    }
    .article-card:hover { border-color: var(--cta); box-shadow: var(--shadow-lg); transform: translateX(4px); }
    .article-card.featured { border-color: rgba(211,225,98,0.60); background: rgba(211,225,98,0.04); }

    /* Accent stripe */
    .ac-stripe {
      width: 5px; flex-shrink: 0;
      background: linear-gradient(180deg, var(--cta), var(--lime));
    }
    .article-card.featured .ac-stripe { background: linear-gradient(180deg, var(--lime), var(--lime-light)); }

    .ac-body {
      flex: 1; padding: 22px 24px;
      display: flex; align-items: center; gap: 20px;
    }

    /* Article icon */
    .ac-icon {
      width: 52px; height: 52px; border-radius: 14px; flex-shrink: 0;
      display: flex; align-items: center; justify-content: center; font-size: 1.1rem;
    }

    /* Article content */
    .ac-content { flex: 1; min-width: 0; }
    .ac-top { display: flex; align-items: center; gap: 8px; margin-bottom: 6px; flex-wrap: wrap; }
    .ac-badge {
      font-size: 0.64rem; font-weight: 900; padding: 2px 9px;
      border-radius: 100px; text-transform: uppercase; letter-spacing: 0.04em;
    }
    .ac-badge.popular  { background: var(--lime); color: var(--heading); }
    .ac-badge.new      { background: #dbeafe; color: #1e40af; }
    .ac-badge.featured { background: #fef3c7; color: #92400e; }
    .ac-content h3 {
      font-size: 0.97rem; font-weight: 900; color: var(--heading);
      margin-bottom: 6px; line-height: 1.35;
    }
    .ac-content p {
      font-size: 0.86rem; color: var(--muted);
      line-height: 1.60; margin-bottom: 12px;
    }
    .ac-meta { display: flex; align-items: center; gap: 14px; flex-wrap: wrap; }
    .ac-meta-item {
      display: flex; align-items: center; gap: 5px;
      font-size: 0.76rem; color: var(--muted);
    }
    .ac-meta-item i { color: var(--cta); font-size: 0.68rem; }
    .ac-meta-item strong { color: var(--heading); }

    /* Article CTA */
    .ac-cta {
      display: flex; flex-direction: column; align-items: flex-end;
      justify-content: space-between; gap: 12px; padding: 22px 22px 22px 0;
      flex-shrink: 0;
    }
    .ac-read-btn {
      display: inline-flex; align-items: center; gap: 7px;
      background: var(--cta); color: var(--white);
      font-size: 0.82rem; font-weight: 900;
      padding: 9px 16px; border-radius: 9px; transition: var(--transition);
      white-space: nowrap;
    }
    .ac-read-btn:hover { background: var(--heading); transform: translateY(-2px); }
    .ac-helpful {
      display: flex; align-items: center; gap: 8px;
      font-size: 0.74rem; color: var(--muted);
    }
    .ac-helpful-btn {
      display: inline-flex; align-items: center; gap: 4px;
      font-size: 0.72rem; font-weight: 700; padding: 4px 9px;
      border-radius: 7px; border: 1.5px solid rgba(9,93,64,0.12);
      background: var(--bg); color: var(--muted); cursor: pointer;
      transition: var(--transition);
    }
    .ac-helpful-btn:hover { border-color: var(--cta); color: var(--cta); }
    .ac-helpful-btn.voted { background: #dcfce7; border-color: #86efac; color: #14532d; }

    /* No results state */
    .no-results {
      text-align: center; padding: 52px 24px;
      background: var(--white); border-radius: var(--radius-lg);
      border: 1.5px dashed rgba(9,93,64,0.18);
      display: none;
    }
    .no-results i { font-size: 2.2rem; color: var(--muted); margin-bottom: 14px; display: block; opacity: 0.50; }
    .no-results h4 { font-size: 1rem; font-weight: 900; color: var(--heading); margin-bottom: 8px; }
    .no-results p  { font-size: 0.88rem; color: var(--muted); margin-bottom: 16px; }
    .no-results a  { color: var(--cta); font-weight: 800; }

    /* =========================================================
       SECTION 4 — RELATED CATEGORIES
    ========================================================= */
    .related-section { background: var(--alt); padding: 68px 0; }
    .related-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
    .related-card {
      background: var(--white); border-radius: var(--radius-lg);
      padding: 24px 20px; border: 1.5px solid rgba(9,93,64,0.09);
      box-shadow: var(--shadow); transition: var(--transition);
      display: flex; flex-direction: column; gap: 12px;
      text-decoration: none;
    }
    .related-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: var(--cta); }
    .related-card::before {
      content: ''; display: block; width: 100%; height: 3px;
      background: linear-gradient(90deg, var(--cta), var(--lime));
      border-radius: 100px; opacity: 0; transition: var(--transition);
      margin-bottom: -4px;
    }
    .related-card:hover::before { opacity: 1; }
    .rc-icon {
      width: 50px; height: 50px; border-radius: 13px; flex-shrink: 0;
      display: flex; align-items: center; justify-content: center; font-size: 1.1rem;
    }
    .related-card h4 { font-size: 0.94rem; font-weight: 900; color: var(--heading); }
    .related-card p  { font-size: 0.82rem; color: var(--muted); line-height: 1.58; flex: 1; }
    .related-card-footer {
      display: flex; align-items: center; justify-content: space-between;
      padding-top: 10px; border-top: 1px solid var(--alt);
    }
    .rc-count {
      font-size: 0.74rem; font-weight: 800; color: var(--muted);
      display: flex; align-items: center; gap: 4px;
    }
    .rc-count i { color: var(--cta); font-size: 0.68rem; }
    .rc-arrow { color: var(--cta); font-size: 0.78rem; transition: var(--transition); }
    .related-card:hover .rc-arrow { transform: translateX(4px); }

    /* =========================================================
       SECTION 5 — STILL NEED HELP
    ========================================================= */
    .still-section { background: var(--bg); padding: 68px 0; }
    .still-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-bottom: 20px; }
    .still-card {
      background: var(--white); border-radius: var(--radius-lg);
      padding: 28px 24px; border: 1.5px solid rgba(9,93,64,0.09);
      box-shadow: var(--shadow); transition: var(--transition);
      display: flex; flex-direction: column; gap: 12px;
    }
    .still-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-3px); }
    .still-icon {
      width: 52px; height: 52px; border-radius: 15px;
      display: flex; align-items: center; justify-content: center; font-size: 1.1rem;
    }
    .still-card h4 { font-size: 1rem; font-weight: 900; color: var(--heading); }
    .still-card p  { font-size: 0.87rem; color: var(--muted); line-height: 1.65; flex: 1; }
    .still-meta { display: flex; flex-direction: column; gap: 5px; margin-bottom: 4px; }
    .still-meta-row { display: flex; align-items: center; gap: 7px; font-size: 0.82rem; }
    .still-meta-row i { color: var(--cta); font-size: 0.72rem; }
    .still-btn {
      display: inline-flex; align-items: center; justify-content: center; gap: 8px;
      font-size: 0.88rem; font-weight: 900;
      padding: 12px 20px; border-radius: 10px; transition: var(--transition); width: 100%;
    }
    .still-btn.green  { background: var(--cta); color: var(--white); }
    .still-btn.green:hover  { background: var(--heading); }
    .still-btn.outline { background: var(--white); color: var(--heading); border: 2px solid rgba(9,93,64,0.18); }
    .still-btn.outline:hover { border-color: var(--cta); color: var(--cta); }
    .still-call-card {
      background: var(--white); border-radius: var(--radius-lg);
      padding: 24px; border: 1.5px solid rgba(9,93,64,0.09); box-shadow: var(--shadow);
      display: flex; align-items: center; gap: 20px; transition: var(--transition);
    }
    .still-call-card:hover { box-shadow: var(--shadow-lg); }
    .still-call-icon {
      width: 60px; height: 60px; border-radius: 15px; flex-shrink: 0;
      background: var(--alt); display: flex; align-items: center;
      justify-content: center; font-size: 1.2rem; color: var(--heading);
    }
    .still-call-text h4 { font-size: 1rem; font-weight: 900; color: var(--heading); margin-bottom: 4px; }
    .still-call-text p  { font-size: 0.86rem; color: var(--muted); line-height: 1.55; }
    .still-call-btn {
      display: inline-flex; align-items: center; gap: 8px;
      background: var(--heading); color: var(--white);
      font-size: 0.88rem; font-weight: 900;
      padding: 12px 22px; border-radius: 10px; transition: var(--transition);
      white-space: nowrap; margin-left: auto; flex-shrink: 0;
    }
    .still-call-btn:hover { background: var(--dark); transform: translateY(-2px); }

    /* =========================================================
       FULL SITE FOOTER
    ========================================================= */
    .site-footer { background: var(--dark); padding: 60px 0 0; color: rgba(255,255,255,0.70); }
    .footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.2fr; gap: 36px; margin-bottom: 48px; }
    .footer-logo { font-size: 1.2rem; font-weight: 900; color: var(--white); margin-bottom: 12px; }
    .footer-logo .acc { color: var(--lime); }
    .footer-col p { font-size: 0.86rem; line-height: 1.70; margin-bottom: 18px; }
    .footer-col h4 { font-size: 0.88rem; font-weight: 900; color: var(--white); margin-bottom: 14px; text-transform: uppercase; letter-spacing: 0.06em; }
    .footer-col ul  { list-style: none; display: flex; flex-direction: column; gap: 8px; }
    .footer-col ul a { font-size: 0.84rem; color: rgba(255,255,255,0.65); transition: var(--transition); display: flex; align-items: center; gap: 7px; }
    .footer-col ul a:hover { color: var(--lime); }
    .footer-col ul a i { font-size: 0.72rem; color: var(--lime); opacity: 0.70; }
    .footer-social { display: flex; gap: 10px; margin-bottom: 20px; }
    .footer-social a {
      width: 36px; height: 36px; border-radius: 9px;
      background: rgba(255,255,255,0.09); color: rgba(255,255,255,0.70);
      display: flex; align-items: center; justify-content: center;
      font-size: 0.82rem; transition: var(--transition);
    }
    .footer-social a:hover { background: var(--lime); color: var(--heading); }
    .footer-nl-label { font-size: 0.78rem; color: var(--lime); font-weight: 700; margin-bottom: 8px; display: flex; align-items: center; gap: 6px; }
    .footer-nl-row { display: flex; gap: 6px; }
    .footer-nl-row input {
      flex: 1; padding: 9px 12px;
      border: 1px solid rgba(255,255,255,0.18);
      border-radius: 8px; background: rgba(255,255,255,0.09);
      color: var(--white); font-family: inherit; font-size: 0.84rem; outline: none;
    }
    .footer-nl-row input::placeholder { color: rgba(255,255,255,0.40); }
    .footer-nl-row button {
      background: var(--lime); color: var(--heading);
      border: none; padding: 9px 14px; border-radius: 8px;
      font-weight: 900; font-size: 0.80rem; cursor: pointer; transition: var(--transition);
    }
    .footer-nl-row button:hover { background: var(--lime-light); }
    .footer-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-bottom: 16px; }
    .footer-stat { text-align: center; background: rgba(255,255,255,0.07); border-radius: 9px; padding: 10px; }
    .footer-stat strong { display: block; font-size: 1.1rem; font-weight: 900; color: var(--lime); }
    .footer-stat span { font-size: 0.72rem; color: rgba(255,255,255,0.60); }
    .footer-trust { display: flex; flex-direction: column; gap: 8px; }
    .ft-item { display: flex; align-items: center; gap: 8px; font-size: 0.80rem; }
    .ft-item i { color: var(--lime); }
    .ft-item strong { color: var(--white); }
    .footer-bottom {
      border-top: 1px solid rgba(255,255,255,0.10); padding: 18px 0;
      display: flex; align-items: center; justify-content: space-between;
      flex-wrap: wrap; gap: 12px;
    }
    .footer-bottom p { font-size: 0.80rem; color: rgba(255,255,255,0.50); }
    .footer-bottom-links { display: flex; gap: 16px; list-style: none; }
    .footer-bottom-links a { font-size: 0.78rem; color: rgba(255,255,255,0.50); transition: var(--transition); }
    .footer-bottom-links a:hover { color: var(--lime); }

    /* =========================================================
       RESPONSIVE
    ========================================================= */
    @media (max-width: 1024px) {
      .cat-hero-inner { grid-template-columns: 1fr; }
      .cat-search-card { max-width: 500px; }
      .related-grid { grid-template-columns: repeat(2, 1fr); }
      .footer-grid { grid-template-columns: 1fr 1fr; }
    }
    @media (max-width: 768px) {
      .nav-links, .nav-cta-btn { display: none; }
      .nav-toggle { display: block; }
      .ac-body { flex-direction: column; align-items: flex-start; }
      .ac-cta { flex-direction: row; align-items: center; padding: 0 16px 16px; }
      .still-grid { grid-template-columns: 1fr; }
      .related-grid { grid-template-columns: 1fr; }
      .still-call-card { flex-wrap: wrap; }
      .still-call-btn { margin-left: 0; width: 100%; justify-content: center; }
      .footer-grid { grid-template-columns: 1fr; }
      .footer-bottom { flex-direction: column; text-align: center; }
      .footer-bottom-links { flex-wrap: wrap; justify-content: center; }
    }
    @media (max-width: 560px) {
      .articles-toolbar { flex-direction: column; align-items: flex-start; }
      .toolbar-left { gap: 6px; }
    }

    /* =========================================================
       ANIMATIONS
    ========================================================= */
    @keyframes fadeInUp  { from { opacity:0; transform:translateY(14px); } to { opacity:1; transform:translateY(0); } }
    @keyframes toastIn   { from { opacity:0; transform:translateX(-50%) translateY(10px); } to { opacity:1; transform:translateX(-50%) translateY(0); } }
    @keyframes toastOut  { from { opacity:1; } to { opacity:0; } }
    @keyframes slideInL  { from { opacity:0; transform:translateX(-14px); } to { opacity:1; transform:translateX(0); } }
  

/* ── Footer Bottom Bar (shared standard) ── */
.footer__bottom { background: rgb(251,247,237); border-top: none; padding: 0; }
.footer__bottom-inner { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 12px; }
.footer__copyright { font-size: 13px; color: rgb(0,0,0); margin: 0; font-weight: 600; }
.footer__legal { display: flex; gap: 20px; flex-wrap: wrap; list-style: none; padding: 0; margin: 0; }
.footer__legal li a { font-size: 12px; color: rgb(0,0,0); text-decoration: none; transition: all 0.25s ease; font-weight: 600; }
.footer__legal li a:hover { color: #0D3F3A; }
@media (max-width: 640px) {
  .footer__bottom-inner { flex-direction: column; text-align: center; }
  .footer__legal { justify-content: center; }
}

    /* Fix for fixed nav+announcement bar */
    body { padding-top: 115px; }
