:root {
  --cwf-ink: #111722;
  --cwf-forest: #153f35;
  --cwf-forest-2: #0d3028;
  --cwf-signal: #ff6547;
  --cwf-paper: #f4f1e9;
  --cwf-mint: #dcebe4;
  --cwf-line: #d8e0dc;
  --cwf-white: #fff;
  --cwf-shadow: 0 28px 70px rgba(12, 38, 31, 0.18);
  --cwf-header-h: 76px;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: 95px;
}
body.causework-foundation {
  margin: 0;
  background: #fff;
  color: var(--cwf-ink);
  font-family: Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
}
body.causework-foundation.is-menu-open {
  overflow: hidden;
}
.cwf-skip {
  position: fixed;
  left: 15px;
  top: -100px;
  z-index: 100000;
  background: #fff;
  color: #111722;
  padding: 12px 17px;
  border-radius: 0 0 8px 8px;
  font-weight: 800;
}
.cwf-skip:focus {
  top: 0;
}
.cwf-header {
  position: sticky;
  top: 0;
  z-index: 9990;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(17, 23, 34, 0.09);
}
.admin-bar .cwf-header {
  top: 0;
}

/* About page cards own their typography; legacy .cw-card icon rules must not leak in. */
.cw2 .cw-card > b {
  display: block;
  width: auto;
  height: auto;
  margin: 0 0 10px;
  padding: 0;
  border-radius: 0;
  background: transparent;
  line-height: 1.22;
}
.cw2 .cw-card > p {
  position: static;
  margin: 0;
  line-height: 1.55;
}
.cwf-header-line {
  height: 3px;
  background: linear-gradient(
    90deg,
    var(--cwf-signal) 0 24%,
    var(--cwf-forest) 24% 72%,
    #88d8ad 72%
  );
}
.cwf-nav-wrap {
  width: min(1240px, calc(100% - 38px));
  height: 73px;
  margin: auto;
  display: flex;
  align-items: center;
  gap: 24px;
}
.cwf-brand {
  display: flex;
  align-items: center;
  gap: 11px;
  color: var(--cwf-ink) !important;
  text-decoration: none !important;
  white-space: nowrap;
}
.cwf-brand img {
  display: block;
  width: 31px;
  height: 31px;
  object-fit: contain;
}
.cwf-brand b {
  font-size: 18px;
  letter-spacing: -0.025em;
}
.cwf-brand span {
  display: flex;
  flex-direction: column;
}
.cwf-brand small {
  font-size: 11px;
  font-weight: 500;
  color: #8fa69d;
  margin-top: 4px;
}
.cwse-global-nav,
.cwse-global-footer {
  display: none !important;
}
.cwf-header .cwf-desktop-nav {
  display: flex !important;
  align-items: center;
  justify-content: center;
  gap: 3px;
  margin-left: auto;
}
.cwf-desktop-nav > a,
.cwf-nav-trigger {
  border: 0;
  background: transparent;
  color: #24332f !important;
  text-decoration: none !important;
  font:
    800 13px/1 Arial,
    sans-serif;
  padding: 12px 10px;
  border-radius: 9px;
  white-space: nowrap;
  cursor: pointer;
}
.cwf-desktop-nav > a:hover,
.cwf-nav-trigger:hover,
.cwf-nav-trigger[aria-expanded="true"] {
  background: #edf4f0;
  color: var(--cwf-forest) !important;
}
.cwf-nav-trigger {
  display: flex;
  align-items: center;
  gap: 6px;
}
.cwf-nav-trigger svg {
  width: 10px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  transition: transform 0.18s;
}
.cwf-nav-trigger[aria-expanded="true"] svg {
  transform: rotate(180deg);
}
.cwf-demo {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: var(--cwf-ink);
  color: #fff !important;
  text-decoration: none !important;
  border-radius: 13px;
  padding: 14px 17px;
  font-weight: 900;
  font-size: 13px;
  white-space: nowrap;
  box-shadow: 0 8px 24px rgba(17, 23, 34, 0.16);
  transition:
    transform 0.18s,
    background 0.18s;
}
.cwf-demo:hover {
  background: var(--cwf-forest);
  transform: translateY(-2px);
}
.cwf-demo span {
  color: #9be2ba;
}
.cwf-mega {
  position: absolute;
  left: 0;
  right: 0;
  top: 76px;
  background: rgba(255, 255, 255, 0.985);
  border-top: 1px solid #eef2ef;
  border-bottom: 1px solid var(--cwf-line);
  box-shadow: var(--cwf-shadow);
}
.cwf-mega[hidden] {
  display: none;
}
.cwf-mega-inner {
  width: min(1180px, calc(100% - 44px));
  margin: auto;
  padding: 32px 0 38px;
  display: grid;
  grid-template-columns: 330px 1fr;
  gap: 45px;
}
.cwf-mega-lead {
  border-right: 1px solid var(--cwf-line);
  padding-right: 36px;
}
.cwf-mega-lead > span {
  display: block;
  color: var(--cwf-signal);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.14em;
}
.cwf-mega-lead h2 {
  font:
    500 43px/0.98 Georgia,
    serif;
  letter-spacing: -0.04em;
  margin: 12px 0;
  color: var(--cwf-ink);
}
.cwf-mega-lead > p {
  font-size: 15px;
  line-height: 1.55;
  color: #53635e;
  margin: 0 0 23px;
}
.cwf-mega-lead > a {
  position: relative;
  display: block;
  background: var(--cwf-forest);
  border-radius: 14px;
  padding: 18px 48px 18px 18px;
  color: #fff !important;
  text-decoration: none !important;
}
.cwf-mega-lead > a b,
.cwf-mega-lead > a small {
  display: block;
}
.cwf-mega-lead > a b {
  font-size: 14px;
}
.cwf-mega-lead > a small {
  font-size: 12px;
  line-height: 1.4;
  color: #c8ded4;
  margin-top: 5px;
}
.cwf-mega-lead > a i {
  position: absolute;
  right: 19px;
  top: 50%;
  transform: translateY(-50%);
  font-style: normal;
  color: #9be2ba;
  font-size: 21px;
}
.cwf-mega-links {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
}
.cwf-mega-links > a {
  position: relative;
  display: block;
  border-radius: 12px;
  padding: 17px 44px 17px 18px;
  color: var(--cwf-ink) !important;
  text-decoration: none !important;
  transition: background 0.16s;
}
.cwf-mega-links > a:hover {
  background: #edf4f0;
}
.cwf-mega-links b,
.cwf-mega-links span {
  display: block;
}
.cwf-mega-links b {
  font:
    600 18px/1.15 Georgia,
    serif;
  color: var(--cwf-forest);
}
.cwf-mega-links span {
  font-size: 12px;
  line-height: 1.45;
  color: #64716d;
  margin-top: 6px;
}
.cwf-mega-links i {
  position: absolute;
  right: 18px;
  top: 21px;
  font-style: normal;
  color: var(--cwf-signal);
  opacity: 0;
  transform: translateX(-5px);
  transition: 0.16s;
}
.cwf-mega-links > a:hover i {
  opacity: 1;
  transform: none;
}
.cwf-menu-backdrop {
  position: fixed;
  inset: 76px 0 0;
  background: rgba(7, 24, 20, 0.38);
  z-index: 9980;
}
.cwf-menu-backdrop[hidden] {
  display: none;
}
.cwf-mobile-toggle,
.cwf-mobile-drawer {
  display: none;
}
.cwf-content,
.cwf-page,
.cwf-page > .entry-content {
  width: 100%;
  max-width: none;
  margin: 0;
  padding: 0;
}
.entry-content > .cw-nav,
.entry-content > .cw-footer,
#cw-site > .cw-nav,
#cw-site > .cw-footer,
.cwf-content .cw-nav,
.cwf-content .cw-footer,
.cwf-content [class$="-nav"]:first-child,
.cwf-content [class$="-footer"]:last-child,
.cwse-impact-nav,
.cwse-impact-footer {
  display: none !important;
}
.entry-content > p:empty {
  display: none;
}
.cwf-reading {
  width: min(860px, calc(100% - 42px));
  margin: 0 auto;
  padding: 90px 0;
}
.cwf-reading > article > header {
  border-bottom: 1px solid var(--cwf-line);
  padding-bottom: 35px;
}
.cwf-reading > article > header p {
  color: var(--cwf-signal);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}
