:root {
  --navy: #1c3d5a;
  --navy-dark: #12293f;
  --navy-light: #2f6690;
  --bg: #faf7f2;
  --card: #ffffff;
  --text: #202733;
  --muted: #667085;
  --border: #e6e1d8;
  --amber: #b45309;
  --green-bg: #dcfce7;
  --green-text: #15803d;
  --gray-bg: #f1f5f9;
  --gray-text: #64748b;
}

* { box-sizing: border-box; }

body {
  margin: 0;
  font-family: -apple-system, "PingFang HK", "Microsoft JhengHei", "Noto Sans HK", Arial, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
}

.container {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 1.25rem;
}

a { color: inherit; }

.site-header {
  background: #fff;
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 10;
}
.header-inner { display: flex; align-items: center; gap: 2rem; height: 64px; }
.logo { display: flex; align-items: center; gap: 0.5rem; text-decoration: none; color: var(--navy); flex-shrink: 0; }
.logo-icon { width: 26px; height: 26px; color: var(--navy); }
.logo-text { font-weight: 700; font-size: 1.05rem; display: flex; flex-direction: column; line-height: 1.15; }
.logo-sub { font-weight: 400; font-size: 0.62rem; color: var(--muted); letter-spacing: 0.04em; }
.main-nav { display: flex; align-items: center; gap: 1.5rem; flex: 1; }
.main-nav a { color: var(--text); text-decoration: none; font-size: 0.9rem; }
.main-nav a:hover, .main-nav a.active { color: var(--navy); font-weight: 600; }

