:root {
  --bc-navy: #0d2d6c;
  --bc-blue: #1d5ed8;
  --bc-teal: #14b8a6;
  --bc-green: #22a46d;
  --bc-green-soft: #eaf8f2;
  --bc-light: #f5f8fc;
  --bc-border: #d9e3f0;
  --bc-text: #173057;
  --bc-muted: #5e6f8e;
  --bc-radius: 22px;
  --bc-shadow: 0 12px 32px rgba(13, 45, 108, 0.08);
  --bc-max: 1240px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--bc-text);
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background: #fff;
}
a { color: var(--bc-navy); text-decoration: none; }
a:hover { color: var(--bc-blue); }
img { max-width: 100%; height: auto; display: block; }
.container { width: min(var(--bc-max), calc(100% - 2rem)); margin: 0 auto; }
.site-main { min-height: 50vh; }
.content-area { padding: 2rem 0 4rem; }
.screen-reader-text { position: absolute; left: -9999px; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(217, 227, 240, 0.8);
}
.site-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 1rem 0;
}
.site-branding { display: flex; align-items: center; gap: 1rem; }
.site-logo img { max-height: 64px; width: auto; }
.site-title-wrap.has-logo .site-title, .site-title-wrap.has-logo .site-description { margin: 0; }
.site-title, .site-title a {
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--bc-navy);
  margin: 0;
}
.site-description { margin: 0.2rem 0 0; color: var(--bc-muted); font-size: 0.94rem; }
.primary-navigation ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  gap: 1.4rem;
}
.primary-navigation a { font-weight: 700; color: var(--bc-text); }
.primary-navigation .current-menu-item > a,
.primary-navigation a:hover { color: var(--bc-navy); }
.menu-toggle {
  display: none;
  background: none;
  border: 0;
  padding: 0.5rem;
  cursor: pointer;
}
.menu-toggle span:not(.screen-reader-text) {
  display: block;
  width: 24px;
  height: 3px;
  background: var(--bc-navy);
  margin: 4px 0;
  border-radius: 50px;
}

