html {
  scroll-behavior: smooth; /* Smooth scroll for on-page anchor navigation */
}

.page-section {
  background-color: white;
  padding: 160px 24px 200px;
}

.page-section__inner {
  max-width: 1280px;
  margin: 0 auto;
}

.page-section__content {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 40px;
  align-items: flex-start;
}

.page-section__header {
  grid-column: 1 / span 5;
}

.page-section__title {
  font-size: 48px;
  font-weight: 700;
  color: #3b86f7;
  margin: 0 0 24px;
}

.page-section__lead {
  font-size: 20px;
  line-height: 1.8;
  color: #364886;
  margin: 0;
}
.page-section__article {
  display: contents;
}
.page-section__meta {
  font-size: 16px;
  color: rgba(32, 54, 115, 0.72);
  margin: 0 0 24px;
  display: flex;
  gap: 12px;
  align-items: center;
  flex-wrap: wrap;
}
.page-section__meta a {
  color: inherit;
  text-decoration: none;
}
.page-section__meta a:hover {
  text-decoration: underline;
}
.page-section__meta-separator {
  color: rgba(32, 54, 115, 0.32);
}

.page-section__body {
  grid-column: 1 / span 6;
  font-size: 18px;
  line-height: 1.9;
  color: #364886;
}

.page-section__body > *:first-child {
  margin-top: 0;
}

.page-section__body h2,
.page-section__body h3,
.page-section__body h4 {
  color: #3b86f7;
  font-family: 'DM Sans', sans-serif;
  font-weight: 700;
  margin: 48px 0 24px;
}

.page-section__body h2 {
  font-size: 32px;
}

.page-section__body h3 {
  font-size: 26px;
}

.page-section__body h4 {
  font-size: 22px;
}

.page-section__body p {
  margin: 0 0 24px;
}

.page-section__body ul,
.page-section__body ol {
  margin: 0 0 24px 24px;
  padding: 0;
}

.page-section__body a {
  color: #3b86f7;
  text-decoration: underline;
}

.page-section__body blockquote {
  margin: 24px 0;
  padding: 16px 24px;
  border-left: 4px solid #3b86f7;
  background-color: rgba(59, 134, 247, 0.08);
  border-radius: 18px;
  font-style: italic;
}

.page-section__body table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 24px;
}

.page-section__body table th,
.page-section__body table td {
  border: 1px solid rgba(32, 54, 115, 0.12);
  padding: 12px 16px;
  text-align: left;
}

.page-section__body img {
  max-width: 100%;
  height: auto;
  border-radius: 24px;
  box-shadow: 0 24px 60px rgba(21, 46, 110, 0.1);
  margin: 24px 0;
}



@media (max-width: 1024px) {
  .page-section__content {
    grid-template-columns: repeat(6, 1fr);
  }

  .page-section__header {
    grid-column: 1 / -1;
  }

  .page-section__body {
    grid-column: 1 / -1;
  }

  .section {
    padding: 120px 48px;
  }

  .section-interactive-map {
    padding: 100px 48px 140px;
  }

}

@media (max-width: 640px) {
  .page-section {
    padding: 120px 16px 140px;
  }

  .page-section__inner {
    max-width: none;
  }

  .page-section__title {
    font-size: 36px;
  }

  .page-section__content {
    display: block;
  }

  .section {
    padding: 100px 24px;
  }

  .section-interactive-map {
    padding: 80px 24px 120px;
  }

  .map-cities__title {
    font-size: 16px;
    letter-spacing: 0.06em;
  }

  .map-cities__list {
    font-size: 16px;
  }

}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: 'DM Sans', sans-serif;
  font-weight: 400;
  background-color: white;
  color: #22316d;
}

h1 {
  font-family: 'DM Sans', sans-serif;
  font-weight: 700;
  font-size: 36px;
  line-height: 1.2;
  margin: 0;
  color: #22316d;
}

a {
  text-decoration: none;
  color: inherit;
}

.screen-reader-text {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.site-header {
  background-color: #eaeaea;
  border-bottom: 1px solid #b9c0d6;
}

.nav-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 22px 40px;
  display: flex;
  align-items: center;
  gap: 56px;
  position: relative;
  z-index: 10;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 40px;
  margin-left: auto;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: none;
  background: transparent;
  padding: 10px;
  border-radius: 999px;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 6px;
  transition: background-color 0.2s ease;
  margin-left: auto;
}

.nav-toggle:hover,
.nav-toggle:focus-visible {
  background-color: rgba(54, 72, 134, 0.08);
  outline: none;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background-color: #364886;
  border-radius: 2px;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.nav-container.is-open .nav-toggle span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.nav-container.is-open .nav-toggle span:nth-child(2) {
  opacity: 0;
}

.nav-container.is-open .nav-toggle span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}


.nav-logo {
  flex-shrink: 0;
}
.nav-logo img {
  width: 122px;
  height: auto;
}

