/* ============================================================
   BHO THEME — v2.0.30
   All colors reference CSS custom properties set by Customizer
   ============================================================ */

/* ── RESET ──────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: Arial, Helvetica, sans-serif;
  color: var(--bho-dark);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
  background: #fff;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; height: auto; display: block; }

/* ── WEATHER BAR ─────────────────────────────────────────── */
#bho-wx-bar {
  background: #0a1220;
  border-bottom: 1px solid rgba(29,158,117,.3);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  padding: 0 clamp(1rem,3vw,2.5rem);
  height: 32px;
  flex-wrap: nowrap;
  overflow: hidden;
}
#bho-wx-readings {
  display: flex;
  align-items: center;
  gap: 0;
  flex-wrap: nowrap;
  overflow: hidden;
}
.wx-item {
  display: inline-flex;
  align-items: baseline;
  gap: .35rem;
  white-space: nowrap;
  padding: 0 .1rem;
}
.wx-lbl {
  font-size: .65rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: rgba(255,255,255,.4);
}
.wx-val {
  font-size: .75rem;
  font-weight: 700;
  color: #fff;
  font-family: Georgia, serif;
}
.wx-sep {
  color: rgba(255,255,255,.2);
  padding: 0 .5rem;
  font-size: .65rem;
}
.wx-updated {
  font-size: .6rem;
  color: rgba(255,255,255,.25);
  margin-left: .75rem;
  white-space: nowrap;
}
#bho-wx-toggle {
  background: none;
  border: 1px solid rgba(29,158,117,.5);
  color: var(--bho-teal);
  font-size: .62rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: .18rem .6rem;
  border-radius: 3px;
  cursor: pointer;
  white-space: nowrap;
  flex-shrink: 0;
  transition: background .15s, color .15s;
}
#bho-wx-toggle:hover {
  background: var(--bho-teal);
  color: #fff;
}
@media (max-width: 768px) {
  #bho-wx-bar { display: none !important; }
}

/* ── UTILITY BAR ──────────────────────────────────────────── */
.bho-util-bar {
  background: var(--bho-util-bg);
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 clamp(1rem, 3vw, 2.5rem);
}
.bho-util-bar .bho-util-list { display: flex; align-items: center; gap: clamp(.75rem,2vw,1.5rem); list-style: none; }
.bho-util-bar .bho-util-list a { font-size: .75rem; color: rgba(255,255,255,.68); letter-spacing: .02em; transition: color .15s; white-space: nowrap; }
.bho-util-bar .bho-util-list a:hover { color: #fff; }
.bho-util-right { display: flex; align-items: center; gap: .75rem; flex-shrink: 0; }
.bho-util-right a { font-size: .75rem; color: rgba(255,255,255,.68); white-space: nowrap; }
.bho-util-right a:hover { color: #fff; }
.bho-member-btn {
  background: var(--bho-teal) !important;
  color: #fff !important;
  font-weight: 700;
  letter-spacing: .05em;
  text-transform: uppercase;
  padding: .2rem .8rem;
  border-radius: 3px;
  transition: background .15s;
}

/* ── MAIN HEADER ─────────────────────────────────────────── */
.bho-header {
  background: #fff;
  border-bottom: 2px solid var(--bho-gray-mid);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 12px rgba(13,31,60,.07);
}
.bho-header-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  height: 76px;
  padding: 0 1rem;
  gap: .75rem;
}
.bho-logo { display: flex; align-items: center; flex-shrink: 0; }
.bho-logo img { height: 58px; width: auto; }

/* Primary nav — font/size/weight set by customizer-css.php */
.bho-primary-nav { flex: 1; display: flex; align-items: center; height: 100%; min-width: 0; }
.bho-primary-nav > ul { display: flex; list-style: none; height: 100%; flex-wrap: nowrap; }
.bho-primary-nav > ul > li { height: 100%; display: flex; align-items: center; }
.bho-primary-nav > ul > li.mega-full-item  { position: static; }
.bho-primary-nav > ul > li.mega-compact-item { position: relative; }
.bho-primary-nav > ul > li > a {
  display: flex; align-items: center; height: 100%;
  padding: 0 clamp(.55rem,1.2vw,1rem);
  color: var(--bho-navy); white-space: nowrap;
  border-bottom: 3px solid transparent;
  transition: color .15s, border-color .15s;
}
.nav-caret { margin-left: 3px; font-size: .6rem; transition: transform .2s; }

.nav-caret-btn {
  background: none;
  border: none;
  cursor: pointer;
  color: var(--bho-navy);
  font-size: .6rem;
  padding: 0 .25rem;
  line-height: 1;
  transition: transform .2s;
}
.mega-compact-item:hover .nav-caret-btn { transform: rotate(180deg); }
.mega-compact-item:hover .mega-compact { display: flex; gap: 2rem; }

.bho-primary-nav > ul > li:hover > a { color: var(--bho-teal); border-bottom-color: var(--bho-teal); }
.bho-primary-nav > ul > li:hover > a .nav-caret { transform: rotate(180deg); }

.bho-header-right { flex-shrink: 0; display: flex; align-items: center; gap: .6rem; }
.bho-search-btn { background: none; border: none; cursor: pointer; color: var(--bho-gray-text); display: flex; align-items: center; padding: .35rem; transition: color .15s; }
.bho-search-btn:hover { color: var(--bho-navy); }

.bho-search-overlay {
  display: none;
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0, 0, 0, 0.75);
  z-index: 9999;
  align-items: center;
  justify-content: center;
}

.bho-search-box {
  position: relative;
  width: 90%;
  max-width: 600px;
}