.header-actions { display: flex; align-items: center; gap: 1rem; }
.header-link { display: flex; align-items: center; gap: 0.3rem; color: var(--text); text-decoration: none; font-size: 0.9rem; }
.inline-form { display: inline; }
.link-btn { background: none; border: none; color: var(--muted); cursor: pointer; font-size: 0.88rem; padding: 0; font-family: inherit; }
.link-btn.danger { color: #b91c1c; }

.btn-primary, .btn-primary-small {
  background: var(--navy); color: #fff; border: none; border-radius: 6px;
  padding: 0.65rem 1.2rem; font-size: 0.95rem; text-decoration: none;
  cursor: pointer; display: inline-block; font-family: inherit;
}
.btn-primary-small { padding: 0.5rem 0.9rem; font-size: 0.85rem; }
.btn-primary:hover, .btn-primary-small:hover { background: var(--navy-dark); }
.btn-primary.full-width { width: 100%; text-align: center; }

.btn-light { background: #fff; color: var(--navy); border: none; border-radius: 6px; padding: 0.7rem 1.4rem; font-size: 0.95rem; text-decoration: none; font-weight: 600; display: inline-block; }
.btn-outline-light { background: transparent; color: #fff; border: 1px solid rgba(255,255,255,0.5); border-radius: 6px; padding: 0.7rem 1.4rem; font-size: 0.95rem; text-decoration: none; display: inline-block; }
.btn-outline-light:hover { border-color: #fff; }
.as-summary { list-style: none; }
.as-summary::-webkit-details-marker { display: none; }

.flash { margin: 1rem 0; padding: 0.75rem 1rem; border-radius: 6px; font-size: 0.92rem; }
.flash-success { background: var(--green-bg); color: var(--green-text); }
.flash-error { background: #fee2e2; color: #b91c1c; }

.hero-band { background: var(--navy); color: #fff; padding-top: 3rem; }
.hero-title { font-size: 2.4rem; margin: 0 0 0.25rem; font-weight: 800; }
.hero-subtitle { font-size: 1.15rem; margin: 0 0 0.9rem; color: rgba(255,255,255,0.85); }
.hero-desc { max-width: 640px; color: rgba(255,255,255,0.75); margin: 0 0 1.5rem; }
.hero-actions { display: flex; gap: 0.75rem; margin-bottom: 2.5rem; }

.stats-bar { border-top: 1px solid rgba(255,255,255,0.15); background: rgba(0,0,0,0.12); }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; padding: 1.5rem 1.25rem; }
.stat-item { display: flex; flex-direction: column; gap: 0.15rem; }
.stat-icon { width: 22px; height: 22px; color: rgba(255,255,255,0.6); margin-bottom: 0.35rem; }
.stat-icon svg { width: 100%; height: 100%; }
.stat-number { font-size: 1.6rem; font-weight: 700; }
.stat-label { font-size: 0.82rem; color: rgba(255,255,255,0.7); }

.section-title { font-size: 1.15rem; margin: 0 0 1rem; font-weight: 700; }
.section-title.icon-title { display: flex; align-items: center; gap: 0.5rem; }
.section-title.icon-title svg { width: 20px; height: 20px; color: var(--navy); }
.section-header-row { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 0.75rem; margin-bottom: 0.75rem; }
.see-all-link { font-size: 0.88rem; color: var(--navy-light); text-decoration: none; font-weight: 600; }

.category-section { padding: 2.5rem 0 1.5rem; }

.category-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 0.85rem; }
.category-card {
  background: var(--card); border: 1px solid var(--border); border-radius: 10px;
  padding: 1.1rem 0.75rem; text-align: center; text-decoration: none; color: var(--text);
  display: flex; flex-direction: column; align-items: center; gap: 0.4rem;
  transition: box-shadow 0.15s, background 0.15s;
}
.category-card:hover, .category-card.active { background: #eef3f8; box-shadow: 0 2px 10px rgba(28,61,90,0.08); }
.category-icon { width: 26px; height: 26px; color: var(--navy-light); }
.category-icon svg { width: 100%; height: 100%; }
.category-name { font-size: 0.88rem; font-weight: 600; }
.category-count { font-size: 0.75rem; color: var(--muted); }

.district-section { padding: 0.5rem 0 2rem; display: flex; align-items: center; flex-wrap: wrap; gap: 0.75rem; }
.district-label { font-size: 0.88rem; color: var(--muted); flex-shrink: 0; }
.district-pills { display: flex; flex-wrap: wrap; gap: 0.5rem; }
.district-pill { border: 1px solid var(--border); background: var(--card); color: var(--text); border-radius: 999px; padding: 0.35rem 0.85rem; font-size: 0.82rem; text-decoration: none; }
.district-pill:hover { border-color: var(--navy-light); }
.district-pill.active { background: var(--navy); color: #fff; border-color: var(--navy); }

.today-section, .all-tenders-section { padding: 1.5rem 0; }
#results { scroll-margin-top: 80px; }
.tender-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 1rem; }
.tender-card {
  background: var(--card); border: 1px solid var(--border); border-radius: 10px; padding: 1.1rem;
  text-decoration: none; color: var(--text); display: flex; flex-direction: column; gap: 0.6rem;
  transition: box-shadow 0.15s, transform 0.15s;
}
.tender-card:hover { box-shadow: 0 4px 14px rgba(0,0,0,0.08); transform: translateY(-2px); }
.tender-card h3 { font-size: 1rem; margin: 0; }
.tender-card-tags { display: flex; align-items: center; flex-wrap: wrap; gap: 0.4rem; }
.tender-meta-inline { font-size: 0.78rem; color: var(--muted); }
.tender-card-bottom { display: flex; align-items: center; justify-content: space-between; gap: 0.5rem; margin-top: auto; padding-top: 0.4rem; border-top: 1px dashed var(--border); }
.tender-org { font-size: 0.82rem; color: var(--muted); }
.tender-deadline { font-size: 0.85rem; color: var(--amber); font-weight: 700; white-space: nowrap; }

.badge { background: #e0edff; color: var(--navy); font-size: 0.72rem; padding: 0.2rem 0.55rem; border-radius: 999px; font-weight: 600; }

/* Weekly featured tenders — same card system as everywhere else, with a
   bit of extra lift/shadow so it reads as a "featured" section. */
.weekly-sub { color: var(--muted); margin-top: -0.5rem; margin-bottom: 1.2rem; }
.weekly-grid { grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); }
.weekly-card {
  border: 1px solid var(--border);
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
  position: relative;
}
.weekly-card::before {
  content: '精選';
  position: absolute; top: -0.5rem; left: 0.9rem;
  background: var(--amber, #d97706); color: #fff;
  font-size: 0.68rem; font-weight: 700; padding: 0.15rem 0.55rem; border-radius: 999px;
}
.weekly-card:hover { box-shadow: 0 8px 22px rgba(0,0,0,0.12); transform: translateY(-4px); }

.result-count-hint { color: var(--muted); font-size: 0.82rem; margin-top: -0.6rem; margin-bottom: 0.8rem; }

/* FAQ / Q&A section — badge + centered heading + tinted background +
   rounded-pill accordion cards with a circular chevron toggle. */
.faq-section { background: #f2f6f4; padding: 3rem 0 3.5rem; margin-top: 1rem; }
.faq-intro { text-align: center; max-width: 640px; margin: 0 auto; }
.faq-badge {
  display: inline-block; border: 1px solid var(--navy-light); color: var(--navy);
  border-radius: 999px; padding: 0.3rem 1rem; font-size: 0.82rem; font-weight: 600;
  margin-bottom: 1rem; background: #fff;
}
.faq-heading { font-size: 2rem; margin: 0 0 0.6rem; color: var(--text); }
.faq-heading-accent { color: var(--navy); }
.faq-subtitle { color: var(--muted); margin: 0; }

.faq-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1rem; margin-top: 2rem; }
@media (max-width: 720px) { .faq-grid { grid-template-columns: 1fr; } }
.faq-item {
  border: 1.5px solid var(--navy-light); border-radius: 999px; padding: 1rem 1.4rem;
  background: var(--card); transition: border-radius 0.15s;
}
.faq-item[open] { border-radius: 20px; }
.faq-question {
  display: flex; align-items: center; justify-content: space-between; gap: 0.8rem;
  cursor: pointer; font-weight: 600; list-style: none;
}
.faq-question::-webkit-details-marker { display: none; }
.faq-chevron-badge {
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
  width: 28px; height: 28px; border-radius: 50%; background: #e0edff; color: var(--navy);
}
.faq-chevron { transition: transform 0.15s; }
details[open] .faq-chevron { transform: rotate(180deg); }
.faq-answer { margin-top: 0.9rem; color: var(--muted); line-height: 1.6; padding-right: 0.5rem; }
.badge-outline { background: none; border: 1px solid var(--border); color: var(--muted); font-weight: 500; }
.badge-status.open { background: var(--green-bg); color: var(--green-text); }
.badge-status.closed { background: var(--gray-bg); color: var(--gray-text); }

.search-inline { display: flex; gap: 0.5rem; }
.search-inline input { padding: 0.5rem 0.75rem; border: 1px solid var(--border); border-radius: 6px; font-size: 0.88rem; min-width: 200px; }
.active-filters { font-size: 0.85rem; color: var(--muted); display: flex; align-items: center; gap: 0.5rem; flex-wrap: wrap; margin-bottom: 0.5rem; }
.clear-link { color: var(--navy-light); text-decoration: none; }
.result-count { color: var(--muted); font-size: 0.88rem; margin: 0 0 1rem; }
.empty-state { color: var(--muted); padding: 2rem 0; }

.bottom-cta-box { background: var(--navy); color: #fff; border-radius: 12px; padding: 2rem; margin: 2rem 0 3rem; }
.bottom-cta-box h3 { margin: 0 0 0.75rem; font-size: 1.15rem; }
.bottom-cta-box ul { margin: 0 0 1.25rem; padding-left: 1.1rem; color: rgba(255,255,255,0.85); font-size: 0.9rem; }
.bottom-cta-box li { margin-bottom: 0.3rem; }
.bottom-cta-box .btn-primary.full-width { background: #fff; color: var(--navy); font-weight: 700; }
.bottom-cta-box .btn-primary.full-width:hover { background: #eef3f8; }

.tender-detail { padding: 2rem 0 4rem; max-width: 720px; margin: 0 auto; }
.back-link { color: var(--navy-light); text-decoration: none; font-size: 0.9rem; }
.tender-detail-tags { margin: 1rem 0 0.5rem; display: flex; align-items: center; gap: 0.5rem; flex-wrap: wrap; }
.tender-org-detail { color: var(--muted); margin-top: 0; }
.tender-meta-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; background: var(--card); border: 1px solid var(--border); border-radius: 10px; padding: 1rem; margin: 1.25rem 0; font-size: 0.9rem; }
.tender-description { white-space: pre-line; }
.source-link { font-size: 0.85rem; color: var(--muted); word-break: break-all; }
.cta-box { margin-top: 2rem; padding: 1rem 1.25rem; background: #eef3f8; border-radius: 8px; font-size: 0.95rem; }

.auth-form-wrap { max-width: 420px; margin: 2rem auto 4rem; }
.auth-form, .tender-form { display: flex; flex-direction: column; gap: 0.9rem; background: var(--card); border: 1px solid var(--border); border-radius: 10px; padding: 1.25rem; margin-top: 1rem; }
.auth-form label, .tender-form label { display: flex; flex-direction: column; gap: 0.35rem; font-size: 0.88rem; color: var(--muted); }
.auth-form input, .tender-form input, .tender-form select, .tender-form textarea { padding: 0.55rem 0.7rem; border: 1px solid var(--border); border-radius: 6px; font-size: 0.95rem; font-family: inherit; }
.auth-alt, .auth-hint { font-size: 0.85rem; color: var(--muted); text-align: center; }

.dashboard { padding: 2rem 0 4rem; }
.post-tender-details { margin: 1rem 0 2rem; }
.my-tenders-table { width: 100%; border-collapse: collapse; background: var(--card); border: 1px solid var(--border); border-radius: 10px; overflow: hidden; }
.my-tenders-table td { padding: 0.7rem 0.9rem; border-bottom: 1px solid var(--border); font-size: 0.9rem; }
.my-tenders-table a { color: var(--navy); text-decoration: none; }

.review-card { background: var(--card); border: 1px solid var(--border); border-radius: 10px; padding: 1.1rem; margin-bottom: 1rem; }
.review-actions { display: flex; gap: 0.75rem; margin-top: 0.75rem; }

.static-page { padding: 2.5rem 0 4rem; max-width: 720px; margin: 0 auto; }
.static-page h1 { margin-top: 0; }

/* ---------- Footer (multi-column) ---------- */
.site-footer { border-top: 1px solid var(--border); padding: 2.5rem 0 0; color: var(--muted); font-size: 0.85rem; background: #fff; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 2rem; padding-bottom: 2rem; }
.footer-brand .footer-logo { color: var(--navy); margin-bottom: 0.5rem; }
.footer-tagline { font-size: 0.82rem; max-width: 220px; }
.footer-col h4 { font-size: 0.85rem; color: var(--text); margin: 0 0 0.75rem; }
.footer-col a { display: block; color: var(--muted); text-decoration: none; font-size: 0.85rem; margin-bottom: 0.5rem; }
.footer-col a:hover { color: var(--navy); }
.footer-bottom { border-top: 1px solid var(--border); padding: 1rem 0; text-align: center; font-size: 0.8rem; }

/* ---------- Quick nav pill bars (Moovup-style) ---------- */
.quick-nav-wrap { background: #fff; border-bottom: 1px solid var(--border); }
.quick-nav-wrap-district { background: var(--bg); }
.quick-nav-scroll { display: flex; gap: 0.6rem; overflow-x: auto; padding: 0.75rem 0; scrollbar-width: thin; }
.quick-nav-scroll::-webkit-scrollbar { height: 4px; }
.quick-pill {
  flex-shrink: 0; padding: 0.4rem 0.9rem; border-radius: 999px; font-size: 0.85rem;
  text-decoration: none; color: var(--text); background: var(--gray-bg); white-space: nowrap;
}
.quick-pill.active { background: var(--navy); color: #fff; }
.quick-pill-outline { background: #fff; border: 1px solid var(--border); }
.quick-pill-outline.active { background: var(--navy); color: #fff; border-color: var(--navy); }

/* ---------- Mini stats strip ---------- */
.mini-stats { display: flex; gap: 2rem; padding: 1.25rem 0; flex-wrap: wrap; border-bottom: 1px solid var(--border); margin-bottom: 1.5rem; }
.mini-stat { font-size: 0.85rem; color: var(--muted); }
.mini-stat strong { color: var(--navy); font-size: 1.1rem; margin-right: 0.3rem; }

/* ---------- Category rows (Moovup-style grouped listings) ---------- */
.category-row { margin-bottom: 2rem; }
.row-icon { width: 20px; height: 20px; display: inline-flex; color: var(--navy-light); vertical-align: -4px; }
.row-icon svg { width: 100%; height: 100%; }
.row-count { font-weight: 400; color: var(--muted); font-size: 0.85rem; }
.tender-row-scroll { display: flex; gap: 1rem; overflow-x: auto; padding-bottom: 0.5rem; }
.tender-row-scroll .tender-card { flex: 0 0 280px; }

/* ---------- Featured organizations ---------- */
.featured-orgs { margin: 2.5rem 0; }
.org-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; }
.org-card {
  background: var(--card); border: 1px solid var(--border); border-radius: 10px; padding: 1rem;
  text-decoration: none; color: var(--text); display: flex; flex-direction: column; align-items: center;
  gap: 0.4rem; text-align: center; transition: box-shadow 0.15s;
}
.org-card:hover { box-shadow: 0 4px 14px rgba(0,0,0,0.08); }
.org-avatar {
  width: 44px; height: 44px; border-radius: 50%; background: var(--navy); color: #fff;
  display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: 1.1rem;
}
.org-name { font-size: 0.85rem; font-weight: 600; }
.org-count { font-size: 0.75rem; color: var(--muted); }

@media (max-width: 900px) {
  .category-grid { grid-template-columns: repeat(3, 1fr); }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .org-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 640px) {
  .category-grid { grid-template-columns: repeat(2, 1fr); }
  .tender-meta-grid { grid-template-columns: 1fr; }
  .header-inner { flex-wrap: wrap; height: auto; padding: 0.75rem 0; gap: 0.6rem; }
  .main-nav { order: 3; width: 100%; overflow-x: auto; gap: 1rem; }
  .footer-grid { grid-template-columns: 1fr; }
  .org-grid { grid-template-columns: repeat(2, 1fr); }
  .tender-row-scroll .tender-card { flex: 0 0 240px; }
}

/* Bulk action bar on /admin/review */
.bulk-action-bar { background: var(--card); border: 1px solid var(--border); border-radius: 10px; padding: 1rem 1.1rem; margin: 1rem 0 1.5rem; display: flex; flex-wrap: wrap; gap: 1rem; align-items: center; justify-content: space-between; }
.bulk-action-bar .filter-form { display: flex; flex-wrap: wrap; gap: 0.5rem; align-items: center; flex: 1 1 auto; }
.bulk-action-bar select, .bulk-action-bar input[type="text"] { padding: 0.45rem 0.6rem; border: 1px solid var(--border); border-radius: 6px; background: var(--bg, #fff); color: inherit; font: inherit; }
.bulk-action-bar .bulk-buttons { display: flex; gap: 0.5rem; align-items: center; flex-wrap: wrap; }
.bulk-action-bar .bulk-buttons form { margin: 0; display: inline; }

/* ---------- Hero section on homepage ---------- */
.hero { background: linear-gradient(135deg, #1e40af 0%, #3b82f6 50%, #06b6d4 100%); color: #fff; padding: 3rem 0 2rem; margin-bottom: 1.5rem; }
.hero-inner { text-align: center; }
.hero-title { font-size: clamp(1.75rem, 3vw, 2.5rem); margin: 0 0 0.5rem; font-weight: 700; letter-spacing: 0.5px; }
.hero-subtitle { font-size: 1.05rem; opacity: 0.95; max-width: 720px; margin: 0 auto 1.5rem; line-height: 1.55; }
.hero-search { display: flex; gap: 0.5rem; max-width: 640px; margin: 0 auto 1.5rem; }
.hero-search input[type="text"] { flex: 1; padding: 0.75rem 1rem; border: none; border-radius: 8px; font-size: 1rem; background: rgba(255,255,255,0.95); color: #1e293b; }
.hero-search input[type="text"]::placeholder { color: #64748b; }
.hero-search .btn-primary { padding: 0.75rem 1.5rem; border-radius: 8px; border: none; background: #f59e0b; color: #1e293b; font-weight: 600; cursor: pointer; font-size: 1rem; }
.hero-search .btn-primary:hover { background: #fbbf24; }
.hero-stats { display: flex; flex-wrap: wrap; justify-content: center; gap: 1.5rem 2.5rem; margin-top: 0.5rem; }
.hero-stat { display: flex; flex-direction: column; align-items: center; }
.hero-stat strong { font-size: 1.75rem; font-weight: 700; line-height: 1.1; }
.hero-stat span { font-size: 0.85rem; opacity: 0.85; margin-top: 0.15rem; }

/* ---------- Quick nav label ---------- */
.quick-nav-label { font-size: 0.8rem; font-weight: 600; color: var(--muted, #64748b); text-transform: uppercase; letter-spacing: 0.05em; margin-bottom: 0.5rem; }

/* ---------- Filter summary block on filtered homepage ---------- */
.filter-summary { background: var(--card); border: 1px solid var(--border); border-radius: 10px; padding: 1rem 1.25rem; margin: 1rem 0 1.5rem; }
.filter-summary .active-filters { margin: 0.5rem 0 0; }

/* ---------- Empty state card ---------- */
.empty-state-card { background: var(--card); border: 1px dashed var(--border); border-radius: 10px; padding: 3rem 2rem; text-align: center; grid-column: 1 / -1; }
.empty-icon { font-size: 3rem; margin: 0 0 0.5rem; }
.empty-title { font-size: 1.1rem; font-weight: 600; margin: 0 0 0.5rem; }
.empty-hint { color: var(--muted, #64748b); margin: 0; }

/* ---------- CTA box subtitle ---------- */
.cta-sub { color: var(--muted, #64748b); margin-top: -0.5rem; margin-bottom: 1rem; }

/* ---------- SEO block at bottom of homepage ---------- */
.seo-block { background: var(--card); border: 1px solid var(--border); border-radius: 10px; padding: 2rem 1.5rem; margin: 2rem 0; line-height: 1.7; }
.seo-block h2 { font-size: 1.4rem; margin: 0 0 1rem; color: var(--fg, #0f172a); }
.seo-block h3 { font-size: 1.1rem; margin: 1.5rem 0 0.75rem; color: var(--fg, #0f172a); }
.seo-block p { margin: 0 0 1rem; color: var(--fg, #334155); }
.seo-tags a { display: inline-block; padding: 0.2rem 0.6rem; margin: 0.15rem 0.2rem; background: var(--bg, #f1f5f9); border-radius: 999px; font-size: 0.9rem; text-decoration: none; color: var(--fg, #0f172a); }
.seo-tags a:hover { background: #3b82f6; color: #fff; }
.seo-list { padding-left: 1.4rem; margin: 0 0 1rem; }
.seo-list li { margin-bottom: 0.4rem; }
.seo-keywords { font-size: 0.9rem; color: var(--muted, #64748b); line-height: 1.8; }
.seo-foot { font-size: 0.9rem; color: var(--muted, #64748b); margin-top: 1.5rem; border-top: 1px solid var(--border); padding-top: 1rem; }

/* ---------- SEO footer block ---------- */
.seo-footer-block { background: rgba(255,255,255,0.04); padding: 1.5rem 1rem; margin-top: 2rem; border-top: 1px solid rgba(255,255,255,0.1); }
.seo-footer-title { font-weight: 600; margin: 0 0 0.5rem; }
.seo-footer-text { font-size: 0.85rem; line-height: 1.7; opacity: 0.85; margin: 0; }
.seo-footer-text a { color: var(--navy-light); text-decoration: underline; text-decoration-color: rgba(47,102,144,0.4); }
.seo-footer-text a:hover { color: var(--navy); }
.footer-blurb { font-size: 0.85rem; line-height: 1.6; opacity: 0.85; margin-top: 0.75rem; }