.nav-links {
  display: flex;
  flex: 1;
  justify-content: center;
  gap: 36px;
  align-items: center;
  font-size: 16px;
  color: #364886;
  letter-spacing: 0.01em;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-links li {
  list-style: none;
}

.nav-links > li {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.nav-links > li > a {
  display: inline-flex;
  align-items: center;
  font-weight: 400;
  position: relative;
}

.nav-links a:hover {
  color: #1d2a56;
}

.nav-links .menu-item-has-children {
  position: relative;
}

/* Toggle button hidden by default; used for mobile accordion */
.nav-submenu-toggle {
  display: none;
  border: none;
  background: transparent;
  padding: 0;
  margin: 0;
  cursor: pointer;
  color: #364886;
  align-items: center;
  justify-content: center;
}

.nav-submenu-toggle-icon {
  display: inline-block;
  width: 11px;
  height: 11px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg);
  transition: transform 0.2s ease;
}

.menu-item-has-children.is-open > .nav-submenu-toggle .nav-submenu-toggle-icon {
  transform: rotate(-135deg);
}

/* Add dropdown arrow indicator */
.nav-links .menu-item-has-children > a::after {
  content: "";
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: 6px;
  vertical-align: middle;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 5px solid currentColor;
  opacity: 0.6;
  transition: opacity 0.2s ease;
}

.nav-links .menu-item-has-children:hover > a::after {
  opacity: 1;
}

.nav-links .sub-menu {
  display: none;
  list-style: none;
  margin: 12px 0 0;
  padding: 16px 0 0;
  gap: 12px;
}

.nav-links .sub-menu li {
  display: block;
}

.nav-links .sub-menu a {
  display: block;
  padding: 10px 0;
  font-size: 15px;
  color: #1d2a56;
  line-height: 1.8;
  white-space: normal;
  word-wrap: break-word;
  max-width: 280px;
}

/* Add arrow for nested sub-menu items */
.nav-links .sub-menu .menu-item-has-children > a::after {
  content: "›";
  margin-left: 6px;
  font-size: 16px;
  opacity: 0.6;
}

@media (min-width: 961px) {
  .nav-links .sub-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    min-width: 220px;
    padding: 18px 24px;
    margin-top: 8px;
    background-color: #ffffff;
    border-radius: 18px;
    box-shadow: 0 18px 40px rgba(30, 43, 84, 0.18);
    border: 1px solid rgba(32, 54, 115, 0.12);
    gap: 8px;
    z-index: 20;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.15s ease, visibility 0.15s ease;
  }

  /* Create invisible bridge to maintain hover */
  .nav-links .sub-menu::before {
    content: "";
    position: absolute;
    top: -8px;
    left: 0;
    right: 0;
    height: 8px;
    background: transparent;
  }

  /* Show on hover - parent hover maintains for all children */
  .nav-links .menu-item-has-children:hover > .sub-menu,
  .nav-links .menu-item-has-children:focus-within > .sub-menu {
    display: block;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }

  /* Keep parent item highlighted when hovering sub-menu */
  .nav-links .menu-item-has-children:hover > a {
    color: #1d2a56;
  }

  .nav-links .sub-menu li {
    position: relative;
  }

  .nav-links .sub-menu .sub-menu {
    position: absolute;
    top: -18px;
    left: calc(100% + 10px);
    transform: translateX(0);
    margin: 0;
    min-width: 200px;
  }

  /* Bridge for nested sub-menus */
  .nav-links .sub-menu .sub-menu::before {
    content: "";
    position: absolute;
    top: 0;
    left: -10px;
    bottom: 0;
    width: 10px;
  }

  .nav-links .sub-menu a {
    padding: 10px 0;
    line-height: 1.8;
    white-space: normal;
    word-wrap: break-word;
  }
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 32px;
  background-color: #3b86f7;
  color: #ffffff;
  border-radius: 50px;
  font-weight: 600;
  font-size: 16px;
  box-shadow: 0 14px 30px rgba(59, 134, 247, 0.28);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.nav-cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 16px 36px rgba(59, 134, 247, 0.28);
}

.hero {
  display: flex;
  align-items: center;
  gap: 60px;
  position: relative;
  min-height: 700px;
  overflow: visible;
  background-color: #353C9F;
}
.hero picture {
  margin: 0 auto;
}
.hero img {
  width: 100%;
  max-width: 1200px;
  height: auto;
  margin: 0 auto;
}

.hero-content {
  flex: 0 0 900px;
  max-width: 900px;
  width: 100%;
  position: relative;
  z-index: 1;
}

.hero p {
  font-size: 20px;
  line-height: 1.8;
  font-weight: 400;
  margin: 0 0 64px;
  color: #364886;
  letter-spacing: 0.01em;
}