.bho-search-box input {
  width: 100%;
  padding: 16px 20px;
  font-size: 18px;
  border: none;
  border-radius: 4px;
  outline: none;
}

.bho-search-close {
  position: absolute;
  top: -40px;
  right: 0;
  background: none;
  border: none;
  color: #fff;
  font-size: 32px;
  cursor: pointer;
}


/* Donate button — colors/size overridden by customizer-css.php */
.bho-donate-btn {
  color: #fff !important;
  font-family: Arial, sans-serif;
  font-weight: 700;
  padding: .52rem 1.25rem;
  border-radius: 4px;
  border: none;
  cursor: pointer;
  white-space: nowrap;
  transition: background .15s;
  letter-spacing: .01em;
  display: inline-block;
}
.bho-hamburger { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: .4rem; }
.bho-hamburger span { display: block; width: 22px; height: 2px; background: var(--bho-navy); border-radius: 2px; transition: all .25s; }

/* ── MEGA MENU — FULL WIDTH ──────────────────────────────── */
.mega-full {
  display: none;
  position: absolute; top: 100%; left: 0; right: 0;
  background: #fff;
  border-top: 3px solid var(--bho-teal);
  box-shadow: 0 16px 48px rgba(13,31,60,.13);
  z-index: 200;
  padding: 2rem 0;
}
.mega-full-item:hover .mega-full,
.mega-full-item:focus-within .mega-full { display: block; }
.mega-full-inner {
  max-width: 1200px; margin: 0 auto;
  padding: 0 clamp(1rem,3vw,2.5rem);
  display: flex; gap: 2.5rem;
}

/* ── MEGA MENU — COMPACT ─────────────────────────────────── */
.mega-compact {
  display: none;
  position: absolute; top: calc(100% + 3px); left: 0;
  width: 520px;
  background: #fff;
  border-top: 3px solid var(--bho-teal);
  box-shadow: 0 16px 48px rgba(13,31,60,.13);
  z-index: 200;
  padding: 1.75rem;
  border-radius: 0 0 8px 8px;
}

.mega-compact-item { position: relative; }
.mega-compact-item > a { position: relative; z-index: 205; }
.mega-compact { z-index: 200; }

.mega-compact-item:hover .mega-compact { display: flex; gap: 2rem; }
.mega-compact-item:focus-within .mega-compact { pointer-events: none; }
.mega-compact-item:last-child .mega-compact,
.mega-compact-item:nth-last-child(2) .mega-compact { left: auto; right: 0; }



/* Shared mega col styles */
.mega-col { flex: 1; min-width: 0; }
.mega-col-label {
  font-size: .67rem; font-weight: 700; letter-spacing: .12em;
  text-transform: uppercase; color: var(--bho-teal);
  margin-bottom: .8rem; padding-bottom: .45rem;
  border-bottom: 1px solid var(--bho-gray-mid);
}
.mega-col ul { list-style: none; }
.mega-col ul li a {
  display: block; font-size: .86rem; color: var(--bho-gray-text);
  padding: .28rem 0 .28rem .6rem; margin-left: -.6rem;
  border-left: 2px solid transparent; line-height: 1.35;
  transition: color .12s, border-color .12s;
}
.mega-col ul li a:hover { color: var(--bho-navy); border-left-color: var(--bho-gold); }