.cwf-reading h1,
.cwf-index h1,
.cwf-not-found h1 {
  font:
    500 clamp(46px, 7vw, 78px) / 0.98 Georgia,
    serif;
  letter-spacing: -0.045em;
}
.cwf-reading time {
  color: #697873;
}
.cwf-reading-body {
  font-family: Georgia, serif;
  font-size: 19px;
  line-height: 1.75;
  padding-top: 35px;
}
.cwf-index {
  width: min(1180px, calc(100% - 42px));
  margin: auto;
  padding: 90px 0;
}
.cwf-index > header span {
  color: var(--cwf-signal);
  font-weight: 900;
  letter-spacing: 0.13em;
}
.cwf-index-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.cwf-index-grid article a {
  height: 100%;
  display: block;
  border: 1px solid var(--cwf-line);
  border-radius: 16px;
  padding: 28px;
  text-decoration: none;
  color: var(--cwf-ink);
}
.cwf-index-grid h2 {
  font:
    500 28px/1.1 Georgia,
    serif;
}
.cwf-index-grid span {
  font-weight: 900;
  color: var(--cwf-forest);
}
.cwf-not-found {
  min-height: 65vh;
  background: var(--cwf-paper);
  padding: 100px max(22px, calc((100% - 1100px) / 2));
}
.cwf-not-found > span {
  color: var(--cwf-signal);
  font-weight: 900;
  letter-spacing: 0.15em;
}
.cwf-not-found h1 {
  max-width: 800px;
}
.cwf-not-found p {
  font-size: 19px;
  max-width: 650px;
}
.cwf-not-found div {
  display: flex;
  gap: 10px;
}
.cwf-not-found a {
  background: var(--cwf-forest);
  color: #fff;
  padding: 14px 18px;
  border-radius: 10px;
  text-decoration: none;
  font-weight: 800;
}
.cwf-footer {
  position: relative;
  background: #0e2822;
  color: #dfece6;
  padding: 64px 0 0;
}
.cwf-footer:before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--cwf-signal), #9be2ba);
}
.cwf-footer-inner {
  width: min(1180px, calc(100% - 42px));
  margin: auto;
  display: grid;
  grid-template-columns: 270px 1fr;
  gap: 65px;
}
.cwf-footer .cwf-brand {
  color: #fff !important;
}
.cwf-footer .cwf-brand img {
  filter: brightness(0) invert(1);
  opacity: 0.96;
}
.cwf-footer-lead > p {
  font:
    500 21px/1.35 Georgia,
    serif;
  color: #c7d9d1;
  margin: 25px 0;
}
.cwf-footer-demo {
  display: inline-flex;
  gap: 18px;
  color: #fff !important;
  text-decoration: none !important;
  font-weight: 900;
  font-size: 13px;
  border: 1px solid #43675e;
  padding: 13px 15px;
  border-radius: 10px;
}
.cwf-footer-demo span {
  color: #9be2ba;
}
.cwf-footer .cwf-footer-map {
  display: grid !important;
  grid-template-columns: 1.2fr 1fr 1fr 0.8fr;
  gap: 28px;
}
.cwf-footer-map section {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.cwf-footer-map h2 {
  font:
    900 11px/1 Arial,
    sans-serif;
  color: #90ada1;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  margin: 8px 0 20px;
}
.cwf-footer-map a {
  color: #e7f0ec !important;
  text-decoration: none !important;
  font-size: 13px;
  line-height: 1.35;
  margin: 0 0 12px;
}
.cwf-footer-map a:hover {
  color: #9be2ba !important;
}
.cwf-footer-bottom {
  border-top: 1px solid #284b42;
  margin-top: 54px;
}
.cwf-footer-bottom > div {
  width: min(1180px, calc(100% - 42px));
  min-height: 65px;
  margin: auto;
  display: flex;
  align-items: center;
  gap: 25px;
  font-size: 11px;
  color: #91aaa0;
}
.cwf-footer-bottom .cwf-legal-links {
  margin-left: auto;
  display: flex !important;
  gap: 20px;
}
.cwf-footer-bottom a {
  color: #c4d5ce !important;
  text-decoration: none !important;
}
@media (max-width: 1120px) {
  .cwf-header .cwf-desktop-nav {
    display: none !important;
  }
  .cwf-header .cwf-mobile-toggle {
    display: flex !important;
    margin-left: auto;
    width: 48px;
    height: 44px;
    border: 0;
    background: #edf4f0;
    border-radius: 11px;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 4px;
    cursor: pointer;
  }
  .cwf-mobile-toggle span {
    width: 20px;
    height: 2px;
    background: var(--cwf-forest);
    transition: 0.18s;
  }
  .cwf-mobile-toggle b {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
  }
  .cwf-mobile-toggle[aria-expanded="true"] span:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
  }
  .cwf-mobile-toggle[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
  }
  .cwf-mobile-toggle[aria-expanded="true"] span:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
  }
  .cwf-mobile-drawer {
    display: block;
    position: fixed;
    z-index: 100010;
    inset: 0;
    width: 100%;
    height: 100dvh;
    background: #fff;
    box-shadow: none;
    overflow: auto;
    padding: max(12px, env(safe-area-inset-top)) 16px max(22px, env(safe-area-inset-bottom));
  }
  .admin-bar .cwf-mobile-drawer {
    inset: 0;
  }
  .cwf-mobile-drawer[hidden] {
    display: none;
  }
  .cwf-mobile-drawer [role="navigation"] {
    display: block;
    width: min(680px, 100%);
    margin: 8px auto 0;
  }
  .cwf-mobile-drawer-head {
    position: sticky;
    top: 0;
    z-index: 2;
    display: flex;
    width: min(680px, 100%);
    min-height: 62px;
    align-items: center;
    justify-content: space-between;
    margin: 0 auto;
    padding: 4px 2px 10px 12px;
    border-bottom: 1px solid var(--cwf-line);
    background: rgba(255, 255, 255, 0.98);
    color: var(--cwf-ink);
    font-size: 18px;
    font-weight: 900;
  }
  .cwf-mobile-drawer-head button {
    display: grid;
    place-items: center;
    width: 48px;
    height: 48px;
    padding: 0;
    border: 0;
    border-radius: 999px;
    background: var(--cwf-ink);
    color: #fff;
    font-size: 31px;
    line-height: 1;
    cursor: pointer;
  }
  .cwf-mobile-home {
    display: block;
    padding: 16px;
    color: var(--cwf-ink) !important;
    text-decoration: none !important;
    font-weight: 900;
    border-bottom: 1px solid var(--cwf-line);
  }
  .cwf-mobile-drawer section {
    border-bottom: 1px solid var(--cwf-line);
  }
  .cwf-mobile-drawer section > button {
    width: 100%;
    display: flex;
    justify-content: space-between;
    border: 0;
    background: #fff;
    padding: 19px 16px;
    color: var(--cwf-ink);
    font-weight: 900;
    font-size: 16px;
  }
  .cwf-mobile-drawer section > button i {
    font-style: normal;
    color: var(--cwf-signal);
    font-size: 20px;
  }
  .cwf-mobile-drawer section > div {
    padding: 0 10px 14px;
  }
  .cwf-mobile-drawer section > div[hidden] {
    display: none;
  }
  .cwf-mobile-drawer section a {
    display: block;
    padding: 12px;
    color: var(--cwf-ink) !important;
    text-decoration: none !important;
    border-radius: 9px;
  }
  .cwf-mobile-drawer section a:hover {
    background: #edf4f0;
  }
  .cwf-mobile-drawer section b,
  .cwf-mobile-drawer section small {
    display: block;
  }
  .cwf-mobile-drawer section small {
    color: #66746f;
    line-height: 1.4;
    margin-top: 3px;
  }
  .cwf-mobile-drawer .is-feature {
    background: var(--cwf-paper);
    color: var(--cwf-forest) !important;
    font-weight: 900;
    margin-top: 5px;
  }
  .cwf-mobile-utility {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 6px;
    margin: 18px 0;
  }
  .cwf-mobile-utility a {
    padding: 11px 5px;
    text-align: center;
    color: var(--cwf-forest) !important;
    text-decoration: none !important;
    font-size: 12px;
    font-weight: 900;
  }
  .cwf-mobile-demo {
    display: block;
    background: var(--cwf-ink);
    color: #fff !important;
    text-decoration: none !important;
    padding: 16px;
    border-radius: 11px;
    text-align: center;
    font-weight: 900;
  }
  .cwf-menu-backdrop {
    inset: 76px 0 0;
  }
  .cwf-footer-inner {
    grid-template-columns: 1fr;
  }
  .cwf-footer .cwf-footer-map {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 620px) {
  :root {
    --cwf-header-h: 68px;
  }
  .admin-bar .cwf-header {
    top: 0;
  }
  .cwf-nav-wrap {
    height: 65px;
    width: calc(100% - 28px);
  }
  .cwf-brand img {
    width: 29px;
    height: 29px;
  }
  .cwf-brand b {
    font-size: 16px;
  }
  .cwf-demo {
    display: none;
  }
  .cwf-mobile-drawer {
    inset: 0;
  }
  .admin-bar .cwf-mobile-drawer {
    inset: 0;
  }
  .cwf-menu-backdrop {
    inset: 68px 0 0;
  }
  .cwf-footer {
    padding-top: 48px;
  }
  .cwf-footer .cwf-footer-map {
    grid-template-columns: 1fr 1fr;
    gap: 24px 18px;
  }
  .cwf-footer-map section,
  .cwf-footer-map a {
    min-width: 0;
    overflow-wrap: anywhere;
  }
  .cwf-footer-bottom > div {
    padding: 18px 0;
    flex-wrap: wrap;
  }
  .cwf-footer-bottom .cwf-legal-links {
    width: 100%;
    margin: 0;
  }
  .cwf-index-grid {
    grid-template-columns: 1fr;
  }
  .cwf-not-found {
    padding-top: 70px;
  }
  .cwf-mobile-utility {
    grid-template-columns: 1fr;
  }
  .cwf-mobile-utility a {
    text-align: left;
    padding-left: 12px;
  }
}
@media (max-width: 430px) {
  .cwf-footer .cwf-footer-map {
    grid-template-columns: 1fr;
  }
  .cwf-footer-map section {
    padding-bottom: 10px;
    border-bottom: 1px solid #284b42;
  }
}
@media (prefers-reduced-motion: reduce) {
  * {
    scroll-behavior: auto !important;
    transition: none !important;
    animation: none !important;
  }
}