.hero-button {
  display: inline-block;
  padding: 18px 52px;
  background-color: #3b86f7;
  color: #ffffff;
  border-radius: 999px;
  font-weight: 600;
  font-size: 18px;
  box-shadow: 0 22px 40px rgba(59, 134, 247, 0.28);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.hero-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 26px 48px rgba(59, 134, 247, 0.32);
}

.hero-art {
  position: absolute;
  top: -10px;
  right: -80px;
  z-index: 2;
  pointer-events: none;
}

.hero-art img {
  width: 560px;
  max-width: none;
  filter: drop-shadow(0 32px 52px rgba(30, 61, 128, 0.25));
}


.section-manifest {
  padding: 140px 80px 180px;
}

.manifest-wrapper {
  max-width: 1280px;
  margin: 0 auto;
}




.manifest-content {
  display: flex;
  gap: 96px;
  align-items: flex-start;
}
.manifest-content--highlight {
  align-items: center;
}

.manifest-left,
.manifest-right {
  flex: 1;
  max-width: 540px;
}

.manifest-title {
  font-size: 34px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #ff4e58;
  margin: 0 0 16px;
}

.manifest-subtitle {
  font-size: 16px;
  font-weight: 400;
  color: #8a94ad;
  margin: 0 0 40px;
}

.manifest-text {
  font-size: 18px;
  line-height: 1.9;
  font-weight: 400;
  color: #364886;
  letter-spacing: 0.01em;
  margin: 0 0 32px;
}

.manifest-text:last-child {
  margin-bottom: 0;
}

.manifest-text.muted {
  color: #364886;
}

.manifest-accent {
  color: #3b86f7;
  font-weight: 600;
}

@media (max-width: 1100px) {
  .join-cards {
    flex-wrap: wrap;
    gap: 32px;
  }

  .join-card {
    width: 300px;
  }

  .join-card--highlight {
    transform: translateY(0);
  }

  .join-card--highlight::before {
    top: -18px;
    bottom: -18px;
    left: -18px;
    right: -18px;
  }
}

@media (max-width: 960px) {
  .nav-container {
    padding: 20px 24px;
    gap: 16px;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .nav-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    margin-left: 0;
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
    padding: 24px 24px 32px;
    background-color: #eaeaea;
    border-bottom: 1px solid #b9c0d6;
    box-shadow: 0 18px 40px rgba(30, 43, 84, 0.15);
    border-radius: 0 0 18px 18px;
  }

  .nav-container.is-open .nav-menu {
    display: flex;
  }

  .nav-links {
    width: 100%;
    flex: none;
    flex-direction: column;
    align-items: stretch;
    gap: 18px;
    font-size: 18px;
  }

  .nav-links > li {
    position: relative;
    display: block;
    width: 100%;
  }

  .nav-links a {
    display: block;
    width: 100%;
    position: relative;
  }

  .nav-links .menu-item-has-children {
    width: 100%;
    position: relative;
  }

  .nav-links .menu-item-has-children > a {
    padding: 12px 48px 12px 28px;
  }

  /* Remove desktop arrow indicator; use custom caret for mobile */
  .nav-links .menu-item-has-children > a::after {
    content: none;
  }

  .nav-links .menu-item-has-children > a::before {
    content: '▾';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    font-size: 16px;
    opacity: 0.6;
  }

  .nav-submenu-toggle {
    display: inline-flex;
    position: absolute;
    top: 50%;
    right: 0;
    width: 40px;
    height: 40px;
    border-radius: 12px;
    transform: translateY(-50%);
    transition: background-color 0.2s ease;
  }

  .nav-submenu-toggle:hover {
    background-color: rgba(54, 72, 134, 0.1);
  }

  .nav-submenu-toggle:focus-visible {
    outline: 2px solid #3b86f7;
    outline-offset: 2px;
  }

  .nav-links .sub-menu {
    display: none;
    width: 100%;
    margin: 0;
    padding: 12px 0 0 16px;
    gap: 12px;
  }

  .nav-links .menu-item-has-children.is-open > .sub-menu {
    display: block;
  }

  .nav-links .menu-item-has-children.is-open > a::before {
    content: '▴';
  }

  .nav-links .menu-item-has-children > .sub-menu .sub-menu {
    padding-left: 18px;
  }

  .nav-links .sub-menu .menu-item-has-children {
    position: relative;
  }

  .nav-links .sub-menu a,
  .nav-links .sub-menu .nav-submenu-toggle {
    font-size: 16px;
    line-height: 1.6;
  }

  .nav-cta {
    display: none;
    width: 100%;
    justify-content: center;
    font-size: 18px;
  }

  .nav-container.is-open .nav-cta {
    display: inline-flex;
  }

  .hero-content {
    max-width: none;
    flex: none;
  }

  .hero-art {
    position: static;
    margin: 80px auto 0;
    text-align: center;
  }

  .hero-art img {
    width: 420px;
    transform: rotate(-22deg);
  }

  .section-manifest {
    padding: 120px 32px 160px;
  }

  .manifest-content {
    flex-direction: column;
    gap: 72px;
  }

  .manifest-left,
  .manifest-right {
    max-width: none;
  }


}