/* Feature cards */
.mega-feature {
  flex: 0 0 210px; background: var(--bho-cream);
  border-radius: 8px; padding: 1.2rem;
  display: flex; flex-direction: column; gap: .6rem;
}
.mega-feature-eyebrow { font-size: .65rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--bho-gold); }
.mega-feature h4 { font-family: Georgia, serif; font-size: .97rem; font-weight: 700; color: var(--bho-navy); line-height: 1.3; }
.mega-feature p  { font-size: .8rem; color: var(--bho-gray-text); line-height: 1.5; flex: 1; }
.mega-feature .feat-link { font-size: .8rem; font-weight: 700; color: var(--bho-teal); margin-top: auto; }
.mega-feature.has-photo { background: var(--bho-navy); padding: 0; overflow: hidden; position: relative; }
.mega-feature.has-photo img { width: 100%; height: 100%; object-fit: cover; position: absolute; inset: 0; opacity: .45; }
.mega-feature.has-photo .photo-overlay { position: relative; z-index: 1; padding: 1.2rem; display: flex; flex-direction: column; gap: .6rem; height: 100%; min-height: 180px; }
.mega-feature.has-photo .mega-feature-eyebrow { color: var(--bho-gold-light); }
.mega-feature.has-photo h4 { color: #fff; }
.mega-feature.has-photo p  { color: rgba(255,255,255,.78); }
.mega-feature.has-photo .feat-link { color: #6ecfaa; }

/* ── MOBILE DRAWER ───────────────────────────────────────── */
.bho-mobile-overlay { display: none; position: fixed; inset: 0; background: rgba(0,0,0,.4); z-index: 300; }
.bho-mobile-overlay.open { display: block; }
.bho-mobile-drawer {
  position: fixed; top: 0; left: 0; width: 300px; height: 100%;
  background: #fff; overflow-y: auto;
  transform: translateX(-100%); transition: transform .3s; z-index: 301; padding: 0 0 2rem;
}
.bho-mobile-drawer.open { transform: translateX(0); }
.drawer-header { background: var(--bho-navy); padding: 1rem 1.25rem; display: flex; align-items: center; justify-content: space-between; }
.drawer-header img { height: 42px; width: auto; }
.drawer-close { background: none; border: none; color: rgba(255,255,255,.7); font-size: 1.4rem; cursor: pointer; line-height: 1; }
.drawer-nav { padding: .75rem 0; }
.drawer-item { border-bottom: 1px solid var(--bho-gray-mid); }
.drawer-item > a { display: flex; align-items: center; justify-content: space-between; padding: .85rem 1.25rem; font-size: .92rem; font-weight: 700; color: var(--bho-navy); }
.drawer-toggle { background: none; border: none; color: var(--bho-gray-text); font-size: .75rem; cursor: pointer; padding: .2rem .4rem; transition: transform .2s; }
.drawer-toggle.open { transform: rotate(180deg); }
.drawer-sub { display: none; background: var(--bho-cream); }
.drawer-sub.open { display: block; }
.drawer-sub a { display: block; padding: .6rem 1.5rem; font-size: .85rem; color: var(--bho-gray-text); border-bottom: 1px solid rgba(0,0,0,.05); }
.drawer-sub a:hover { color: var(--bho-navy); }
.drawer-ctas { padding: 1.25rem; display: flex; flex-direction: column; gap: .65rem; }
.drawer-ctas a { display: block; text-align: center; padding: .75rem; font-size: .9rem; font-weight: 700; border-radius: 4px; }
.dc-donate { background: var(--bho-gold);  color: #fff; }
.dc-member { background: var(--bho-teal);  color: #fff; }
.drawer-util { padding: 0 1.25rem; display: flex; flex-direction: column; gap: .4rem; }
.drawer-util a { font-size: .82rem; color: var(--bho-gray-text); padding: .3rem 0; }

/* ── HERO SLIDER ─────────────────────────────────────────── */
.bho-hero {
  position: relative;
  overflow: hidden;
  min-height: clamp(400px,55vw,560px);
  background: var(--bho-navy);
}
/* Slider track — all slides stacked */
.bho-slides-track {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: clamp(400px,55vw,560px);
}
/* Each slide: absolute, covers the track */
.bho-slide {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  opacity: 0;
  transition: opacity .8s ease;
  pointer-events: none;
  z-index: 1;
}
.bho-slide.active {
  opacity: 1;
  pointer-events: auto;
  z-index: 2;
}
/* Slide transition — slide style */
.bho-hero[data-transition="slide"] .bho-slide {
  transform: translateX(100%);
  transition: transform .6s ease, opacity 0s;
  opacity: 1;
}
.bho-hero[data-transition="slide"] .bho-slide.active {
  transform: translateX(0);
}

.bho-slide-bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
}
.bho-slide-inner {
  position: relative; z-index: 1;
  max-width: 1200px; margin: 0 auto; width: 100%;
  padding: clamp(2.5rem,6vw,5rem) clamp(1rem,3vw,2.5rem);
  display: flex; align-items: center;
  gap: clamp(1.5rem,4vw,4rem);
}
.bho-slide-content { flex: 1; min-width: 0; max-width: 600px; }
.bho-hero-eyebrow {
  font-size: .7rem; font-weight: 700; letter-spacing: .15em;
  text-transform: uppercase; color: var(--bho-gold);
  margin-bottom: .9rem; display: flex; align-items: center; gap: .5rem;
}
.bho-hero-eyebrow::before { content: ''; display: block; width: 20px; height: 2px; background: var(--bho-gold); flex-shrink: 0; }
.bho-hero h1 {
  font-family: Georgia, serif;
  font-size: clamp(1.7rem,3.8vw,3.2rem);
  font-weight: 700; color: #fff; line-height: 1.12;
  letter-spacing: -.02em; margin-bottom: 1.1rem;
}
.bho-hero h1 em { font-style: italic; color: var(--bho-gold-light); }
.bho-hero-desc { font-size: clamp(.88rem,1.5vw,1.02rem); color: rgba(255,255,255,.76); line-height: 1.65; margin-bottom: 1.75rem; max-width: 480px; }
.bho-hero-actions { display: flex; gap: .85rem; flex-wrap: wrap; }
.btn-gold { display: inline-block; background: var(--bho-gold); color: #fff; font-weight: 700; font-size: .93rem; padding: .8rem clamp(1.25rem,3vw,2rem); border-radius: 4px; transition: background .15s; }
.btn-gold:hover { background: var(--bho-gold-light); }
.btn-ghost-w { display: inline-block; border: 1.5px solid rgba(255,255,255,.4); color: rgba(255,255,255,.9); font-weight: 600; font-size: .93rem; padding: .8rem clamp(1rem,2.5vw,1.75rem); border-radius: 4px; transition: border-color .15s, color .15s; }
.btn-ghost-w:hover { border-color: #fff; color: #fff; }

/* Callout stats */
.bho-hero-callouts { display: flex; flex-direction: column; gap: 1rem; flex-shrink: 0; }
.hero-stat { text-align: center; padding: 1.1rem 1.4rem; background: rgba(13,31,60,.65); border: 1px solid rgba(255,255,255,.25); border-radius: 8px; min-width: 130px; backdrop-filter: blur(4px); }
.hero-stat-num { display: block; font-family: Georgia, serif; font-size: clamp(1.6rem,2.5vw,2rem); font-weight: 700; color: var(--bho-gold-light); line-height: 1; }
.hero-stat-lbl { display: block; font-size: .7rem; color: rgba(255,255,255,.58); text-transform: uppercase; letter-spacing: .08em; margin-top: .25rem; }

/* Slider controls */
.bho-slider-dots { position: absolute; bottom: 1.25rem; left: 50%; transform: translateX(-50%); display: flex; gap: .5rem; z-index: 10; }
.bho-slider-dot { width: 8px; height: 8px; border-radius: 50%; background: rgba(255,255,255,.4); border: none; cursor: pointer; transition: background .2s, transform .2s; padding: 0; }
.bho-slider-dot.active { background: #fff; transform: scale(1.25); }
.bho-slider-arrows { position: absolute; top: 50%; transform: translateY(-50%); width: 100%; display: flex; justify-content: space-between; padding: 0 1rem; z-index: 10; pointer-events: none; }
.bho-slider-arrow { background: rgba(255,255,255,.15); border: 1px solid rgba(255,255,255,.3); color: #fff; width: 44px; height: 44px; border-radius: 50%; display: flex; align-items: center; justify-content: center; cursor: pointer; pointer-events: auto; transition: background .15s; font-size: 1.1rem; }
.bho-slider-arrow:hover { background: rgba(255,255,255,.3); }

/* Alert bar */
.bho-alert-bar { background: var(--bho-alert-bg); padding: .7rem clamp(1rem,3vw,2rem); display: flex; align-items: center; justify-content: center; gap: 1rem; flex-wrap: wrap; }
.bho-alert-bar p { font-size: .88rem; font-weight: 600; color: #fff; }
.bho-alert-bar a { font-size: .83rem; font-weight: 700; color: #fff; border-bottom: 1px solid rgba(255,255,255,.55); white-space: nowrap; }

/* ── SECTION HELPERS ─────────────────────────────────────── */
.bho-section { padding: clamp(2.5rem,5vw,4rem) clamp(1rem,3vw,2.5rem); }
.bho-section-cream { background: var(--bho-cream); }
.bho-section-inner { max-width: 1200px; margin: 0 auto; }
.sec-eyebrow { font-size: .68rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: var(--bho-teal); margin-bottom: .4rem; }
.sec-title { font-family: Georgia, serif; font-size: clamp(1.45rem,2.6vw,2rem); font-weight: 700; color: var(--bho-navy); line-height: 1.2; letter-spacing: -.01em; margin-bottom: .45rem; }
.sec-sub { font-size: .95rem; color: var(--bho-gray-text); margin-bottom: 2.25rem; max-width: 540px; }

/* ── COMMUNITY / TOPIC CARDS ─────────────────────────────── */
.bho-topic-grid { display: grid; grid-template-columns: repeat(auto-fit,minmax(min(100%,230px),1fr)); gap: 1.15rem; }
.bho-topic-card { background: #fff; border-radius: 10px; overflow: hidden; border: 1px solid var(--bho-gray-mid); display: flex; flex-direction: column; transition: box-shadow .2s,transform .2s; text-decoration: none; color: inherit; }
.bho-topic-card:hover { box-shadow: 0 8px 28px rgba(13,31,60,.11); transform: translateY(-3px); }
.bho-topic-img { height: clamp(120px,15vw,165px); background: var(--bho-navy); overflow: hidden; flex-shrink: 0; }
.bho-topic-img img { width: 100%; height: 100%; object-fit: cover; display: block; }
.bho-topic-body { padding: 1.15rem; flex: 1; display: flex; flex-direction: column; }
.bho-topic-tag  { font-size: .65rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--bho-teal); margin-bottom: .35rem; }
.bho-topic-body h3 { font-family: Georgia, serif; font-size: 1rem; font-weight: 700; color: var(--bho-navy); line-height: 1.3; margin-bottom: .45rem; }
.bho-topic-body p   { font-size: .83rem; color: var(--bho-gray-text); line-height: 1.5; flex: 1; }
.bho-topic-link { font-size: .8rem; font-weight: 700; color: var(--bho-teal); margin-top: .85rem; display: inline-block; }

/* ── QUOTE STRIP ─────────────────────────────────────────── */
.bho-quote-strip { background: var(--bho-quote-bg); padding: 1rem clamp(1rem,3vw,2.5rem); text-align: center; }
.bho-quote-strip p { font-size: clamp(.82rem,1.3vw,.93rem); color: rgba(255,255,255,.72); font-style: italic; }
.bho-quote-strip strong { color: rgba(255,255,255,.9); font-style: normal; }

/* ── TWO COLUMN ──────────────────────────────────────────── */
.bho-two-col { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(1.5rem,4vw,3rem); align-items: start; }

/* ── NEWS LIST ───────────────────────────────────────────── */
.bho-news-list { list-style: none; }
.bho-news-item { border-top: 1px solid var(--bho-gray-mid); padding: 1rem 0; display: flex; gap: .85rem; }
.bho-news-item:first-child { border-top: none; padding-top: 0; }
.bho-news-dt { font-size: .68rem; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; color: var(--bho-gold); white-space: nowrap; flex-shrink: 0; min-width: 64px; padding-top: .12rem; }
.bho-news-item a { font-family: Georgia, serif; font-size: .9rem; font-weight: 700; color: var(--bho-navy); line-height: 1.35; display: block; transition: color .15s; }
.bho-news-item a:hover { color: var(--bho-teal); }
.bho-news-excerpt { font-size: .8rem; color: var(--bho-gray-text); margin-top: .2rem; line-height: 1.45; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.bho-news-more { display: inline-block; margin-top: 1.1rem; font-size: .85rem; font-weight: 700; color: var(--bho-teal); }
.bho-news-thumb { flex-shrink: 0; display: block; width: 120px; min-width: 120px; height: 90px; overflow: hidden; border-radius: 6px; }
.bho-news-thumb img { width: 100% !important; height: 100% !important; max-width: none !important; max-height: none !important; object-fit: cover !important; display: block !important; }

/* ── WEATHER WIDGET (data panel) ─────────────────────────── */
.bho-data-panel { background: var(--bho-navy); border-radius: 12px; padding: 1.6rem; color: #fff; }
.bho-data-eyebrow { font-size: .65rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--bho-gold); margin-bottom: .6rem; }
.bho-data-panel h3 { font-family: Georgia, serif; font-size: 1.1rem; font-weight: 700; color: #fff; margin-bottom: 1.1rem; line-height: 1.3; }
.bho-data-row { display: flex; justify-content: space-between; align-items: baseline; padding: .52rem 0; border-bottom: 1px solid rgba(255,255,255,.09); font-size: .85rem; }
.bho-data-row:last-of-type { border-bottom: none; }
.dr-label { color: rgba(255,255,255,.6); }
.dr-val { font-weight: 700; font-family: Georgia, serif; }
.dr-val.up { color: var(--bho-gold-light); }
.dr-val.ok { color: #6ecfaa; }
.bho-data-cta { display: block; margin-top: 1.1rem; text-align: center; font-size: .83rem; font-weight: 700; color: var(--bho-teal); border: 1px solid var(--bho-teal); border-radius: 4px; padding: .6rem; transition: background .15s; }
.bho-data-cta:hover { background: rgba(29,158,117,.15); }
.bho-data-aside { margin-top: 1.1rem; padding: 1.1rem; background: var(--bho-cream); border-radius: 8px; border-left: 4px solid var(--bho-gold); }
.bho-data-aside .sec-eyebrow { margin-bottom: .25rem; }
.bho-data-aside p { font-size: .83rem; color: var(--bho-gray-text); margin-bottom: .6rem; }
.bho-data-aside a { font-size: .83rem; font-weight: 700; color: var(--bho-navy); }

/* ── MISSION STRIP ───────────────────────────────────────── */
.bho-mission-strip {
  background: var(--bho-navy);
  padding: clamp(2.5rem,5vw,4rem) clamp(1rem,3vw,2.5rem);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.bho-mission-strip::before {
  content: '';
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}
.bho-mission-strip .bho-mission-inner { position: relative; z-index: 1; }
.bho-mission-strip .sec-title { color: #fff; }
.bho-mission-strip .sec-eyebrow { color: var(--bho-gold); }
.bho-mission-strip p { font-size: .98rem; color: rgba(255,255,255,.75); line-height: 1.7; margin-bottom: 1.6rem; }


.btn-row { display: flex; gap: .75rem; justify-content: center; flex-wrap: wrap; }
.btn-navy { display: inline-block; background: var(--bho-navy); color: #fff; font-weight: 700; font-size: .88rem; padding: .72rem 1.6rem; border-radius: 4px; transition: background .15s; }
.btn-navy:hover { background: var(--bho-navy-mid); }
.btn-outline-navy { display: inline-block; border: 2px solid var(--bho-navy); color: var(--bho-navy); font-weight: 700; font-size: .88rem; padding: .72rem 1.6rem; border-radius: 4px; transition: background .15s,color .15s; }
.btn-outline-navy:hover { background: var(--bho-navy); color: #fff; }

.bho-mission-strip .btn-navy {
  background: rgba(255,255,255,.15) !important;
  color: #fff !important;
  border: 2px solid rgba(255,255,255,.5);
}
.bho-mission-strip .btn-navy:hover {
  background: rgba(255,255,255,.3) !important;
  border-color: #fff;
}
.bho-mission-strip .btn-outline-navy {
  border-color: rgba(255,255,255,.5) !important;
  color: #fff !important;
}
.bho-mission-strip .btn-outline-navy:hover {
  background: rgba(255,255,255,.15) !important;
  border-color: #fff !important;
  color: #fff !important;
}

/* ── PARTNERS ────────────────────────────────────────────── */
.bho-partners { background: #fff; padding: 2rem clamp(1rem,3vw,2.5rem); }
.bho-partners-inner { max-width: 1200px; margin: 0 auto; }
.bho-partner-row { display: flex; align-items: center; justify-content: center; gap: clamp(1.25rem,3vw,2.5rem); flex-wrap: wrap; }
.bho-partner-row span { font-size: .75rem; font-weight: 700; color: #bbb; letter-spacing: .07em; }

/* ── EMAIL SIGNUP ────────────────────────────────────────── */
.bho-signup-band { background: var(--bho-teal); padding: clamp(2rem,4vw,3rem) clamp(1rem,3vw,2.5rem); }
.bho-signup-inner { max-width: 1200px; margin: 0 auto; display: flex; align-items: center; gap: 3rem; flex-wrap: wrap; }
.bho-signup-copy { flex: 1; min-width: 220px; }
.bho-signup-copy h3 { font-family: Georgia, serif; font-size: clamp(1.2rem,2.5vw,1.5rem); font-weight: 700; color: #fff; margin-bottom: .35rem; }
.bho-signup-copy p { font-size: .88rem; color: rgba(255,255,255,.82); }
.bho-signup-form { flex: 1; min-width: 280px; }

/* ── Constant Contact overrides ──────────────────────────── */
/* Strip all wrapper chrome */
.bho-signup-form .ctct-form-embed,
.bho-signup-form .ctct-form-defaults,
.bho-signup-form .ctct-form-wrapper { background: transparent !important; border: none !important; box-shadow: none !important; padding: 0 !important; margin: 0 !important; }

/* Make the form a horizontal flex row */
.bho-signup-form form,
.bho-signup-form .ctct-form-custom {
  display: flex !important;
  flex-direction: row !important;
  flex-wrap: wrap !important;
  gap: .55rem !important;
  align-items: center !important;
  background: transparent !important;
  border: none !important;
  padding: 0 !important;
  margin: 0 !important;
}

/* Field wrapper — stretch to fill */
.bho-signup-form .ctct-form-field {
  flex: 1 !important;
  min-width: 180px !important;
  margin: 0 !important;
  padding: 0 !important;
  border: none !important;
  background: transparent !important;
}

/* Hide labels completely */
.bho-signup-form label,
.bho-signup-form .ctct-form-label,
.bho-signup-form .ctct-label-top { display: none !important; }

/* Email input */
.bho-signup-form input[type="email"],
.bho-signup-form input[type="text"],
.bho-signup-form .ctct-form-element {
  display: block !important;
  width: 100% !important;
  font-family: Arial, sans-serif !important;
  font-size: .9rem !important;
  padding: .68rem 1rem !important;
  border-radius: 4px !important;
  border: none !important;
  outline: none !important;
  background: #fff !important;
  color: #1a1614 !important;
  box-shadow: none !important;
  height: auto !important;
  line-height: normal !important;
  margin: 0 !important;
}
.bho-signup-form input[type="email"]::placeholder,
.bho-signup-form input[type="text"]::placeholder { color: #999 !important; }
.bho-signup-form input[type="email"]:focus { outline: 2px solid rgba(255,255,255,.5) !important; box-shadow: none !important; }

/* Submit button */
.bho-signup-form button[type="submit"],
.bho-signup-form input[type="submit"],
.bho-signup-form .ctct-form-button {
  flex-shrink: 0 !important;
  display: inline-block !important;
  background: var(--bho-navy) !important;
  color: #fff !important;
  font-family: Arial, sans-serif !important;
  font-size: .9rem !important;
  font-weight: 700 !important;
  padding: .68rem 1.4rem !important;
  border: none !important;
  border-radius: 4px !important;
  cursor: pointer !important;
  transition: background .15s !important;
  white-space: nowrap !important;
  box-shadow: none !important;
  text-shadow: none !important;
  height: auto !important;
  width: auto !important;
  line-height: normal !important;
  margin: 0 !important;
  appearance: none !important;
}
.bho-signup-form button[type="submit"]:hover,
.bho-signup-form input[type="submit"]:hover,
.bho-signup-form .ctct-form-button:hover { background: var(--bho-navy-mid) !important; }

/* Hide ALL footer/disclaimer/gdpr/list elements */
.bho-signup-form .ctct-form-footer,
.bho-signup-form .ctct-gdpr-text,
.bho-signup-form .ctct-optin-hide,
.bho-signup-form .ctct-list-selector,
.bho-signup-form .ctct-form-field-error,
.bho-signup-form [class*="gdpr"],
.bho-signup-form [class*="optin"],
.bho-signup-form [class*="disclaimer"] { display: none !important; }

/* Keep error + success visible */
.bho-signup-form .ctct-form-errorMessage { color: #ffe0e0 !important; font-size: .8rem !important; background: none !important; border: none !important; padding: .25rem 0 0 !important; display: block !important; width: 100% !important; margin: 0 !important; }
.bho-signup-form .ctct-form-success { color: #fff !important; font-size: .9rem !important; font-weight: 700 !important; background: none !important; border: none !important; padding: 0 !important; display: block !important; }

/* ── FOOTER ──────────────────────────────────────────────── */
.bho-footer { background: var(--bho-footer-bg); color: rgba(255,255,255,.7); padding: 3rem clamp(1rem,3vw,2.5rem) 1.75rem; }
.bho-footer-inner { max-width: 1200px; margin: 0 auto; }
.bho-footer-top { display: grid; grid-template-columns: 200px 1fr; gap: 3.5rem; padding-bottom: 2.25rem; border-bottom: 1px solid rgba(255,255,255,.09); margin-bottom: 1.5rem; }
.bho-footer-brand-name { font-family: Georgia, serif; font-size: .95rem; font-weight: 700; color: #fff; display: block; margin-bottom: .85rem; }
.bho-footer-brand p { font-size: .78rem; color: rgba(255,255,255,.48); line-height: 1.65; }
.bho-footer-sponsors { display: flex; gap: 1.2rem; margin-top: 1rem; flex-wrap: wrap; align-items: center; }
.bho-footer-sponsors img { height: 24px; opacity: .5; filter: brightness(10); }
.bho-footer-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 1.75rem; }
.bho-footer-col h4 { font-size: .67rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: rgba(255,255,255,.45); margin-bottom: .85rem; }
.bho-footer-col ul { list-style: none; }
.bho-footer-col li { margin-bottom: .32rem; }
.bho-footer-col li a { font-size: .82rem; color: rgba(255,255,255,.65); transition: color .15s; }
.bho-footer-col li a:hover { color: #fff; }
.bho-footer-bottom { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: .75rem; }
.bho-footer-bottom p { font-size: .74rem; color: rgba(255,255,255,.35); }
.bho-footer-bottom a { color: rgba(255,255,255,.45); }
.bho-footer-bottom a:hover { color: rgba(255,255,255,.75); }

/* ── INNER PAGE ──────────────────────────────────────────── */
.bho-page-hero {
  background: var(--bho-navy);
  padding: 4rem clamp(1rem,3vw,2.5rem);
  position: relative;
  overflow: hidden;
}
.bho-page-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(29,158,117,0.18) 0%, transparent 65%);
  pointer-events: none;
}
.bho-page-hero-inner { max-width: 1200px; margin: 0 auto; position: relative; z-index: 1; }
.bho-page-hero h1 {
  font-family: Georgia, serif;
  font-size: clamp(1.6rem,3vw,2.8rem);
  font-weight: 700;
  color: #fff;
  line-height: 1.2;
  border-left: 4px solid var(--bho-gold);
  padding-left: 1rem;
  margin-top: .5rem;
}

.bho-page-hero-desc {
  font-size: 1rem;
  color: rgba(255,255,255,.72);
  line-height: 1.65;
  margin-top: .85rem;
  padding-left: 1.25rem;
  max-width: 840px;
}
.bho-page-hero-desc a { color: var(--bho-gold-light); text-decoration: underline; }
.bho-page-hero-desc strong { color: #fff; font-weight: 700; }
.bho-page-hero-desc em { font-style: italic; }


.bho-page-hero .sec-eyebrow { color: var(--bho-gold); margin-bottom: .4rem; }
.bho-hero-cat-desc {
  font-size: .95rem;
  color: rgba(255,255,255,.65);
  margin-top: .75rem;
  padding-left: 1.25rem;
  max-width: 800px;
  line-height: 1.6;
}

.bho-page-hero h1,
.bho-page-hero .sec-eyebrow,
.bho-page-hero .bho-page-hero-desc { color: #fff !important; }
.bho-page-hero .sec-eyebrow { color: var(--bho-gold) !important; }

/* ── NEWS CARD GRID ──────────────────────────────────────── */
.bho-news-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 300px), 1fr));
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}
.bho-news-card {
  display: flex;
  flex-direction: column;
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid var(--bho-gray-mid);
  text-decoration: none;
  color: inherit;
  transition: box-shadow .2s, transform .2s;
}
.bho-news-card:hover {
  box-shadow: 0 8px 28px rgba(13,31,60,.11);
  transform: translateY(-3px);
}
.bho-news-card-img {
  height: 200px;
  overflow: hidden;
  flex-shrink: 0;
}
.bho-news-card-img img {
  width: 100% !important;
  height: 100% !important;
  max-width: none !important;
  max-height: none !important;
  object-fit: cover !important;
  display: block !important;
  transition: transform .3s;
}
.bho-news-card:hover .bho-news-card-img img { transform: scale(1.03); }
.bho-news-card-bar {
  height: 6px;
  background: var(--bho-teal);
  flex-shrink: 0;
}
.bho-news-card-body {
  padding: 1.25rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.bho-news-card-meta {
  display: flex;
  align-items: center;
  gap: .6rem;
  margin-bottom: .6rem;
  flex-wrap: wrap;
}
.bho-news-card-cat {
  font-size: .65rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: #fff;
  background: var(--bho-teal);
  padding: .18rem .55rem;
  border-radius: 3px;
}
.bho-news-card-date {
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .05em;
  text-transform: uppercase;
  color: var(--bho-gold);
}
.bho-news-card-title {
  font-family: Georgia, serif;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--bho-navy);
  line-height: 1.3;
  margin-bottom: .6rem;
}
.bho-news-card-excerpt {
  font-size: .85rem;
  color: var(--bho-gray-text);
  line-height: 1.55;
  flex: 1;
}
.bho-news-card-link {
  display: inline-block;
  margin-top: 1rem;
  font-size: .82rem;
  font-weight: 700;
  color: var(--bho-teal);
}

.bho-content .bho-news-card,
.bho-content .bho-news-card:hover { text-decoration: none !important; }
.bho-content .bho-news-card .bho-news-card-title { color: var(--bho-navy) !important; text-decoration: none !important; }
.bho-content .bho-news-card .bho-news-card-link { text-decoration: none !important; }

.ctct-disclosure {
  visibility: hidden;
  height: 0;
  overflow: hidden;
  margin: 0;
  padding: 0;
}

.bho-signup-form .ctct-message.ctct-success,
.bho-signup-form .ctct-message {
  font-style: italic !important;
  color: #fff !important;
  background: transparent !important;
  border: none !important;
  padding: 0 !important;
  text-decoration: none !important;
}

.bho-signup-form .ctct-message .ctct-close,
.bho-signup-form button.ctct-close { display: none !important; }

.bho-signup-form .ctct-form-wrapper.ctct-has-message form { display: none !important; }

/* ── PAGINATION ──────────────────────────────────────────── */
.bho-pagination { margin-top: 1rem; }
.bho-pagination .nav-links { display: flex; gap: .5rem; flex-wrap: wrap; align-items: center; }
.bho-pagination .page-numbers {
  display: inline-flex; align-items: center; justify-content: center;
  min-width: 36px; height: 36px; padding: 0 .75rem;
  font-size: .85rem; font-weight: 700;
  border: 1px solid var(--bho-gray-mid);
  border-radius: 4px;
  color: var(--bho-navy);
  transition: background .15s, color .15s;
}
.bho-pagination .page-numbers.current { background: var(--bho-navy); color: #fff; border-color: var(--bho-navy); }
.bho-pagination .page-numbers:hover { background: var(--bho-cream); }

/* Page content */
.bho-page-wrap { max-width: 1200px; margin: 0 auto; padding: 3rem clamp(1rem,3vw,2.5rem); display: grid; gap: 3rem; }
.bho-page-wrap.full-width       { grid-template-columns: 1fr; }
.bho-page-wrap.has-sidebar      { grid-template-columns: 1fr 300px; }
.bho-page-wrap.has-left-sidebar { grid-template-columns: 260px 1fr; }
.bho-page-wrap.has-left-sidebar .bho-sidebar { border-right: 0.5px solid var(--bho-gray-mid); padding-right: 2rem; }
.bho-content h2 { font-family: Georgia, serif; font-size: 1.5rem; font-weight: 700; color: var(--bho-navy); margin: 2rem 0 .75rem; }
.bho-content h3 { font-family: Georgia, serif; font-size: 1.2rem; font-weight: 700; color: var(--bho-navy); margin: 1.5rem 0 .5rem; }
.bho-content p  { margin-bottom: 1rem; color: var(--bho-gray-text); }
.bho-content ul, .bho-content ol { margin: 0 0 1rem 1.5rem; color: var(--bho-gray-text); }
.bho-content li { margin-bottom: .35rem; }
.bho-content a  { color: var(--bho-teal); text-decoration: underline; }
.bho-content img { border-radius: 8px; margin: 1rem 0; }

/* Sidebar */
.bho-sidebar .bho-widget { margin-bottom: 2rem; }
.bho-sidebar .bho-widget-title { font-family: Georgia, serif; font-size: 1rem; font-weight: 700; color: var(--bho-navy); border-bottom: 2px solid var(--bho-gold); padding-bottom: .4rem; margin-bottom: 1rem; }

.bho-page-wrap.has-right-sidebar {
  display: grid;
  grid-template-columns: 1fr 280px;
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem 1.5rem;
}

@media (max-width: 768px) {
  .bho-page-wrap.has-right-sidebar {
    grid-template-columns: 1fr;
  }
}

/* ── Sidebar donate widget — sticky bottom ── */
/* Sidebar itself - NOT sticky */
/* Page wrap must use grid with start alignment */
.bho-page-wrap.has-left-sidebar {
  align-items: start;
}

/* Sidebar flows naturally, not stretched */
.bho-sidebar {
 overflow: visible !important; /* this is what breaks sticky */
  align-self: start;
  position: relative;
}

/* Only donate widget sticks */
.bho-donate-sticky {
  position: sticky;
  top: 100px;
}





/* On mobile, don't sticky — just stack normally */
@media (max-width: 900px) {
    .bho-donate-sticky {
        position: static;
        margin-top: 1.5rem;
    }
}

/* Landing page: no page hero, full-width content */
.bho-landing-content { max-width: 100%; }

/* ============================================================
   SIDEBAR — LEFT NAV STYLE
   ============================================================ */
/* ── LEFT SIDEBAR NAV ──────────────────────────────────────── */

/* Section title — teal, small, uppercase like mega menu labels */
.has-left-sidebar .bho-sidebar .bho-widget-title {
  font-family: Arial, Helvetica, sans-serif !important;
  font-size: .67rem !important;
  font-weight: 700 !important;
  letter-spacing: .12em !important;
  text-transform: uppercase !important;
  color: var(--bho-teal) !important;
  border-bottom: 1px solid var(--bho-gray-mid) !important;
  border-top: none !important;
  padding: 0 0 .35rem 0 !important;
  margin: 0 0 .35rem 0 !important;
}

/* Strip bullets */
.has-left-sidebar .bho-sidebar .menu { list-style: none !important; margin: 0 !important; padding: 0 !important; }
.has-left-sidebar .bho-sidebar .menu li { list-style: none !important; margin: 0 !important; padding: 0 !important; }

/* Links — default state */
.has-left-sidebar .bho-sidebar .menu li a {
  display: block !important;
  font-size: .88rem !important;
  color: var(--bho-gray-text) !important;
  padding: .45rem 0 .45rem .85rem !important;
  border-left: 3px solid transparent !important;
  text-decoration: none !important;
  transition: color .15s, border-color .15s, background .15s !important;
  line-height: 1.35 !important;
}

/* Hover — gold border left */
.has-left-sidebar .bho-sidebar .menu li a:hover {
  color: var(--bho-navy) !important;
  border-left-color: #C8880A !important;
  background: rgba(200,136,10,.05) !important;
}

/* Active/current page — gold border stays */
.has-left-sidebar .bho-sidebar .menu li.current-menu-item > a,
.has-left-sidebar .bho-sidebar .menu li.current_page_item > a {
  color: var(--bho-navy) !important;
  font-weight: 700 !important;
  border-left-color: #C8880A !important;
  background: rgba(200,136,10,.05) !important;
}


/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 900px) {
  .bho-primary-nav { display: none; }
  .bho-hamburger { display: flex; }
  .bho-util-bar .bho-util-list { display: none; }
  .bho-two-col { grid-template-columns: 1fr; }
  .bho-footer-top { grid-template-columns: 1fr; gap: 2rem; }
  .bho-footer-grid { grid-template-columns: repeat(2,1fr); }
  .bho-hero-callouts { flex-direction: row; flex-wrap: wrap; justify-content: flex-start; }
  .bho-page-wrap.has-sidebar { grid-template-columns: 1fr; }
  .bho-page-wrap.has-left-sidebar { grid-template-columns: 1fr; }
  .bho-page-wrap.has-left-sidebar .bho-sidebar { border-right: none; border-bottom: 0.5px solid var(--bho-gray-mid); padding-right: 0; padding-bottom: 1.5rem; }
}
@media (max-width: 768px) {
  #bho-wx-bar { display: none !important; }
}
@media (max-width: 600px) {
  .bho-util-bar { display: none; }
  .bho-hero-callouts { display: none; }
  .bho-topic-grid { grid-template-columns: 1fr; }
  .bho-footer-grid { grid-template-columns: repeat(2,1fr); gap: 1.25rem; }
  .bho-signup-inner { flex-direction: column; gap: 1.25rem; }
  .bho-alert-bar p { display: none; }
  .bho-slide-inner { flex-direction: column; }
}
@media (max-width: 480px) {
  .bho-donate-btn { padding: .45rem .85rem; font-size: .8rem !important; }
  .bho-header-inner { padding: 0 .75rem; gap: .5rem; }
  .bho-logo img { height: 44px; }
  .custom-logo-link img { height: 44px !important; max-width: 160px; width: auto; }
}