.hero-section,
.page-hero,
.archive-hero {
  background: linear-gradient(135deg, #f5faff 0%, #eef8ff 50%, #f7fcfa 100%);
  padding: 3.5rem 0;
}
.hero-grid,
.page-hero-inner {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 2rem;
  align-items: center;
}
.page-hero-inner.single-column { grid-template-columns: 1fr; }
.eyebrow {
  display: inline-block;
  background: #e6f7f4;
  color: var(--bc-teal);
  border-radius: 999px;
  padding: 0.5rem 0.9rem;
  font-weight: 800;
  font-size: 0.85rem;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}
.hero-copy h1,
.page-hero-copy h1,
.archive-hero h1 {
  margin: 1rem 0 0.75rem;
  font-size: clamp(2.2rem, 4vw, 4.2rem);
  line-height: 1.05;
  color: var(--bc-navy);
}
.hero-intro,
.archive-hero p,
.hero-content,
.page-hero-copy p { color: var(--bc-muted); font-size: 1.08rem; }
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 1.5rem;
}
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.95rem 1.4rem;
  border-radius: 999px;
  font-weight: 800;
  transition: 0.2s ease;
  border: 2px solid transparent;
}
.button:hover { transform: translateY(-1px); }
.button-primary { background: var(--bc-navy); color: #fff; }
.button-primary:hover { color: #fff; background: #143986; }
.button-secondary { background: #fff; color: var(--bc-navy); border-color: var(--bc-teal); }
.button-secondary:hover { background: #ecfffc; }
.hero-media img,
.page-hero-media img {
  width: 100%;
  border-radius: 24px;
  box-shadow: var(--bc-shadow);
  aspect-ratio: 4 / 3;
  object-fit: cover;
}
.hero-placeholder {
  border: 2px dashed var(--bc-border);
  border-radius: 24px;
  min-height: 360px;
  display: grid;
  place-items: center;
  background: #fff;
  padding: 2rem;
  text-align: center;
}

.section { padding: 3rem 0; }
.section-heading { margin-bottom: 1.5rem; }
.section-heading h2 { margin: 0 0 0.5rem; font-size: clamp(1.8rem, 3vw, 2.4rem); }
.section-heading p { margin: 0; color: var(--bc-muted); }
.section-heading-inline {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: end;
}
.feature-card-grid,
.post-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
}
.feature-card,
.post-card,
.info-card,
.entry-content-wrapper,
.footer-widget,
.contact-sidebar > *,
.project-sidebar > * {
  background: #fff;
  border: 1px solid var(--bc-border);
  border-radius: var(--bc-radius);
  box-shadow: var(--bc-shadow);
}
.feature-card,
.info-card { padding: 1.4rem; }
.feature-card h3,
.post-card-title,
.entry-content-wrapper h2,
.entry-content-wrapper h3,
.info-card h3 { margin-top: 0; }
.feature-card p,
.info-card p,
.info-card li { color: var(--bc-muted); }
.text-link { font-weight: 800; display: inline-block; margin-top: 0.6rem; }
.post-card { overflow: hidden; display: flex; flex-direction: column; }
.post-card-image img { width: 100%; aspect-ratio: 16 / 9; object-fit: cover; }
.post-card-content { padding: 1.2rem; }
.post-card-meta { color: var(--bc-teal); font-weight: 700; font-size: 0.88rem; margin-bottom: 0.5rem; }
.post-card-title a { color: var(--bc-navy); }

.entry-content-wrapper { padding: 2rem; }
.entry-content > *:first-child { margin-top: 0; }
.entry-content > *:last-child { margin-bottom: 0; }
.entry-content p,
.entry-content li,
.entry-content blockquote,
.entry-content table { color: var(--bc-text); }
.entry-content h2,
.entry-content h3,
.entry-content h4 { color: var(--bc-navy); margin-top: 2rem; }
.entry-content .wp-block-group,
.entry-content .wp-block-cover,
.entry-content .wp-block-columns,
.entry-content .wp-block-media-text {
  margin-top: 1.5rem;
  margin-bottom: 1.5rem;
}
.entry-content .wp-block-button__link {
  background: var(--bc-navy);
  border-radius: 999px;
}
.entry-content figure img { border-radius: 18px; }
.single-content { max-width: 1100px; }
.full-width-content { max-width: var(--bc-max); }
.post-navigation-row {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 2rem;
}

.contact-template-grid,
.project-layout {
  display: grid;
  grid-template-columns: minmax(0, 2fr) minmax(280px, 1fr);
  gap: 1.5rem;
}
.contact-sidebar,
.project-sidebar { display: grid; gap: 1.5rem; align-content: start; }

.site-footer {
  background: linear-gradient(180deg, #0f275a 0%, #081734 100%);
  color: #d7e3f9;
  margin-top: 3rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.5rem;
  padding: 3rem 0;
}
.site-footer h3,
.site-footer a { color: #fff; }
.site-footer p,
.site-footer li,
.site-footer .menu { color: #d7e3f9; }
.footer-contact-list,
.footer-menu { list-style: none; padding: 0; margin: 0; }
.footer-menu li + li,
.footer-contact-list li + li { margin-top: 0.6rem; }
.footer-socials { display: flex; flex-wrap: wrap; gap: 0.75rem; }
.footer-socials a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 999px;
  padding: 0.65rem 1rem;
}
.site-info {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 1rem 0;
}
.site-info-inner {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}
.site-info p { margin: 0; font-size: 0.95rem; color: #d7e3f9; }

.not-found,
.no-results {
  max-width: 760px;
  margin: 0 auto;
  padding: 3rem 0;
  text-align: center;
}
.search-form { display: flex; gap: 0.75rem; justify-content: center; }
.search-field {
  padding: 0.85rem 1rem;
  border-radius: 999px;
  border: 1px solid var(--bc-border);
  min-width: 280px;
}
.search-submit {
  background: var(--bc-navy);
  color: #fff;
  border: none;
  border-radius: 999px;
  padding: 0.85rem 1.2rem;
}

.wp-block-quote {
  border-left: 4px solid var(--bc-teal);
  padding-left: 1rem;
  margin-left: 0;
  font-style: italic;
}
.wp-block-table table,
.entry-content table {
  border-collapse: collapse;
  width: 100%;
}
.wp-block-table th,
.wp-block-table td,
.entry-content th,
.entry-content td {
  border: 1px solid var(--bc-border);
  padding: 0.75rem;
}

@media (max-width: 1080px) {
  .feature-card-grid,
  .post-grid,
  .footer-grid,
  .hero-grid,
  .page-hero-inner,
  .contact-template-grid,
  .project-layout {
    grid-template-columns: 1fr 1fr;
  }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 860px) {
  .menu-toggle { display: inline-block; }
  .primary-navigation {
    position: absolute;
    right: 1rem;
    top: calc(100% + 0.5rem);
    background: #fff;
    border: 1px solid var(--bc-border);
    border-radius: 18px;
    box-shadow: var(--bc-shadow);
    padding: 1rem;
    min-width: 260px;
    display: none;
  }
  .primary-navigation.is-open { display: block; }
  .primary-navigation ul { flex-direction: column; align-items: flex-start; }

  .hero-grid,
  .page-hero-inner,
  .feature-card-grid,
  .post-grid,
  .contact-template-grid,
  .project-layout,
  .footer-grid { grid-template-columns: 1fr; }
  .section-heading-inline,
  .site-info-inner { display: block; }
  .search-form { flex-direction: column; align-items: stretch; }
}

@media (max-width: 640px) {
  .site-title { font-size: 1.1rem; }
  .site-description { font-size: 0.85rem; }
  .hero-section,
  .page-hero,
  .archive-hero { padding: 2.4rem 0; }
  .entry-content-wrapper { padding: 1.4rem; }
}

/* ========================================================================
   BCCP Homepage V2 — approved concept layout
   ======================================================================== */
:root {
  --bccp-navy: #0b2d6b;
  --bccp-blue: #0b62b8;
  --bccp-teal: #00a79d;
  --bccp-green: #75b62a;
  --bccp-lime: #9ac326;
  --bccp-pale: #f0f8fb;
  --bccp-text: #1b3258;
  --bccp-muted: #4e607c;
  --bccp-card-border: #dce7ef;
}

body { background:#fff; }
.container { width:min(1480px, calc(100% - 64px)); }
.site-header { position:relative; background:#fff; border-bottom:1px solid #e1e9f0; box-shadow:none; }
.site-header-inner { min-height:80px; padding:8px 0; }
.site-branding { min-width:290px; }
.site-logo img,
.site-logo .custom-logo { width:285px; max-width:285px; height:auto; max-height:68px; object-fit:contain; object-position:left center; }
.primary-navigation ul { gap:38px; }
.primary-navigation a { color:#112d5e; font-weight:700; font-size:15px; padding:28px 0 20px; position:relative; }
.primary-navigation a:hover,
.primary-navigation .current-menu-item > a { color:var(--bccp-navy); }
.primary-navigation .current-menu-item > a:after,
.primary-navigation a:hover:after { content:""; position:absolute; left:0; right:0; bottom:12px; height:2px; background:var(--bccp-teal); }

.bccp-homepage { background:#fff; color:var(--bccp-text); }
.bccp-hero { overflow:hidden; background:linear-gradient(90deg,#f4faff 0%,#edf8fc 55%,#f4fbfc 100%); border-bottom:1px solid #dfeaf1; }
.bccp-hero-inner { position:relative; }
.bccp-hero-grid { min-height:258px; display:grid; grid-template-columns:44% 56%; padding:0; max-width:none; width:100%; }
.bccp-hero-copy { padding:35px 6vw 28px max(6vw, calc((100vw - 1480px)/2)); align-self:center; z-index:2; }
.bccp-hero-copy h1 { margin:0 0 10px; max-width:640px; color:var(--bccp-navy); font-size:clamp(38px,3.45vw,58px); line-height:.98; letter-spacing:-1.6px; font-weight:850; }
.bccp-hero-copy p { margin:0; max-width:600px; color:#354766; font-size:16px; line-height:1.45; }
.bccp-hero-actions { display:flex; gap:20px; margin-top:24px; flex-wrap:wrap; }
.bccp-button { min-width:245px; min-height:48px; display:inline-flex; align-items:center; justify-content:center; gap:20px; padding:11px 25px; border-radius:9px; font-weight:800; font-size:14px; transition:.2s ease; }
.bccp-button span { font-size:22px; line-height:1; }
.bccp-button-primary { color:#fff; background:linear-gradient(100deg,#0a2d68,#0b4d88); box-shadow:0 7px 16px rgba(11,45,107,.13); }
.bccp-button-primary:hover { color:#fff; transform:translateY(-1px); }
.bccp-button-outline { color:var(--bccp-navy); border:1.5px solid var(--bccp-teal); background:#fff; }
.bccp-button-outline:hover { color:var(--bccp-navy); background:#f2fffd; }
.bccp-hero-image { min-height:258px; background-size:cover; background-position:center; position:relative; clip-path:polygon(8% 44%,24% 44%,31% 25%,100% 0,100% 100%,19% 100%,0 57%); }
.bccp-hero-image:after { content:""; position:absolute; left:0; right:0; bottom:0; height:36px; background:linear-gradient(90deg,rgba(0,167,157,.78),rgba(0,97,116,.84)); clip-path:polygon(0 0,100% 45%,100% 100%,0 100%); }

.bccp-quick-links { background:#fff; padding:9px 0 10px; }
.bccp-quick-grid { display:grid; grid-template-columns:repeat(4,minmax(0,1fr)); gap:14px; }
.bccp-quick-card { min-height:77px; display:grid; grid-template-columns:56px 1fr 20px; align-items:center; gap:13px; padding:11px 17px; border:1px solid #e0e9ef; border-radius:10px; background:#fff; box-shadow:0 5px 12px rgba(17,52,89,.08); color:var(--bccp-text); }
.bccp-quick-card:hover { color:var(--bccp-text); transform:translateY(-1px); box-shadow:0 7px 16px rgba(17,52,89,.12); }
.bccp-icon { width:50px; height:50px; border-radius:50%; display:flex; align-items:center; justify-content:center; color:#fff; flex:none; }
.bccp-icon svg { width:29px; height:29px; fill:none; stroke:currentColor; stroke-width:1.8; stroke-linecap:round; stroke-linejoin:round; }
.bccp-icon-green { background:linear-gradient(135deg,#8bc13d,#55a943); }
.bccp-icon-teal { background:linear-gradient(135deg,#15b9ad,#049f97); }
.bccp-icon-blue { background:linear-gradient(135deg,#174fb5,#116da2); }
.bccp-icon-lime { background:linear-gradient(135deg,#b4ca31,#8eb123); }
.bccp-quick-copy { display:flex; flex-direction:column; min-width:0; }
.bccp-quick-copy strong { color:#173669; font-size:15px; line-height:1.15; margin-bottom:4px; }
.bccp-quick-copy small { color:#344867; font-size:12.5px; line-height:1.18; }
.bccp-card-arrow { color:#074f9a; font-size:29px; line-height:1; }

.bccp-focus-section { padding:0 0 8px; }
.bccp-focus-card { min-height:130px; display:grid; grid-template-columns:370px 1fr 365px; gap:24px; align-items:center; border:1px solid #dce6ed; border-radius:10px; box-shadow:0 4px 10px rgba(17,52,89,.06); padding:10px 16px; }
.bccp-focus-image { height:108px; overflow:hidden; border-radius:8px; }
.bccp-focus-image img { width:100%; height:100%; object-fit:cover; }
.bccp-label { display:block; color:#1b8a83; text-transform:uppercase; font-size:11px; letter-spacing:1px; font-weight:800; margin-bottom:4px; }
.bccp-focus-copy h2 { margin:0 0 4px; color:#0c2d68; font-size:20px; line-height:1.12; }
.bccp-focus-copy p { margin:0 0 6px; color:#334761; font-size:13px; line-height:1.25; }
.bccp-inline-link { color:#0b3681; font-weight:800; font-size:13px; }
.bccp-inline-link:hover { color:#087d84; }
.bccp-focus-values { background:linear-gradient(105deg,#eff9f8,#f3f8f8); border-radius:10px; padding:9px 18px; }
.bccp-focus-values > div { display:flex; gap:11px; align-items:center; }
.bccp-focus-values > div + div { margin-top:6px; }
.bccp-value-icon { width:28px; height:28px; display:flex; align-items:center; justify-content:center; color:#0a9a96; }
.bccp-value-icon svg { width:24px; height:24px; fill:none; stroke:currentColor; stroke-width:1.8; stroke-linecap:round; stroke-linejoin:round; }
.bccp-focus-values p { margin:0; display:flex; flex-direction:column; line-height:1.08; }
.bccp-focus-values strong { color:#274563; font-size:12px; }
.bccp-focus-values small { color:#3e526c; font-size:11px; margin-top:2px; }

.bccp-involved-section { padding:0 0 6px; }
.bccp-section-title { text-align:center; margin:0 0 4px; color:#0c2d68; font-size:21px; }
.bccp-involved-grid { display:grid; grid-template-columns:repeat(4,minmax(0,1fr)); gap:16px; }
.bccp-involved-card { min-height:84px; padding:10px 15px; display:grid; grid-template-columns:55px 1fr; gap:12px; align-items:center; border-radius:9px; color:var(--bccp-text); }
.bccp-involved-card.tone-teal { background:linear-gradient(90deg,#edf9f7,#f5fbfb); }
.bccp-involved-card.tone-blue { background:linear-gradient(90deg,#edf4fb,#f6f9fc); }
.bccp-involved-card.tone-lime { background:linear-gradient(90deg,#fbf8e6,#fdfbf1); }
.bccp-involved-card:hover { color:var(--bccp-text); box-shadow:0 4px 12px rgba(16,54,95,.08); }
.bccp-involved-copy { display:flex; flex-direction:column; }
.bccp-involved-copy strong { color:#183b70; font-size:14px; margin-bottom:2px; }
.bccp-involved-copy small { color:#314763; font-size:11.5px; line-height:1.18; }
.bccp-involved-copy em { margin-top:5px; color:#0b3582; font-size:11.5px; font-style:normal; font-weight:800; }

.bccp-latest-section { padding:0 0 8px; }
.bccp-section-heading-row { display:flex; justify-content:space-between; align-items:center; margin:0 0 5px; }
.bccp-section-heading-row h2 { margin:0; color:#0d2d6c; font-size:20px; }
.bccp-section-heading-row > a { font-size:12px; text-decoration:underline; font-weight:700; }
.bccp-latest-grid { border:1px solid #dce6ed; border-radius:9px; padding:9px 14px; display:grid; grid-template-columns:repeat(3,minmax(0,1fr)); gap:16px; box-shadow:0 4px 10px rgba(17,52,89,.05); }
.bccp-news-card { display:grid; grid-template-columns:225px 1fr; gap:14px; align-items:start; min-width:0; }
.bccp-news-card + .bccp-news-card { border-left:1px solid #e1e8ed; padding-left:15px; }
.bccp-news-image { height:88px; border-radius:8px; overflow:hidden; }
.bccp-news-image img { width:100%; height:100%; object-fit:cover; }
.bccp-news-copy > span { color:#2b958c; font-size:9px; font-weight:800; letter-spacing:.5px; }
.bccp-news-copy h3 { margin:1px 0 0; color:#0c2d68; font-size:15px; line-height:1.02; }
.bccp-news-copy h3 a { color:inherit; }
.bccp-news-copy time { display:block; margin-top:3px; color:#40506b; font-size:10px; }
.bccp-news-copy p { margin:3px 0; color:#3d4f69; font-size:10.5px; line-height:1.18; }
.bccp-news-copy .bccp-inline-link { font-size:10.5px; }
.bccp-empty-news { grid-column:1/-1; padding:24px; text-align:center; }

.bccp-connect-section { padding:0 0 0; }
.bccp-connect-bar { min-height:43px; display:grid; grid-template-columns:1fr 1fr; align-items:center; gap:25px; background:linear-gradient(90deg,#eff9f6,#f1f8f8); border-radius:8px 8px 0 0; padding:6px 28px; }
.bccp-connect-title { display:flex; align-items:center; gap:15px; }
.bccp-connect-icon { width:42px; height:30px; border-radius:50%; background:#0aa897; color:#fff; display:flex; align-items:center; justify-content:center; }
.bccp-connect-icon svg { width:21px; height:21px; fill:none; stroke:currentColor; stroke-width:1.8; }
.bccp-connect-title div { display:flex; flex-direction:column; }
.bccp-connect-title strong { color:#17365f; font-size:15px; }
.bccp-connect-title small { color:#3d536c; font-size:11px; }
.bccp-connect-form { display:grid; grid-template-columns:1fr 185px; height:28px; }
.bccp-connect-form input { border:1px solid #cedae5; border-radius:5px 0 0 5px; background:#fff; padding:0 14px; font-size:11px; }
.bccp-connect-form button { border:0; border-radius:0 5px 5px 0; background:#0a326d; color:#fff; font-size:11px; font-weight:700; }

.bccp-footer { margin-top:0; background:linear-gradient(100deg,#0b2e69,#08255b); color:#fff; }
.bccp-footer-grid { display:grid; grid-template-columns:1.15fr .9fr .95fr 1.1fr; gap:34px; padding:10px 28px 9px; min-height:70px; }
.bccp-footer-brand img { width:48px; max-height:35px; object-fit:contain; object-position:left; float:left; margin:0 10px 0 0; }
.bccp-footer-brand p { margin:0; color:#fff; font-size:10px; line-height:1.12; }
.bccp-footer-brand p strong { font-size:11px; }
.bccp-footer-column h3 { margin:0 0 4px; color:#fff; font-size:12px; }
.bccp-footer-column p { margin:1px 0; color:#fff; font-size:9.5px; line-height:1.15; }
.bccp-footer-column a { color:#fff; }
.bccp-footer-socials { display:flex; gap:10px; }
.bccp-footer-socials a { width:33px; height:33px; border:1px solid rgba(255,255,255,.5); border-radius:50%; display:flex; align-items:center; justify-content:center; color:#fff; font-weight:800; }
.bccp-footer-bottom { background:#06a485; color:#fff; font-size:9px; }
.bccp-footer-bottom .container { min-height:16px; display:flex; justify-content:space-between; align-items:center; }
.bccp-footer-bottom a { color:#fff; }
.bccp-footer-bottom i { margin:0 6px; opacity:.7; }

/* Universal page/post refinement to match homepage branding. */
.page-hero,.archive-hero { background:linear-gradient(135deg,#f4faff,#edf8fc); }
.page-hero-copy h1,.archive-hero h1 { color:var(--bccp-navy); font-weight:850; letter-spacing:-.6px; }
.entry-content-wrapper { border-radius:12px; border:1px solid #e0e8ef; box-shadow:0 5px 18px rgba(17,52,89,.06); }
.post-card { border-radius:10px; }

@media (max-width: 1250px) {
  .container { width:min(1180px,calc(100% - 32px)); }
  .primary-navigation ul { gap:20px; }
  .bccp-hero-copy { padding-left:32px; padding-right:35px; }
  .bccp-focus-card { grid-template-columns:300px 1fr 300px; }
  .bccp-news-card { grid-template-columns:145px 1fr; }
}

@media (max-width: 980px) {
  .site-branding { min-width:0; }
  .site-logo img,.site-logo .custom-logo { width:245px; }
  .menu-toggle { display:block; }
  .primary-navigation { position:absolute; top:75px; right:16px; z-index:1000; display:none; background:#fff; border:1px solid #dbe5ed; border-radius:10px; padding:10px 18px; box-shadow:0 10px 25px rgba(13,45,107,.14); min-width:250px; }
  .primary-navigation.is-open { display:block; }
  .primary-navigation ul { display:flex; flex-direction:column; align-items:stretch; gap:0; }
  .primary-navigation a { display:block; padding:11px 4px; }
  .primary-navigation a:after { display:none; }
  .bccp-hero-grid { grid-template-columns:1fr; }
  .bccp-hero-copy { padding:35px 32px 28px; }
  .bccp-hero-image { min-height:300px; clip-path:none; }
  .bccp-quick-grid,.bccp-involved-grid { grid-template-columns:1fr 1fr; }
  .bccp-focus-card { grid-template-columns:1fr 1fr; }
  .bccp-focus-values { grid-column:1/-1; display:grid; grid-template-columns:repeat(3,1fr); }
  .bccp-focus-values > div + div { margin-top:0; }
  .bccp-latest-grid { grid-template-columns:1fr; }
  .bccp-news-card + .bccp-news-card { border-left:0; border-top:1px solid #e1e8ed; padding-left:0; padding-top:10px; }
  .bccp-connect-bar { grid-template-columns:1fr; padding:12px 18px; }
  .bccp-footer-grid { grid-template-columns:1fr 1fr; padding:20px 16px; }
}

@media (max-width: 640px) {
  .container { width:calc(100% - 22px); }
  .site-header-inner { min-height:68px; }
  .site-logo img,.site-logo .custom-logo { width:210px; max-height:52px; }
  .bccp-hero-copy { padding:28px 18px; }
  .bccp-hero-copy h1 { font-size:38px; }
  .bccp-hero-actions { flex-direction:column; }
  .bccp-button { width:100%; min-width:0; }
  .bccp-quick-grid,.bccp-involved-grid { grid-template-columns:1fr; }
  .bccp-focus-card { grid-template-columns:1fr; }
  .bccp-focus-image { height:160px; }
  .bccp-focus-values { grid-column:auto; grid-template-columns:1fr; }
  .bccp-focus-values > div + div { margin-top:6px; }
  .bccp-news-card { grid-template-columns:110px 1fr; }
  .bccp-connect-form { grid-template-columns:1fr 110px; }
  .bccp-footer-grid { grid-template-columns:1fr; }
  .bccp-footer-bottom .container { display:block; padding:6px 0; text-align:center; }
  .bccp-footer-bottom span { display:block; }
}

/* ========================================================================
   BCCP V3 cache-safe final homepage refinements
   ======================================================================== */
html body .bccp-homepage { display:block; background:#fff; }
html body .bccp-hero { display:block; min-height:258px; }
html body .bccp-hero-grid { display:grid; }
html body .bccp-hero-copy h1 { display:block; visibility:visible; opacity:1; }
html body .bccp-hero-actions .bccp-button { text-decoration:none; }
html body .bccp-quick-links,
html body .bccp-focus-section,
html body .bccp-involved-section,
html body .bccp-latest-section,
html body .bccp-connect-section { display:block; }
html body .bccp-icon svg,
html body .bccp-value-icon svg,
html body .bccp-connect-icon svg { fill:none; stroke:currentColor; }

/* Match the approved concept's compact desktop proportions. */
@media (min-width: 1101px) {
  .site-header-inner { min-height:78px; }
  .bccp-hero-grid { min-height:258px; }
  .bccp-focus-card { min-height:132px; }
  .bccp-latest-grid { min-height:116px; }
}


/* ========================================================================
   BCCP V3.1 compact internal page headers
   ======================================================================== */
/* Ordinary pages should feel like content pages, not a second homepage hero. */
.page-hero {
  padding: 1.55rem 0 1.65rem;
  min-height: 0;
}
.page-hero-inner {
  min-height: 0;
  gap: 1.35rem;
}
.page-hero.no-image .page-hero-inner {
  grid-template-columns: 1fr;
}
.page-hero-copy h1 {
  margin: 0 0 .45rem;
  font-size: clamp(2rem, 3.25vw, 3.15rem);
  line-height: 1.08;
}
.page-hero-copy .hero-intro,
.page-hero-copy > p {
  margin: 0;
  max-width: 900px;
  font-size: 1rem;
  line-height: 1.55;
}
.page-hero-media img {
  max-height: 190px;
  aspect-ratio: 16 / 7;
}
/* If a specialist template has a meaningful eyebrow (Contact, Project etc.),
   keep it compact rather than creating extra vertical space. */
.page-hero .eyebrow {
  margin-bottom: .45rem;
  padding: .32rem .7rem;
  font-size: .72rem;
}
.page-hero .eyebrow + h1 {
  margin-top: 0;
}
/* Pull page content closer to the title bar. */
.page-hero + .content-area,
.page-hero + .container.content-area {
  padding-top: 1.6rem;
}

@media (max-width: 640px) {
  .page-hero {
    padding: 1.2rem 0 1.3rem;
  }
  .page-hero-copy h1 {
    font-size: clamp(1.8rem, 9vw, 2.45rem);
  }
  .page-hero-copy .hero-intro,
  .page-hero-copy > p {
    font-size: .96rem;
  }
}

/* ========================================================================
   BCCP V3.2 universal compact internal headers
   No template/type labels are displayed on internal content headers.
   ======================================================================== */
.page-hero,
.archive-hero,
.compact-site-header {
  padding: 1.05rem 0 1.1rem !important;
  min-height: 0 !important;
}

.page-hero-inner {
  min-height: 0 !important;
  gap: 1rem !important;
  align-items: center !important;
}

.page-hero.no-image .page-hero-inner,
.page-hero-inner.single-column {
  grid-template-columns: 1fr !important;
}

.page-hero-copy h1,
.archive-hero h1,
.compact-site-header h1 {
  margin: 0 !important;
  font-size: clamp(1.85rem, 2.7vw, 2.65rem) !important;
  line-height: 1.08 !important;
}

.page-hero-copy .hero-intro,
.page-hero-copy > p,
.archive-hero p,
.archive-description,
.compact-site-header p {
  margin: .42rem 0 0 !important;
  max-width: 980px;
  font-size: .98rem !important;
  line-height: 1.5 !important;
}

/* Internal template/category badges are intentionally suppressed globally. */
.page-hero .eyebrow,
.archive-hero .eyebrow,
.post-hero .eyebrow,
.compact-site-header .eyebrow {
  display: none !important;
}

.page-hero-media,
.compact-page-media {
  display: flex;
  justify-content: flex-end;
}
.page-hero-media img,
.compact-page-media img {
  width: min(100%, 360px) !important;
  height: 132px !important;
  max-height: 132px !important;
  aspect-ratio: auto !important;
  object-fit: cover !important;
  border-radius: 16px !important;
}

.page-hero + .content-area,
.page-hero + .container.content-area,
.archive-hero + .content-area,
.archive-hero + .container.content-area {
  padding-top: 1.25rem !important;
}

/* Landing pages use the same compact title bar as every other page. */
.landing-hero {
  padding: 1.05rem 0 1.1rem !important;
  min-height: 0 !important;
}

@media (max-width: 760px) {
  .page-hero,
  .archive-hero,
  .compact-site-header,
  .landing-hero {
    padding: .85rem 0 .9rem !important;
  }
  .page-hero-inner {
    grid-template-columns: 1fr !important;
  }
  .page-hero-copy h1,
  .archive-hero h1,
  .compact-site-header h1 {
    font-size: clamp(1.65rem, 8vw, 2.2rem) !important;
  }
  .page-hero-media,
  .compact-page-media {
    justify-content: flex-start;
  }
  .page-hero-media img,
  .compact-page-media img {
    width: 100% !important;
    height: 110px !important;
    max-height: 110px !important;
  }
}
/* v3.3 footer editor additions */
.bccp-footer-logo img{max-width:190px;height:auto}.bccp-footer-menu-heading{color:#fff;margin:1.1rem 0 .5rem}.bccp-footer-menu{list-style:none;padding:0;margin:0}.bccp-footer-menu li+li{margin-top:.35rem}.bccp-footer-menu a{color:#d7e3f9}.bccp-connect-shortcode .bccp-engagement-form{margin:0}.bccp-connect-shortcode .bccp-engagement-notice{display:none}

.bccp-connect-shortcode .bccp-mailing-form.is-compact{display:grid;grid-template-columns:minmax(220px,1fr) auto auto;gap:8px;align-items:center}.bccp-connect-shortcode .bccp-mailing-form.is-compact input[type=email]{height:32px;border:1px solid #cedae5;border-radius:5px;padding:0 12px;font-size:11px}.bccp-connect-shortcode .bccp-mailing-form.is-compact .bccp-engagement-button{height:32px;border-radius:5px;padding:0 16px;font-size:11px}.bccp-connect-shortcode .bccp-turnstile-slot{transform:scale(.82);transform-origin:center}@media(max-width:760px){.bccp-connect-shortcode .bccp-mailing-form.is-compact{grid-template-columns:1fr}.bccp-connect-shortcode .bccp-turnstile-slot{transform:none}}

/* v3.4 universal editable page layouts */
.entry-content-wrapper.is-plain {
  background: transparent;
  border: 0;
  box-shadow: none;
  border-radius: 0;
  padding: 0;
}
.page-hero.no-image .page-hero-inner.single-column {
  min-height: 0;
}
/* Keep all internal headers deliberately compact. */
.page-hero {
  padding-top: 1.35rem !important;
  padding-bottom: 1.35rem !important;
}
.page-hero-copy h1 {
  font-size: clamp(1.9rem, 3.1vw, 2.7rem) !important;
  margin-top: 0 !important;
  margin-bottom: .3rem !important;
}
.page-hero-copy .hero-intro {
  margin: 0 !important;
  font-size: 1rem !important;
}
.page-hero-media.compact-page-media img,
.page-hero-media img {
  max-height: 150px;
  object-fit: cover;
}