@media (max-width: 640px) {
  .hero-art img {
    width: 320px;
  }

  .section-manifest {
    padding: 100px 24px 140px;
  }

 
}


.section-profile {
  background-color: #eaeaea;
  padding: 120px 80px 180px;
}

.profile-wrapper {
  width: 100%;
  margin: 0;
  display: flex;
  gap: 64px;
  justify-content: space-between;
  min-height: 600px;
}

.profile-text {
  flex: 1;
  max-width: 520px;
  padding: 48px 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
  margin-left: 140px;
}

.profile-name {
  font-size: 34px;
  color: #ff4e58;
  font-weight: 600;
  margin: 0 0 8px;
}

.profile-org {
  font-size: 30px;
  font-weight: 600;
  text-transform: uppercase;
  color: #ff4e58;
  margin: 0 0 40px;
}

.profile-body {
  font-size: 18px;
  line-height: 1.9;
  font-weight: 400;
  color: #364886;
  letter-spacing: 0.01em;
  margin: 0 0 48px;
}

.profile-actions {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.btn-primary,
.btn-outline,
.contact-card .wpcf7-submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 18px 48px;
  border-radius: 999px;
  font-size: 18px;
  font-weight: 600;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  outline: none;
  border: 0px;
  cursor: pointer;
}

.btn-primary,
.contact-card .wpcf7-submit {
  background-color: #3b86f7;
  color: #ffffff;
  box-shadow: 0 24px 44px rgba(59, 134, 247, 0.25);
}

.btn-primary:hover,
.contact-card .wpcf7-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 22px 44px rgba(59, 134, 247, 0.32);
}

.btn-outline {
  border: 2px solid #3b86f7;
  color: #3b86f7;
  background-color: transparent;
  box-shadow: inset 0 0 0 1px rgba(59, 134, 247, 0.1);
}

.btn-outline:hover {
  transform: translateY(-2px);
  background-color: rgba(59, 134, 247, 0.08);
}

.profile-image {
  flex: 1;
  max-width: 700px;
  overflow: hidden;
  background-color: #ffffff;
  box-shadow: 0 36px 70px rgba(28, 54, 115, 0.12);
  display: flex;
  align-items: stretch;
}

.profile-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

@media (max-width: 1100px) {
  .profile-wrapper {
    flex-direction: column;
    gap: 64px;
    align-items: center;
    min-height: unset;
  }

  .profile-text,
  .profile-image {
    max-width: none;
  }

  .profile-text {
    margin: 0;
  }

  .profile-actions {
    flex-direction: column;
    align-items: stretch;
  }
}

@media (max-width: 720px) {
  .section-profile {
    padding: 120px 24px 140px;
  }

  .profile-wrapper {
    gap: 48px;
  }

  .profile-text {
    max-width: none;
  }

  .profile-image {
    max-width: none;
    border-radius: 28px;
  }

  .btn-primary,
  .btn-outline,
  .contact-card .wpcf7-submit {
    width: 100%;
  }
}


.section-heading {
  font-family: 'DM Sans', sans-serif;
  font-size: 36px;
  font-weight: 700;
  color: #3b86f7;
  letter-spacing: 0.02em;
  margin: 0;
}

.section-involved {
  background-color: #eaeaea;
  padding: 140px 80px 60px;
}

.involved-wrapper {
  max-width: 1280px;
  margin: 0 auto;
}

.involved-header {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 24px;
  margin-bottom: 48px;
}

.involved-cta {
  display: inline-flex;
  padding-inline: 54px;
  margin-bottom: 60px;
  max-width: 200px;
}

.involved-logos {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  grid-auto-rows: 160px;
  gap: 20px;
  align-items: center;
  justify-items: center;
}

.involved-logos img {
  max-width: 160px;
  width: 100%;
  height: auto;
  opacity: 0.95;
}

.section-join {
  background-color: #eaeaea;
  padding: 120px 80px 200px;
}

.section {
  padding: 140px 80px;
  background-color: #ffffff;
}

.section-nezna {
  background: linear-gradient(180deg, rgba(243, 246, 255, 0.9) 0%, #ffffff 100%);
}

.section-nezna__inner {
  max-width: 960px;
  margin: 0 auto;
}

.join-wrapper {
  max-width: 1080px;
  margin: 0 auto;
  text-align: center;
}

.join-intro {
  max-width: 860px;
  margin: 0 auto;
  font-size: 18px;
  line-height: 1.8;
  color: #364886;
  text-align: center;
}

.join-intro__title {
  font-size: 22px;
  text-transform: uppercase;
  color: #ff4e58;
  letter-spacing: 0.08em;
  margin: 0 0 24px;
}

.join-intro p {
  margin: 0 0 16px;
}

.join-intro p:last-child {
  margin-bottom: 0;
}

.section-join .section-heading {
  margin-bottom: 64px;
}

.section-nezna .join-intro__title {
  margin-bottom: 28px;
}

.section-nezna .join-intro p {
  margin-bottom: 18px;
}

.section-interactive-map {
  background-color: #ffffff;
}

.map-cities {
  max-width: 1080px;
  margin: 0 auto 80px;
  text-align: center;
}

.map-cities__title {
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: #ff4e58;
  margin: 0 0 16px;
}

.map-cities__list {
  margin: 0;
  font-size: 18px;
  line-height: 1.6;
  color: #ff4e58;
}

.page-news {
  background-color: #eaeaea;
}

.section-news-hero {
  padding: 160px 24px 0;
  background: linear-gradient(180deg, rgba(243, 246, 255, 0.95) 0%, #eaeaea 100%);
  text-align: center;
}

.news-hero__inner {
  max-width: 840px;
  margin: 0 auto;
}

.news-hero__title {
  font-size: 54px;
  color: #3b86f7;
  margin: 0 0 24px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.news-hero__intro {
  margin: 0;
  font-size: 20px;
  line-height: 1.9;
  color: #364886;
}

.section-news-feed {
  padding: 120px 24px 160px;
}

.news-feed__inner {
  max-width: 1280px;
  margin: 0 auto;
}

.news-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 48px 40px;
}

.news-card {
  background-color: #ffffff;
  border-radius: 36px;
  box-shadow: 0 40px 100px rgba(21, 46, 110, 0.12);
  border: 1px solid rgba(32, 54, 115, 0.08);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.news-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 46px 120px rgba(21, 46, 110, 0.14);
}

.news-card__media img {
  width: 100%;
  height: 240px;
  object-fit: cover;
}
.news-card__media {
  display: block;
}

.news-card__body {
  padding: 32px 36px 40px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.news-card__meta {
  margin: 0;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(32, 54, 115, 0.6);
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.news-card__meta a {
  color: inherit;
  text-decoration: none;
}

.news-card__meta a:hover {
  text-decoration: underline;
}

.news-card__separator {
  color: rgba(32, 54, 115, 0.3);
}

.news-card__title {
  margin: 0;
  font-size: 26px;
  line-height: 1.3;
  color: #1f2f63;
}

.news-card__title a {
  color: inherit;
  text-decoration: none;
}

.news-card__title a:hover {
  color: #3b86f7;
}

.news-card__excerpt {
  margin: 0;
  font-size: 17px;
  line-height: 1.7;
  color: #364886;
  flex-grow: 1;
}

.news-card__link {
  align-self: flex-start;
  font-weight: 600;
  color: #3b86f7;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.news-card__link::after {
  content: '→';
  font-size: 16px;
  transition: transform 0.2s ease;
}

.news-card__link:hover::after {
  transform: translateX(4px);
}

.news-pagination {
  margin: 72px auto 0;
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.news-pagination a,
.news-pagination span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 48px;
  padding: 10px 16px;
  border-radius: 999px;
  background-color: #ffffff;
  border: 1px solid rgba(32, 54, 115, 0.1);
  color: #1f2f63;
  font-weight: 600;
  text-decoration: none;
  transition: background-color 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
}

.news-pagination .current {
  background-color: #3b86f7;
  border-color: #3b86f7;
  color: #ffffff;
}

.news-pagination a:hover {
  background-color: rgba(59, 134, 247, 0.12);
  box-shadow: 0 12px 30px rgba(21, 46, 110, 0.12);
}

.news-empty {
  text-align: center;
  padding: 120px 32px;
  background-color: #ffffff;
  border-radius: 36px;
  border: 1px solid rgba(32, 54, 115, 0.08);
  box-shadow: 0 32px 80px rgba(21, 46, 110, 0.1);
  color: #364886;
  font-size: 20px;
}

.program-content {
  max-width: 920px;
  margin: 0 auto;
  font-size: 18px;
  line-height: 1.8;
  color: #364886;
}

.program-content > *:first-child {
  margin-top: 0;
}

.program-content h2,
.program-content h3,
.program-content h4 {
  color: #3b86f7;
  font-family: 'DM Sans', sans-serif;
  font-weight: 700;
  margin: 48px 0 24px;
}

.program-content p {
  margin: 0 0 24px;
}

.join-cards {
  margin-top: 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  column-gap: 0;
  row-gap: 0;
  align-items: center;
}

.join-card {
  background-color: #ffffff;
  border: 3px solid #c9d4ef;
  border-radius: 40px;
  padding: 64px 48px 72px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: center;
  text-align: center;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  width: 100%;
}

.join-card h4 {
  font-size: 20px;
  text-transform: uppercase;
  color: #ff4e58;
  margin: 0;
  letter-spacing: 0.08em;
}

.join-card p {
  font-size: 18px;
  line-height: 1.8;
  color: #364886;
  margin: 0;
}

.join-card .btn-outline,
.join-card .btn-primary {
  align-self: center;
  min-width: 200px;
  margin-top: auto;
}

.join-card--highlight {
  border-color: #3b86f7;
  box-shadow: 0 40px 90px rgba(21, 46, 110, 0.18);
  padding: 112px 68px 128px;
}

@media (max-width: 1100px) {
  .news-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 40px 28px;
  }

  .join-cards {
    grid-template-columns: 1fr;
    row-gap: 32px;
  }
}

@media (max-width: 960px) {
  .involved-header {
    flex-direction: column;
    gap: 32px;
  }

  .involved-cta {
    padding-inline: 48px;
    justify-content: center;
    width: 100%;
  }

  .section-news-feed {
    padding: 100px 32px 140px;
  }

  .news-card__body {
    padding: 28px 28px 36px;
  }

  .involved-logos {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px 32px;
  }
}

@media (max-width: 900px) {
  .join-cards {
    row-gap: 32px;
  }

  .join-card {
    width: 100%;
    max-width: none;
    margin: 0 auto;
    padding: 44px 32px 54px;
  }

  .join-card--highlight {
    padding: 74px 40px 94px;
  }
}

@media (max-width: 720px) {
  .section-involved,
  .section-join {
    padding: 100px 32px;
  }

  .section-news-hero {
    padding: 120px 24px 0;
  }

  .news-hero__title {
    font-size: 42px;
  }

  .news-hero__intro {
    font-size: 18px;
  }

  .news-grid {
    grid-template-columns: 1fr;
  }

  .news-card__media img {
    height: 200px;
  }

  .news-card__title {
    font-size: 22px;
  }

  .section-news-feed {
    padding: 80px 24px 120px;
  }
}

.section-contact {
  background-color: #eaeaea;
  padding: 120px 0 180px;
}

.contact-wrapper {
  position: relative;
  width: 100%;
  display: grid;
  justify-items: end;
  padding-right: 80px;
}

.contact-graphic {
  position: absolute;
  top: 50%;
  left: 2%;
  transform: translate(-5%, -50%);
  pointer-events: none;
  z-index: 0;
}

.contact-graphic img {
  width: 1000px;
  max-width: none;
}

.contact-card {
  width: min(700px, 100%);
  background-color: #ffffff;
  padding: 70px 80px;
  border-radius: 48px;
  box-shadow: 0 48px 110px rgba(21, 46, 110, 0.14);
  border: 2px solid #c9d4ef;
  display: flex;
  flex-direction: column;
  gap: 32px;
  position: relative;
  z-index: 1;
}

.contact-intro {
  font-size: 16px;
  line-height: 1.8;
  font-weight: 400;
  color: #6f7aa8;
  margin: 0;
}

.contact-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px;
}

.contact-card label {
  display: flex;
  flex-direction: column;
  gap: 12px;
  font-size: 14px;
  color: #1f2f63;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  align-items: flex-start;
}

.contact-card input,
.contact-card textarea {
  border: 1px solid #bcc8eb;
  border-radius: 999px;
  padding: 16px 24px;
  font-size: 16px;
  font-family: inherit;
  color: #364886;
  background-color: #fafcff;
  box-shadow: inset 0 2px 6px rgba(17, 34, 76, 0.08);
  width: 100%;
}

.contact-card textarea {
  border-radius: 28px;
  min-height: 150px;
  resize: vertical;
}

.contact-card input:focus,
.contact-card textarea:focus {
  outline: none;
  border-color: #3b86f7;
  box-shadow: 0 0 0 3px rgba(59, 134, 247, 0.15);
}

.contact-card .btn-primary,
.contact-card .wpcf7-submit {
  align-self: flex-start;
  padding-inline: 60px;
}

.contact-helper {
  font-size: 14px;
  color: #6f7aa8;
  line-height: 1.6;
}

.contact-helper code {
  background-color: rgba(59, 134, 247, 0.08);
  padding: 2px 6px;
  border-radius: 6px;
  font-size: 13px;
}



.contact-card .wpcf7 {
  width: 100%;
}

.contact-card .wpcf7-form {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.contact-card .wpcf7-form p {
  margin: 0;
}

.contact-card .wpcf7-form .contact-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px;
}

.contact-card .wpcf7-form .contact-message {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.contact-card .wpcf7-form .wpcf7-form-control-wrap {
  width: 100%;
}

.contact-card .wpcf7-form .hidden-fields-container {
  display: none;
}

.contact-card .screen-reader-response {
  order: -2;
  font-size: 14px;
  color: #6f7aa8;
}

.contact-card .screen-reader-response ul {
  margin: 0 0 12px 0;
  padding: 0;
  list-style: none;
}

.contact-card .screen-reader-response li {
  margin-bottom: 8px;
}

.contact-card .wpcf7-not-valid-tip {
  color: #ff4e58;
  font-size: 13px;
  margin-top: 8px;
}

.contact-card .wpcf7-response-output,
.contact-card .screen-reader-response {
  order: -1;
  display: none;
  margin: 0;
  margin-bottom: 16px;
  border-radius: 18px;
  border: none;
  padding: 16px 20px;
  background-color: rgba(59, 134, 247, 0.08);
  color: #3b86f7;
}
.contact-card .wpcf7-form.sent .wpcf7-response-output,
.contact-card .wpcf7-form.failed .wpcf7-response-output,
.contact-card .wpcf7-form.invalid .wpcf7-response-output,
.contact-card .wpcf7-form.unaccepted .wpcf7-response-output,
.contact-card .wpcf7-form.payment-required .wpcf7-response-output {
  display: block;
}

.contact-card .wpcf7-form.sent .screen-reader-response,
.contact-card .wpcf7-form.failed .screen-reader-response,
.contact-card .wpcf7-form.invalid .screen-reader-response,
.contact-card .wpcf7-form.unaccepted .screen-reader-response,
.contact-card .wpcf7-form.payment-required .screen-reader-response {
  display: block;
}

@media (max-width: 1200px) {
  .contact-graphic img {
    width: 850px;
  }
}

@media (max-width: 960px) {
  .contact-wrapper {
    justify-items: center;
    text-align: center;
    padding: 0 32px;
  }

  .contact-card {
    width: min(700px, 100%);
    padding: 56px 48px;
  }

  .contact-card .btn-primary,
  .contact-card .wpcf7-submit {
    align-self: center;
  }

  .contact-row {
    grid-template-columns: 1fr;
  }

  .contact-card label {
    align-items: flex-start;
    text-align: left;
    width: 100%;
    gap: 12px;
  }

  .contact-card label input,
  .contact-card label textarea {
    width: 100%;
  }

  .contact-card .wpcf7-form .contact-row {
    grid-template-columns: 1fr;
  }

  .contact-graphic {
    transform: translate(-8%, -50%);
  }

  .contact-graphic img {
    width: 600px;
  }
}

@media (max-width: 640px) {
  .section-contact {
    padding: 120px 24px 140px;
  }

  .contact-card {
    padding: 48px 32px;
  }

  .contact-wrapper {
    justify-items: center;
    padding: 0;
  }

  .contact-graphic {
    display: none;
  }

  .contact-graphic img {
    width: min(100%, 480px);
  }
}

.site-footer {
  background-color: white;
  border-top: 1px solid #c9d4ef;
  padding: 80px 80px 100px;
}

.footer-partner-section {
  max-width: 1280px;
  margin: 0 auto 80px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 64px;
  align-items: flex-start;
}

.footer-partner-column {
  display: flex;
  flex-direction: column;
  gap: 28px;
  align-items: flex-start;
}

.footer-partner-logos {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 24px 32px;
  align-items: center;
  justify-items: center;
}

.footer-partner-logos a {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px 16px;
}

.footer-partner-logos img {
  max-width: 160px;
  width: 100%;
  height: auto;
  object-fit: contain;
  filter: grayscale(10%);
  transition: filter 0.2s ease, transform 0.2s ease;
}

.footer-partner-logos a:hover img {
  filter: grayscale(0%);
  transform: translateY(-2px);
}

.footer-partner-visual {
  display: block;
  width: 100%;
}

.footer-partner-visual img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
}

.footer-partner-column h3 {
  margin: 0;
  font-size: 24px;
  font-weight: 600;
  color: #1f2f63;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.footer-partner-column p {
  margin: 0;
  font-size: 18px;
  line-height: 1.6;
  color: #364886;
}

.footer-wrapper {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  gap: 80px;
  align-items: flex-start;
  justify-content: space-between;
}

.footer-brand img {
  width: 140px;
  margin-bottom: 20px;
}

.footer-brand p {
  margin: 0;
  color: #6f7aa8;
  line-height: 1.8;
}

.footer-columns {
  display: grid;
  grid-template-columns: repeat(3, minmax(140px, auto));
  gap: 60px;
}

.footer-columns ul {
  list-style: none;
  margin: 0 0 12px 0;
  padding: 0;
}

.footer-columns li {
  margin-bottom: 12px;
}

.footer-columns h4 {
  font-size: 16px;
  font-weight: 600;
  color: #1f2f63;
  margin: 0 0 20px;
}

.footer-columns a {
  display: block;
  color: #3b86f7;
  text-decoration: none;
  margin-bottom: 12px;
  font-size: 15px;
}

.footer-columns a:hover {
  text-decoration: underline;
}

/* Footer sub-menu styles */
.footer-columns .menu-item-has-children {
  position: relative;
  padding-right: 44px;
}

.footer-columns .menu-item-has-children > a {
  display: block;
}

.footer-columns .menu-item-has-children > a::after {
  content: none;
}

.footer-columns .nav-submenu-toggle {
  display: inline-flex;
  position: absolute;
  top: 0;
  right: 0;
  width: 34px;
  height: 34px;
  border-radius: 10px;
  justify-content: center;
  align-items: center;
  transition: background-color 0.2s ease, color 0.2s ease;
}

.footer-columns .nav-submenu-toggle:hover,
.footer-columns .nav-submenu-toggle:focus-visible {
  background-color: rgba(54, 72, 134, 0.1);
  color: #1f2f63;
}

.footer-columns .sub-menu {
  list-style: none;
  margin: 12px 0 0;
  padding: 12px 0 0 16px;
  display: none;
}

.footer-columns .menu-item-has-children.is-open > .sub-menu {
  display: block;
}

.footer-columns .sub-menu li {
  margin-bottom: 8px;
}

.footer-columns .sub-menu a {
  font-size: 14px;
  color: #3b86f7;
  line-height: 1.5;
}

.footer-columns .sub-menu a:hover {
  text-decoration: underline;
}

.footer-social {
  display: flex !important;
  align-items: center;
  gap: 10px;
}

.footer-social img {
  width: 20px;
  height: 20px;
  object-fit: contain;
  filter: grayscale(100%);
  transition: filter 0.2s ease;
}

.footer-social:hover img {
  filter: grayscale(0%);
}

@media (max-width: 960px) {
  .footer-partner-section {
    grid-template-columns: 1fr;
    gap: 48px;
    text-align: center;
  }

  .footer-partner-column {
    align-items: center;
    gap: 24px;
  }

  .footer-partner-column h3 {
    font-size: 22px;
  }

  .footer-partner-column p {
    font-size: 16px;
  }

  .footer-partner-logos {
    grid-template-columns: repeat(3, minmax(120px, 1fr));
    gap: 24px 32px;
  }

  .footer-wrapper {
    flex-direction: column;
    gap: 48px;
  }

  .footer-columns {
    width: 100%;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  }
}

@media (max-width: 640px) {
  .site-footer {
    padding: 80px 32px 100px;
  }

  .footer-partner-logos {
    grid-template-columns: repeat(3, minmax(100px, 1fr));
    gap: 20px 24px;
  }
}

.site-footer-credits {
  background-color: #dfe3f2;
  text-align: center;
  padding: 18px 24px;
  font-size: 14px;
  color: #1f2f63;
}

.site-footer-credits a {
  color: #3b86f7;
  text-decoration: none;
  font-weight: 600;
}

.site-footer-credits a:hover {
  text-decoration: underline;
}


.org-page {
  background-color: #eaeaea;
  padding: 120px 80px 160px;
}

.org-hero {
  max-width: 720px;
  margin: 0 auto 80px;
  text-align: center;
}

.org-hero h1 {
  font-size: 36px;
  font-weight: 600;
  color: #3b86f7;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin: 0 0 20px;
}

.org-hero p {
  margin: 0;
  font-size: 18px;
  line-height: 1.8;
  font-weight: 400;
  color: #364886;
}

.org-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 48px;
}

.org-card {
  background-color: #ffffff;
  border: 2px solid #3b86f7;
  border-radius: 32px;
  padding: 48px 40px 56px;
  box-shadow: 0 28px 60px rgba(21, 46, 110, 0.12);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
  text-align: center;
}

.org-card-logo {
  height: 160px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.org-card-logo img {
  max-width: 180px;
  max-height: 140px;
  width: auto;
  height: auto;
}

.org-card-logo--double {
  flex-direction: column;
  gap: 16px;
}

.org-card p {
  font-size: 16px;
  line-height: 1.9;
  font-weight: 400;
  color: #3d4c88;
  margin: 0;
}

.org-meta {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: 15px;
  font-weight: 400;
  color: #1f2f63;
}

.org-meta a {
  color: #3b86f7;
  text-decoration: none;
}

.org-meta a:hover {
  text-decoration: underline;
}

@media (max-width: 1024px) {
  .org-page {
    padding: 120px 48px 140px;
  }

  .org-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 36px;
  }
}

@media (max-width: 680px) {
  .org-page {
    padding: 100px 24px 120px;
  }

  .org-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .org-card {
    padding: 40px 32px 48px;
  }
}


.marker-cluster div {
  background: #e74c3c;
  color: #fff !important;
  border-radius: 50%;
  border: 2px solid #fff;
  font-weight: 700;
  font-size: 14px;
}


#post-61 .page-section__title {
  font-size: 37px;
}


.tribe-events-c-nav__prev,
.tribe-events-c-nav__next {
    color: #3b86f7 !important;
}

.tribe-events-event-image img {
    width: 100%;
    height: auto;
    object-fit: contain;
}

.program-wrapper {
  background-color: unset !important;
}

.program-wrapper .section-heading {
  text-align: center;
}