@font-face {
  font-family: "Gilroy";
  src: url("../fonts/da25b8635-Gilroy-Regular.woff2") format("woff2");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: "Gilroy";
  src: url("../fonts/2a884d723-Gilroy-Medium.woff2") format("woff2");
  font-style: normal;
  font-weight: 500;
  font-display: swap;
}

@font-face {
  font-family: "Gilroy";
  src: url("../fonts/4f2d6e78e-Gilroy-SemiBold.woff2") format("woff2");
  font-style: normal;
  font-weight: 600;
  font-display: swap;
}

@font-face {
  font-family: "Gilroy";
  src: url("../fonts/94d33a76c-Gilroy-Bold.woff2") format("woff2");
  font-style: normal;
  font-weight: 700;
  font-display: swap;
}

@font-face {
  font-family: "Alegreya SC";
  src: url("../fonts/82a0b84e1-AlegreyaSC-Bold.woff2") format("woff2");
  font-style: normal;
  font-weight: 700;
  font-display: swap;
}

:root {
  --ink: #13283f;
  --ink-soft: #52677b;
  --blue-900: #183d62;
  --blue-700: #2f70a8;
  --blue-500: #61a9eb;
  --blue-300: #beddf8;
  --blue-100: #edf6ff;
  --pink: #ed5f79;
  --pink-dark: #a92f4f;
  --pink-soft: #fff0f3;
  --lavender: #c39bbe;
  --lavender-soft: #f4edf4;
  --yellow: #f6dd58;
  --yellow-soft: #fff8c9;
  --paper: #fffefd;
  --warm: #f4f1f5;
  --white: #fff;
  --line: rgba(24, 61, 98, 0.16);
  --shadow: 0 28px 84px rgba(24, 61, 98, 0.16);
  --shadow-soft: 0 12px 34px rgba(24, 61, 98, 0.075);
  --radius-sm: 3px;
  --radius: 5px;
  --radius-lg: 8px;
  --container: 1320px;
  --font: "Gilroy", "Segoe UI", Arial, sans-serif;
  --font-display: "Alegreya SC", Georgia, serif;
  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 132px;
  scrollbar-gutter: stable;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font);
  font-size: 17px;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.menu-open,
body.dialog-open {
  overflow: hidden;
}

img,
picture,
svg {
  display: block;
  max-width: 100%;
}

button,
input,
textarea,
select {
  color: inherit;
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

a {
  color: inherit;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

h1,
h2,
h3,
h4,
p,
ul,
ol,
dl,
blockquote,
figure {
  margin-top: 0;
}

h1,
h2,
h3,
h4 {
  line-height: 1.1;
  text-wrap: balance;
}

h1 {
  font-size: clamp(3rem, 6vw, 6rem);
  font-weight: 600;
  letter-spacing: -0.06em;
}

h2 {
  font-size: clamp(2.25rem, 4vw, 4.15rem);
  font-weight: 600;
  letter-spacing: -0.05em;
}

h3 {
  font-size: clamp(1.22rem, 1.6vw, 1.55rem);
  letter-spacing: -0.02em;
}

::selection {
  background: var(--pink-soft);
  color: var(--ink);
}

:focus-visible {
  border-radius: 2px;
  outline: 3px solid var(--pink);
  outline-offset: 3px;
}

.container {
  width: min(calc(100% - 96px), var(--container));
  margin-inline: auto;
}

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

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 12px;
  padding: 10px 16px;
  background: var(--ink);
  color: var(--white);
  border-radius: 8px;
  transform: translateY(-150%);
  transition: transform 0.2s ease;
}

.skip-link:focus {
  transform: none;
}

.eyebrow {
  margin-bottom: 10px;
  color: var(--blue-700);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  line-height: 1.2;
  text-transform: uppercase;
}

.eyebrow--light {
  color: var(--blue-300);
}

.button {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 24px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 700;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    background 0.2s ease,
    color 0.2s ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button--small {
  min-height: 42px;
  padding: 9px 20px;
  font-size: 0.92rem;
}

.button--wide {
  width: 100%;
}

.button--pink {
  background: var(--pink);
  color: var(--white);
  box-shadow: 0 10px 28px rgba(233, 94, 122, 0.25);
}

.button--pink:hover {
  background: var(--pink-dark);
}

.button--yellow {
  background: var(--yellow);
  color: var(--ink);
  box-shadow: 0 10px 28px rgba(246, 221, 88, 0.22);
}

.button--yellow:hover {
  background: #ffe96e;
}

.button--dark {
  background: var(--ink);
  color: var(--white);
}

.button--dark:hover {
  background: var(--blue-900);
}

.button--soft {
  background: var(--blue-100);
  color: var(--blue-900);
}

.button--outline {
  border-color: var(--ink);
  background: transparent;
  color: var(--ink);
}

.button--outline:hover {
  background: var(--ink);
  color: var(--white);
}

.button--outline-light {
  border-color: rgba(255, 255, 255, 0.65);
  background: transparent;
  color: var(--white);
}

.button--outline-light:hover {
  background: var(--white);
  color: var(--ink);
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--blue-900);
  font-weight: 700;
  text-decoration: none;
}

.text-link span {
  transition: transform 0.2s ease;
}

.text-link:hover span {
  transform: translateX(4px);
}

.text-link--large {
  font-size: 1.04rem;
}

.site-header {
  position: relative;
  z-index: 100;
  background: rgba(255, 254, 253, 0.96);
  border-bottom: 1px solid rgba(20, 32, 51, 0.08);
  transition:
    box-shadow 0.25s ease,
    transform 0.25s ease;
}

.site-header.is-stuck {
  position: sticky;
  top: 0;
  box-shadow: 0 8px 30px rgba(24, 61, 98, 0.09);
}

.header-bar {
  background: var(--blue-100);
  color: var(--blue-900);
  font-size: 0.77rem;
  font-weight: 600;
}

.header-bar__inner {
  min-height: 36px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.header-bar p {
  margin: 0;
}

.header-bar__contacts {
  display: flex;
  gap: 24px;
}

.header-bar a {
  text-decoration: none;
}

.header-main {
  min-height: 88px;
  display: flex;
  align-items: center;
  gap: 32px;
}

.brand {
  min-width: 250px;
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.brand img {
  width: 58px;
  height: 56px;
  object-fit: contain;
}

.brand__copy {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.brand__copy strong {
  font-size: 1.45rem;
  letter-spacing: 0.09em;
}

.brand__copy small {
  max-width: 190px;
  margin-top: 4px;
  color: var(--ink-soft);
  font-size: 0.68rem;
  line-height: 1.2;
}

.desktop-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(14px, 2vw, 28px);
  margin-left: auto;
}

.desktop-nav a {
  position: relative;
  padding: 30px 0;
  font-size: 0.9rem;
  font-weight: 600;
  text-decoration: none;
}

.desktop-nav a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 21px;
  left: 0;
  height: 2px;
  background: var(--pink);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.2s ease;
}

.desktop-nav a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.icon-button {
  width: 42px;
  height: 42px;
  display: inline-grid;
  place-items: center;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: var(--white);
  color: var(--ink);
  font-size: 1.45rem;
  line-height: 1;
  cursor: pointer;
}

.menu-toggle {
  width: 44px;
  height: 44px;
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: var(--ink);
  cursor: pointer;
}

.menu-toggle > span:not(.sr-only) {
  width: 19px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition:
    transform 0.2s ease,
    opacity 0.2s ease;
}

.menu-toggle[aria-expanded="true"] > span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] > span:nth-child(2) {
  opacity: 0;
}

.menu-toggle[aria-expanded="true"] > span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.menu-panel {
  position: absolute;
  z-index: 20;
  top: 100%;
  right: 0;
  left: 0;
  padding: 30px 0 38px;
  background: var(--white);
  border-top: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.menu-panel__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr) minmax(240px, 1.1fr);
  gap: 28px;
}

.menu-group {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
}

.menu-group > a:not(.button) {
  padding: 3px 0;
  color: var(--ink-soft);
  font-weight: 600;
  text-decoration: none;
}

.menu-group > a:hover {
  color: var(--pink);
}

.menu-group--accent {
  padding: 24px;
  background: var(--blue-100);
  border-radius: var(--radius);
}

.menu-group--accent p:not(.eyebrow) {
  margin-bottom: 8px;
  color: var(--ink-soft);
  font-size: 0.92rem;
}

.section {
  padding: clamp(76px, 9vw, 132px) 0;
}

.section--tinted {
  background: var(--blue-100);
}

.section--needs {
  padding-bottom: 92px;
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 48px;
  margin-bottom: 42px;
}

.section-heading h2 {
  max-width: 760px;
  margin-bottom: 0;
}

.section-heading__copy {
  max-width: 420px;
  margin-bottom: 5px;
  color: var(--ink-soft);
}

.home-hero {
  min-height: min(750px, calc(100vh - 124px));
  display: flex;
  align-items: stretch;
  background-image:
    linear-gradient(90deg, rgba(16, 35, 58, 0.24), rgba(16, 35, 58, 0.02)),
    url("../images/core/0e37cc922-heroblockbg.png");
  background-position: center;
  background-size: cover;
}

.home-hero__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  padding-block: 74px;
}

.home-hero__card {
  width: min(680px, 64%);
  padding: clamp(34px, 5vw, 68px);
  background: rgba(15, 38, 61, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius-lg);
  color: var(--white);
  box-shadow: 0 30px 80px rgba(15, 38, 61, 0.3);
  backdrop-filter: blur(10px);
}

.home-hero__card h1 {
  max-width: 600px;
  margin-bottom: 26px;
  font-size: clamp(3rem, 5.3vw, 5.25rem);
}

.home-hero__card > p:not(.eyebrow) {
  max-width: 590px;
  margin-bottom: 32px;
  color: rgba(255, 255, 255, 0.8);
  font-size: clamp(1.04rem, 1.5vw, 1.22rem);
}

.hero-note {
  align-self: flex-end;
  width: 205px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: end;
  gap: 10px;
  padding: 18px;
  background: var(--yellow);
  border-radius: var(--radius);
  color: var(--ink);
  box-shadow: var(--shadow);
  text-decoration: none;
  transform: rotate(-2deg);
  transition: transform 0.2s ease;
}

.hero-note:hover {
  transform: rotate(0) translateY(-4px);
}

.hero-note__number {
  grid-column: 1 / -1;
  font-size: 3.5rem;
  font-weight: 700;
  letter-spacing: -0.06em;
  line-height: 0.9;
}

.hero-note > span:not(.hero-note__number) {
  font-size: 0.78rem;
  font-weight: 600;
  line-height: 1.25;
}

.hero-note strong {
  font-size: 1.3rem;
}

.horizontal-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(215px, 1fr));
  gap: 18px;
}

.need-card {
  min-width: 0;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease;
}

.need-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
}

.need-card__image {
  position: relative;
  height: 245px;
  display: block;
  overflow: hidden;
  background: var(--blue-100);
}

.need-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.need-card:hover .need-card__image img {
  transform: scale(1.035);
}

.badge {
  position: absolute;
  top: 14px;
  left: 14px;
  padding: 6px 11px;
  border-radius: 999px;
  background: var(--white);
  color: var(--ink);
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
}

.badge--urgent {
  background: var(--pink);
  color: var(--white);
}

.need-card__body {
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: 20px;
}

.need-card__body h3 {
  min-height: 4.4em;
  margin-bottom: 10px;
}

.need-card__body h3 a {
  text-decoration: none;
}

.need-card__body > p:not(.eyebrow) {
  min-height: 4.5em;
  margin-bottom: 20px;
  color: var(--ink-soft);
  font-size: 0.88rem;
  line-height: 1.45;
}

.progress {
  margin-top: auto;
}

.progress__meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  margin-bottom: 8px;
  color: var(--ink-soft);
  font-size: 0.75rem;
}

.progress__meta strong {
  color: var(--ink);
}

.progress__track {
  height: 7px;
  overflow: hidden;
  background: #edf0f3;
  border-radius: 999px;
}

.progress__track span {
  height: 100%;
  display: block;
  background: linear-gradient(90deg, var(--pink), #f3a8b7);
  border-radius: inherit;
}

.card-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: 20px;
}

.card-actions .text-link {
  font-size: 0.78rem;
}

.image-placeholder {
  width: 100%;
  height: 100%;
  display: grid;
  place-items: center;
  background:
    radial-gradient(circle at 70% 25%, rgba(255, 255, 255, 0.8), transparent 25%),
    linear-gradient(135deg, var(--pink-soft), var(--blue-100));
  color: var(--blue-900);
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.image-placeholder--blue {
  background: linear-gradient(135deg, var(--blue-100), var(--blue-300));
}

.image-placeholder--yellow {
  background: linear-gradient(135deg, var(--yellow-soft), var(--pink-soft));
}

.regular-giving {
  padding: 34px 0;
  background: var(--pink-soft);
  border-block: 1px solid rgba(233, 94, 122, 0.13);
}

.regular-giving__inner {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 26px;
}

.regular-giving h2 {
  margin-bottom: 6px;
  font-size: clamp(1.5rem, 2.7vw, 2.5rem);
}

.regular-giving h2 strong {
  color: var(--pink-dark);
}

.regular-giving p:not(.eyebrow) {
  margin: 0;
  color: var(--ink-soft);
}

.program-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.program-card {
  position: relative;
  min-height: 270px;
  display: flex;
  flex-direction: column;
  padding: 28px;
  overflow: hidden;
  background: var(--warm);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  text-decoration: none;
  transition:
    background 0.25s ease,
    color 0.25s ease,
    transform 0.25s ease;
}

.program-card:nth-child(2),
.program-card:nth-child(5) {
  background: var(--blue-100);
}

.program-card:nth-child(3),
.program-card:nth-child(6) {
  background: var(--yellow-soft);
}

.program-card:hover {
  background: var(--blue-900);
  color: var(--white);
  transform: translateY(-5px);
}

.program-card__number {
  margin-bottom: auto;
  color: var(--blue-700);
  font-size: 0.82rem;
  font-weight: 700;
}

.program-card:hover .program-card__number {
  color: var(--blue-300);
}

.program-card h3,
.program-card h2 {
  margin: 36px 45px 12px 0;
}

.program-card p {
  max-width: 330px;
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.94rem;
}

.program-card:hover p {
  color: rgba(255, 255, 255, 0.72);
}

.program-card__arrow {
  position: absolute;
  right: 24px;
  bottom: 22px;
  font-size: 1.5rem;
}

.program-grid--archive {
  grid-template-columns: repeat(2, 1fr);
}

.program-grid--archive .program-card {
  min-height: 320px;
}

.impact {
  padding: clamp(80px, 10vw, 140px) 0;
  background: var(--blue-900);
  color: var(--white);
}

.impact__grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: clamp(60px, 10vw, 140px);
}

.impact__story h2 {
  margin-bottom: 24px;
}

.impact__story > p:not(.eyebrow) {
  max-width: 650px;
  margin-bottom: 30px;
  color: rgba(255, 255, 255, 0.72);
}

.impact__stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.impact__stats div {
  min-height: 150px;
  display: flex;
  flex-direction: column;
  justify-content: end;
  padding: 22px;
  background: var(--blue-900);
}

.impact__stats dt {
  margin-bottom: 8px;
  color: var(--yellow);
  font-size: clamp(2.5rem, 4vw, 4rem);
  font-weight: 700;
  letter-spacing: -0.05em;
  line-height: 0.9;
}

.impact__stats dd {
  margin: 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.88rem;
}

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

.news-card {
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
}

.news-card__image {
  height: 270px;
  display: block;
  overflow: hidden;
  background: var(--blue-100);
}

.news-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.news-card:hover .news-card__image img {
  transform: scale(1.04);
}

.news-card__body {
  padding: 24px;
}

.news-card time,
.report-card time,
.article-hero time {
  display: block;
  margin-bottom: 10px;
  color: var(--blue-700);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.news-card h3 {
  margin-bottom: 13px;
}

.news-card h3 a {
  text-decoration: none;
}

.news-card__body > p {
  color: var(--ink-soft);
  font-size: 0.92rem;
}

.news-card .text-link {
  font-size: 0.83rem;
}

.news-card--compact .news-card__image {
  height: 220px;
}

.project-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.project-card {
  overflow: hidden;
  background: var(--white);
  border: 1px solid rgba(20, 32, 51, 0.09);
  border-radius: var(--radius);
}

.project-card__image {
  height: 230px;
  display: block;
  overflow: hidden;
  background: var(--yellow-soft);
}

.project-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.project-card:hover .project-card__image img {
  transform: scale(1.04);
}

.project-card__body {
  padding: 24px;
}

.project-card h3 {
  margin-bottom: 12px;
}

.project-card h3 a {
  text-decoration: none;
}

.project-card__body > p:not(.eyebrow) {
  color: var(--ink-soft);
  font-size: 0.92rem;
}

.project-card .text-link {
  font-size: 0.83rem;
}

.transparency {
  padding: 72px 0;
  background: var(--yellow);
}

.transparency__inner {
  display: grid;
  grid-template-columns: minmax(0, 5fr) minmax(230px, 1fr);
  align-items: end;
  gap: clamp(44px, 5vw, 84px);
}

.transparency h2 {
  max-width: none;
  margin-bottom: 18px;
  font-size: clamp(2.35rem, 3.25vw, 3.65rem);
}

.transparency p:not(.eyebrow) {
  max-width: 700px;
  margin: 0;
  color: rgba(20, 32, 51, 0.72);
}

.transparency__actions {
  min-width: 230px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-self: end;
  gap: 20px;
}

@media (min-width: 1181px) {
  .transparency h2 {
    white-space: nowrap;
  }
}

.partner-list {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  align-items: center;
  gap: 22px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.partner-list li {
  height: 110px;
  display: grid;
  place-items: center;
  padding: 20px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
}

.partner-list img {
  max-width: 100%;
  max-height: 70px;
  object-fit: contain;
  filter: grayscale(1);
  opacity: 0.75;
  transition:
    filter 0.2s ease,
    opacity 0.2s ease;
}

.partner-list li:hover img {
  filter: none;
  opacity: 1;
}

.final-cta,
.contact-strip {
  padding: 70px 0;
  background: var(--pink);
  color: var(--white);
}

.final-cta__inner,
.contact-strip__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 50px;
}

.final-cta h2,
.contact-strip h2 {
  max-width: 720px;
  margin: 0;
}

.breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding-top: 24px;
  color: var(--ink-soft);
  font-size: 0.78rem;
}

.breadcrumbs a {
  text-decoration: none;
}

.breadcrumbs a:hover {
  color: var(--pink);
}

.page-intro {
  padding: clamp(58px, 8vw, 110px) 0;
  background:
    radial-gradient(circle at 85% 20%, rgba(255, 255, 255, 0.9), transparent 24%),
    var(--blue-100);
  border-bottom: 1px solid rgba(52, 124, 185, 0.12);
}

.page-intro__inner {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: end;
  gap: 60px;
}

.page-intro h1 {
  max-width: 980px;
  margin-bottom: 24px;
}

.page-lead {
  max-width: 760px;
  margin-bottom: 0;
  color: var(--ink-soft);
  font-size: clamp(1.06rem, 1.8vw, 1.28rem);
}

.page-intro .button-row {
  margin-top: 30px;
}

.page-intro__mark {
  width: 180px;
  height: 135px;
  position: relative;
}

.page-intro__mark span {
  position: absolute;
  width: 110px;
  height: 22px;
  border-radius: 99px 10px 99px 10px;
  transform: rotate(-34deg);
}

.page-intro__mark span:nth-child(1) {
  top: 12px;
  left: 10px;
  background: var(--blue-500);
}

.page-intro__mark span:nth-child(2) {
  top: 52px;
  right: 3px;
  background: var(--yellow);
  transform: rotate(30deg);
}

.page-intro__mark span:nth-child(3) {
  bottom: 0;
  left: 18px;
  background: var(--pink);
  transform: rotate(42deg);
}

.archive-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.archive-grid--needs {
  grid-template-columns: repeat(3, 1fr);
}

.project-grid--archive {
  grid-template-columns: repeat(3, 1fr);
}

.filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 36px;
}

.filter-button {
  min-height: 42px;
  padding: 8px 18px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--white);
  color: var(--ink-soft);
  font-weight: 700;
  cursor: pointer;
}

.filter-button:hover,
.filter-button.is-active {
  border-color: var(--blue-900);
  background: var(--blue-900);
  color: var(--white);
}

.report-list {
  display: flex;
  flex-direction: column;
  border-top: 1px solid var(--line);
}

.report-card {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 22px;
  padding: 22px 8px;
  border-bottom: 1px solid var(--line);
}

.report-card[hidden] {
  display: none;
}

.report-card__icon {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  background: var(--pink-soft);
  border-radius: 12px;
  color: var(--pink-dark);
  font-size: 0.68rem;
  font-weight: 700;
}

.report-card time {
  margin-bottom: 3px;
}

.report-card h3 {
  margin: 0;
  font-size: 1.06rem;
}

.report-card h3 a {
  text-decoration: none;
}

.report-card__arrow {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  text-decoration: none;
}

.report-card:hover .report-card__arrow {
  border-color: var(--pink);
  background: var(--pink);
  color: var(--white);
}

.empty-state {
  margin-top: 30px;
  padding: 24px;
  background: var(--blue-100);
  border-radius: var(--radius-sm);
}

.story-grid {
  display: grid;
  grid-template-columns: 0.65fr 1.35fr;
  align-items: start;
  gap: clamp(50px, 10vw, 140px);
}

.story-aside {
  position: sticky;
  top: 135px;
  padding: 36px;
  background: var(--yellow);
  border-radius: var(--radius);
}

.story-year {
  display: block;
  margin-bottom: 20px;
  font-size: clamp(4rem, 8vw, 7rem);
  font-weight: 700;
  letter-spacing: -0.07em;
  line-height: 0.8;
}

.story-aside p {
  margin: 0;
  color: rgba(20, 32, 51, 0.72);
}

.prose {
  width: 100%;
  max-width: 800px;
  min-width: 0;
  color: var(--ink-soft);
}

.prose--large {
  font-size: 1.08rem;
}

.prose h2,
.prose h3,
.prose h4 {
  margin-top: 2.1em;
  margin-bottom: 0.65em;
  color: var(--ink);
}

.prose h2:first-child,
.prose h3:first-child {
  margin-top: 0;
}

.prose p,
.prose ul,
.prose ol,
.prose blockquote,
.prose table,
.prose figure {
  margin-bottom: 1.35em;
}

.prose a {
  color: var(--blue-700);
  font-weight: 600;
}

.prose ul,
.prose ol {
  padding-left: 1.25em;
}

.prose li {
  margin-bottom: 0.55em;
}

.prose blockquote {
  padding: 30px;
  margin-inline: 0;
  background: var(--pink-soft);
  border-left: 5px solid var(--pink);
  border-radius: 0 var(--radius) var(--radius) 0;
  color: var(--ink);
  font-size: clamp(1.25rem, 2vw, 1.7rem);
  font-weight: 600;
  line-height: 1.35;
}

.prose img {
  width: auto;
  max-height: 780px;
  border-radius: var(--radius-sm);
  object-fit: contain;
}

.prose figure {
  max-width: 100% !important;
}

.prose figcaption {
  margin-top: 8px;
  color: var(--ink-soft);
  font-size: 0.82rem;
}

.prose iframe {
  width: 100%;
  max-width: 100%;
  border: 0;
}

.prose table {
  width: 100%;
  display: block;
  overflow-x: auto;
  border-collapse: collapse;
  font-size: 0.9rem;
}

.prose th,
.prose td {
  padding: 12px;
  border: 1px solid var(--line);
  text-align: left;
}

.prose .wp-block-columns {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.wide-lead {
  max-width: 800px;
  color: var(--ink-soft);
  font-size: 1.15rem;
}

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

.team-card {
  display: grid;
  grid-template-columns: 220px 1fr;
  align-items: center;
  gap: 28px;
  padding: 18px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
}

.team-card__image {
  height: 260px;
  overflow: hidden;
  background: var(--blue-100);
  border-radius: calc(var(--radius) - 7px);
}

.team-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.team-card h2 {
  margin-bottom: 10px;
  font-size: 1.8rem;
}

.team-card p {
  margin: 0;
  color: var(--ink-soft);
}

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

.contact-card {
  position: relative;
  min-height: 300px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: end;
  padding: 36px;
  background: var(--blue-100);
  border-radius: var(--radius);
  text-decoration: none;
  transition: transform 0.25s ease;
}

.contact-card:hover {
  transform: translateY(-5px);
}

.contact-card--pink {
  background: var(--pink-soft);
}

.contact-card__icon {
  position: absolute;
  top: 32px;
  left: 32px;
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  background: var(--white);
  border-radius: 50%;
  font-size: 1.5rem;
}

.contact-card h2 {
  margin-bottom: 8px;
  font-size: clamp(1.5rem, 3vw, 2.5rem);
}

.contact-card p:not(.eyebrow) {
  margin: 0;
  color: var(--ink-soft);
}

.contact-card > strong {
  position: absolute;
  right: 34px;
  bottom: 34px;
  font-size: 1.6rem;
}

.social-contact {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 70px;
  padding-top: 80px;
}

.social-contact h2 {
  margin-bottom: 18px;
}

.social-contact p:not(.eyebrow) {
  color: var(--ink-soft);
}

.social-contact__links {
  display: flex;
  flex-direction: column;
  border-top: 1px solid var(--line);
}

.social-contact__links a {
  display: grid;
  grid-template-columns: 50px 1fr;
  align-items: center;
  gap: 20px;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
  text-decoration: none;
}

.social-contact__links a span {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  background: var(--blue-100);
  border-radius: 50%;
  color: var(--blue-900);
  font-size: 0.72rem;
}

.social-contact__links a:hover strong {
  color: var(--pink);
}

.help-layout {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  align-items: stretch;
  gap: 24px;
}

.prose-card {
  padding: clamp(28px, 5vw, 52px);
  background: var(--warm);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.prose-card--blue {
  background: var(--blue-100);
}

.prose-card h2 {
  margin-bottom: 24px;
}

.prose-card > p:not(.eyebrow) {
  color: var(--ink-soft);
}

.details-list {
  margin: 28px 0 0;
}

.details-list div {
  display: grid;
  grid-template-columns: 135px 1fr;
  gap: 18px;
  padding: 13px 0;
  border-bottom: 1px solid var(--line);
}

.details-list dt {
  color: var(--ink-soft);
  font-size: 0.82rem;
}

.details-list dd {
  margin: 0;
  font-weight: 600;
}

.legal-links {
  padding-top: 76px;
}

.callout {
  padding: 22px;
  margin-top: 28px;
  background: var(--white);
  border-left: 4px solid var(--pink);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
}

.callout p {
  margin: 8px 0 0;
  color: var(--ink-soft);
}

.check-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 34px;
}

.check-list li::before {
  content: "✓";
  position: absolute;
  top: 0;
  left: 0;
  width: 23px;
  height: 23px;
  display: grid;
  place-items: center;
  background: var(--pink);
  border-radius: 50%;
  color: var(--white);
  font-size: 0.7rem;
  font-weight: 700;
}

.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.steps li {
  min-height: 270px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 30px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.steps li > span {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  margin-bottom: 50px;
  background: var(--yellow);
  border-radius: 50%;
  font-weight: 700;
}

.steps h3 {
  margin-bottom: 12px;
}

.steps p {
  margin: 0;
  color: var(--ink-soft);
}

.qr-grid,
.bank-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.qr-card {
  display: grid;
  grid-template-columns: 220px 1fr;
  align-items: center;
  gap: 30px;
  padding: 28px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
}

.qr-card__image {
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  padding: 14px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
}

.qr-card__image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.qr-card h3 {
  margin-bottom: 12px;
}

.qr-card p:not(.eyebrow) {
  margin: 0;
  color: var(--ink-soft);
}

.bank-card {
  padding: clamp(28px, 4vw, 42px);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.bank-card > div:first-child {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 28px;
}

.bank-card h3 {
  margin: 0;
}

.bank-card__mark {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  background: #2fa75f;
  border-radius: 12px;
  color: var(--white);
  font-weight: 700;
}

.bank-card__mark--blue {
  background: #2c64b3;
}

.bank-card dl {
  margin: 0 0 28px;
}

.bank-card dl div {
  display: grid;
  grid-template-columns: 145px 1fr;
  gap: 14px;
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
}

.bank-card dt {
  color: var(--ink-soft);
  font-size: 0.82rem;
}

.bank-card dd {
  margin: 0;
  overflow-wrap: anywhere;
  font-weight: 600;
}

.bank-card > .callout + .button {
  margin-top: 28px;
}

.donation-note {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 30px;
  padding: 24px;
  margin-top: 24px;
  background: var(--yellow-soft);
  border-radius: var(--radius-sm);
}

.donation-note p {
  margin: 0;
  color: var(--ink-soft);
}

.split-cta {
  display: grid;
  grid-template-columns: minmax(0, 1fr) max-content;
  align-items: center;
  column-gap: clamp(56px, 5vw, 80px);
  row-gap: 40px;
}

.split-cta h2 {
  max-width: 1050px;
}

.split-cta p:not(.eyebrow) {
  max-width: 880px;
  color: var(--ink-soft);
}

.stack-links {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-self: end;
  gap: 20px;
}

.article-page {
  padding-top: 80px;
}

.article-hero {
  display: grid;
  grid-template-columns: 1fr minmax(340px, 0.75fr);
  align-items: center;
  gap: clamp(50px, 8vw, 110px);
  padding-bottom: 80px;
}

.article-hero__copy h1 {
  margin-bottom: 24px;
  font-size: clamp(2.6rem, 5vw, 5rem);
}

.article-hero__image {
  height: min(560px, 60vw);
  overflow: hidden;
  background: var(--blue-100);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.article-hero__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.article-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 300px;
  align-items: start;
  gap: clamp(50px, 9vw, 110px);
  padding-bottom: clamp(80px, 9vw, 130px);
}

.article-aside {
  position: sticky;
  top: 135px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.aside-card {
  padding: 26px;
  background: var(--blue-100);
  border-radius: var(--radius);
}

.aside-card--accent {
  background: var(--pink-soft);
}

.aside-card h2 {
  margin-bottom: 12px;
  font-size: 1.65rem;
}

.aside-card p:not(.eyebrow) {
  color: var(--ink-soft);
  font-size: 0.9rem;
}

.back-link {
  display: inline-block;
  padding: 10px 0;
  color: var(--ink-soft);
  font-size: 0.86rem;
  font-weight: 600;
  text-decoration: none;
}

.need-detail {
  padding-top: 64px;
}

.need-detail__hero {
  display: grid;
  grid-template-columns: minmax(320px, 0.8fr) 1.2fr;
  align-items: center;
  gap: clamp(45px, 8vw, 110px);
  padding-bottom: 90px;
}

.need-detail__hero figure {
  height: min(610px, 70vw);
  overflow: hidden;
  background: var(--blue-100);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.need-detail__hero figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.need-detail__summary h1 {
  margin-bottom: 22px;
}

.need-detail__purpose {
  max-width: 620px;
  color: var(--ink-soft);
  font-size: 1.2rem;
}

.progress--large {
  margin: 34px 0 28px;
}

.progress--large .progress__meta {
  font-size: 1rem;
}

.progress--large .progress__track {
  height: 12px;
}

.success-note {
  padding: 16px 20px;
  background: var(--blue-100);
  border-radius: var(--radius-sm);
  color: var(--blue-900);
  font-weight: 700;
}

.document-preview {
  padding: 50px;
  background: var(--blue-100);
  border-radius: var(--radius);
  text-align: center;
}

.document-preview > span {
  width: 80px;
  height: 80px;
  display: grid;
  place-items: center;
  margin: 0 auto 28px;
  background: var(--white);
  border-radius: 20px;
  color: var(--pink-dark);
  font-weight: 700;
}

.document-preview h2 {
  margin-top: 0;
}

.not-found {
  min-height: 70vh;
  display: grid;
  place-items: center;
  padding: 90px 0;
  background: var(--blue-100);
}

.not-found__inner {
  text-align: center;
}

.not-found__code {
  margin: 0;
  color: var(--pink);
  font-size: clamp(7rem, 20vw, 15rem);
  font-weight: 700;
  letter-spacing: -0.09em;
  line-height: 0.75;
}

.not-found h1 {
  margin: 28px 0 18px;
}

.not-found__inner > p:not(.eyebrow, .not-found__code) {
  max-width: 620px;
  margin-inline: auto;
  color: var(--ink-soft);
}

.not-found .button-row {
  justify-content: center;
  margin-top: 28px;
}

.search-dialog {
  position: fixed;
  z-index: 500;
  inset: 0;
}

.search-dialog__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(15, 38, 61, 0.72);
  backdrop-filter: blur(5px);
}

.search-dialog__panel {
  position: relative;
  width: min(calc(100% - 32px), 760px);
  max-height: min(780px, calc(100vh - 50px));
  margin: 25px auto;
  padding: clamp(28px, 5vw, 50px);
  overflow-y: auto;
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.search-dialog__panel h2 {
  margin-bottom: 26px;
}

.dialog-close {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 42px;
  height: 42px;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: var(--white);
  font-size: 1.5rem;
  cursor: pointer;
}

.search-field input {
  width: 100%;
  height: 58px;
  padding: 12px 18px;
  border: 2px solid var(--line);
  border-radius: 14px;
  background: var(--warm);
}

.search-field input:focus {
  border-color: var(--blue-700);
  outline: none;
}

.search-results {
  display: flex;
  flex-direction: column;
  margin-top: 24px;
}

.search-result {
  display: grid;
  grid-template-columns: 90px 1fr auto;
  align-items: center;
  gap: 16px;
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
  text-decoration: none;
}

.search-result__type {
  color: var(--blue-700);
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
}

.search-result strong {
  display: block;
}

.search-result small {
  color: var(--ink-soft);
}

.search-result__arrow {
  font-size: 1.25rem;
}

.search-hint {
  color: var(--ink-soft);
}

.site-footer {
  padding-top: 74px;
  background: #cde5f9;
}

.footer-main {
  display: grid;
  grid-template-columns: 1.5fr repeat(3, 0.75fr);
  gap: 50px;
  padding-bottom: 56px;
}

.brand--footer {
  margin-bottom: 24px;
}

.footer-brand > p {
  max-width: 420px;
  color: var(--ink-soft);
  font-size: 0.88rem;
}

.footer-title {
  margin-bottom: 18px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

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

.footer-column a {
  color: var(--ink-soft);
  font-size: 0.9rem;
  text-decoration: none;
}

.footer-column a:hover {
  color: var(--pink-dark);
}

.footer-contacts > a {
  color: var(--ink);
  font-weight: 700;
}

.social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 10px;
}

.social-links a {
  padding: 6px 10px;
  background: rgba(255, 255, 255, 0.58);
  border-radius: 999px;
  color: var(--blue-900);
  font-size: 0.72rem;
  font-weight: 700;
}

.footer-bottom {
  min-height: 74px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  border-top: 1px solid rgba(24, 61, 98, 0.15);
  color: var(--ink-soft);
  font-size: 0.78rem;
}

.footer-bottom p {
  margin: 0;
}

.footer-bottom div {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.footer-bottom a {
  text-decoration: none;
}

/* Premium editorial visual system */
body {
  background:
    radial-gradient(circle at 100% 0, rgba(97, 169, 235, 0.14), transparent 28rem),
    radial-gradient(circle at 0 100%, rgba(195, 155, 190, 0.09), transparent 26rem),
    var(--paper);
  letter-spacing: -0.008em;
}

h1,
h2 {
  font-weight: 600;
}

.eyebrow {
  margin-bottom: 14px;
  color: var(--pink-dark);
  font-size: 0.69rem;
  font-weight: 700;
  letter-spacing: 0.22em;
}

.eyebrow--light {
  color: var(--yellow);
}

.button {
  min-height: 50px;
  padding: 13px 23px;
  border-radius: 2px;
  font-size: 0.77rem;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  transition:
    transform 0.35s var(--ease),
    border-color 0.35s var(--ease),
    background 0.35s var(--ease),
    color 0.35s var(--ease);
}

.button:hover,
.button:focus-visible {
  transform: translateY(-1px);
}

.button--small {
  min-height: 44px;
  padding: 10px 18px;
  font-size: 0.71rem;
}

.button--pink {
  background: var(--pink-dark);
  box-shadow: none;
}

.button--pink:hover,
.button--pink:focus-visible {
  background: var(--pink);
  color: #35121c;
}

.button--yellow {
  background: var(--yellow);
  box-shadow: none;
}

.button--yellow:hover,
.button--yellow:focus-visible {
  background: var(--white);
}

.button--dark {
  background: var(--ink);
}

.button--soft {
  background: var(--warm);
  color: var(--ink);
}

.button--outline {
  border-color: var(--ink);
}

.text-link {
  gap: 10px;
  color: var(--ink);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-decoration: underline;
  text-decoration-color: transparent;
  text-transform: uppercase;
  transition: text-decoration-color 0.25s ease;
}

.text-link:hover,
.text-link:focus-visible {
  text-decoration-color: currentColor;
}

.text-link span {
  transition: transform 0.35s var(--ease);
}

.site-header {
  position: sticky;
  top: 0;
  background: rgba(247, 246, 242, 0.94);
  border-bottom: 1px solid var(--line);
  box-shadow: none;
  backdrop-filter: blur(18px);
}

.site-header.is-stuck {
  position: sticky;
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.06);
}

.header-bar {
  background: var(--blue-900);
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.71rem;
  font-weight: 500;
  letter-spacing: 0.035em;
}

.header-bar__inner {
  min-height: 38px;
}

.header-bar a {
  color: var(--white);
  text-decoration: underline;
  text-decoration-color: rgba(255, 255, 255, 0.24);
}

.header-main {
  min-height: 86px;
}

.brand {
  min-width: 260px;
}

.brand img {
  filter: none;
}

.brand__copy strong {
  font-size: 1.34rem;
  font-weight: 700;
  letter-spacing: 0.16em;
}

.brand__copy small {
  color: var(--ink-soft);
  letter-spacing: 0.025em;
}

.desktop-nav {
  gap: clamp(14px, 1.65vw, 25px);
}

.desktop-nav a {
  padding: 31px 0;
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 0.075em;
  text-transform: uppercase;
}

.desktop-nav a::after {
  bottom: 23px;
  height: 1px;
  background: var(--pink);
}

.icon-button,
.menu-toggle {
  width: 44px;
  height: 44px;
  border-radius: 2px;
}

.icon-button {
  background: transparent;
}

.menu-panel {
  padding: 38px 0 46px;
  background: rgba(255, 255, 255, 0.985);
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.12);
}

.menu-panel__grid {
  gap: 40px;
}

.menu-group {
  gap: 10px;
}

.menu-group > a:not(.button) {
  color: var(--ink-soft);
  font-weight: 500;
}

.menu-group > a:hover,
.menu-group > a:focus-visible {
  color: var(--ink);
  text-decoration: underline;
}

.menu-group--accent {
  padding: 28px;
  background: var(--warm);
  border: 1px solid var(--line);
  border-radius: 2px;
}

.section {
  padding: clamp(88px, 9.5vw, 144px) 0;
}

.section--tinted {
  background: var(--warm);
}

.section--needs {
  background: var(--paper);
}

.section-heading {
  margin-bottom: 52px;
}

.section-heading h2 {
  max-width: 850px;
}

.section-heading__copy {
  color: var(--ink-soft);
}

.home-hero {
  position: relative;
  isolation: isolate;
  min-height: min(820px, calc(100svh - 124px));
  overflow: hidden;
  background: var(--blue-900);
}

.home-hero::before,
.home-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.home-hero::before {
  z-index: -2;
  background: url("../images/core/0e37cc922-heroblockbg.png") center / cover no-repeat;
  filter: saturate(0.8) contrast(1.05) brightness(0.9);
  transform: scale(1.015);
}

.home-hero::after {
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(24, 61, 98, 0.96) 0%, rgba(24, 61, 98, 0.76) 43%, rgba(24, 61, 98, 0.12) 82%),
    linear-gradient(0deg, rgba(169, 47, 79, 0.24), transparent 42%);
}

.home-hero__inner {
  min-height: inherit;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 220px;
  align-items: end;
  gap: clamp(48px, 8vw, 120px);
  padding-block: clamp(80px, 10vw, 132px) 68px;
}

.home-hero__card {
  width: min(850px, 100%);
  padding: 0;
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  backdrop-filter: none;
}

.home-hero__card h1 {
  max-width: 850px;
  margin-bottom: 30px;
  font-size: clamp(4rem, 6.8vw, 7.2rem);
  font-weight: 600;
  letter-spacing: -0.07em;
  line-height: 0.93;
}

.home-hero__card > p:not(.eyebrow) {
  max-width: 670px;
  margin-bottom: 38px;
  color: rgba(255, 255, 255, 0.74);
  font-size: clamp(1.03rem, 1.45vw, 1.22rem);
  line-height: 1.55;
}

.home-hero__card > * {
  animation: premium-reveal 0.8s var(--ease) both;
}

.home-hero__card > h1 {
  animation-delay: 0.08s;
}

.home-hero__card > p:not(.eyebrow) {
  animation-delay: 0.16s;
}

.home-hero__card > .button-row {
  animation-delay: 0.24s;
}

@keyframes premium-reveal {
  from {
    opacity: 0;
    transform: translateY(18px);
  }

  to {
    opacity: 1;
    transform: none;
  }
}

.hero-note {
  align-self: end;
  width: 220px;
  padding: 24px;
  background: rgba(24, 61, 98, 0.7);
  border: 1px solid rgba(246, 221, 88, 0.55);
  border-radius: 2px;
  color: var(--white);
  box-shadow: none;
  backdrop-filter: blur(12px);
  transform: none;
  transition:
    background 0.35s var(--ease),
    transform 0.35s var(--ease);
}

.hero-note:hover,
.hero-note:focus-visible {
  background: rgba(24, 61, 98, 0.9);
  transform: translateY(-3px);
}

.hero-note__number,
.impact__stats dt,
.story-year,
.not-found__code {
  font-family: var(--font-display);
  font-variant-numeric: lining-nums;
}

.hero-note__number {
  color: var(--yellow);
  font-size: 4rem;
  letter-spacing: -0.02em;
}

.hero-note > span:not(.hero-note__number) {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.71rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.signature-strip {
  background: var(--blue-900);
  color: var(--white);
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.signature-strip__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.signature-strip__item {
  min-height: 138px;
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 20px;
  padding: 30px 36px;
  margin: 0;
  border-left: 1px solid rgba(255, 255, 255, 0.14);
}

.signature-strip__item:last-child {
  border-right: 1px solid rgba(255, 255, 255, 0.14);
}

.signature-strip__item strong {
  color: var(--blue-500);
  font-family: var(--font-display);
  font-size: clamp(2rem, 3vw, 3.25rem);
  letter-spacing: -0.02em;
  line-height: 0.9;
}

.signature-strip__item:nth-child(2) strong {
  color: var(--lavender);
}

.signature-strip__item:nth-child(3) strong {
  color: var(--yellow);
}

.signature-strip__item span {
  max-width: 230px;
  color: rgba(255, 255, 255, 0.66);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.055em;
  line-height: 1.45;
  text-transform: uppercase;
}

.horizontal-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
}

.need-card {
  border-radius: 3px;
  box-shadow: none;
  transition:
    transform 0.4s var(--ease),
    border-color 0.4s var(--ease),
    box-shadow 0.4s var(--ease);
}

.need-card:hover,
.need-card:focus-within {
  border-color: rgba(12, 13, 14, 0.4);
  box-shadow: 0 18px 46px rgba(0, 0, 0, 0.08);
  transform: translateY(-3px);
}

.need-card__image {
  height: 280px;
  background: var(--warm);
}

.need-card__image img,
.news-card__image img,
.project-card__image img {
  filter: saturate(0.78) contrast(1.02);
  transition:
    filter 0.65s var(--ease),
    transform 0.65s var(--ease);
}

.need-card:hover .need-card__image img,
.need-card:focus-within .need-card__image img,
.news-card:hover .news-card__image img,
.news-card:focus-within .news-card__image img,
.project-card:hover .project-card__image img,
.project-card:focus-within .project-card__image img {
  filter: saturate(1) contrast(1);
  transform: scale(1.025);
}

.project-card__image img,
.project-card:hover .project-card__image img,
.project-card:focus-within .project-card__image img {
  filter: none;
}

.badge {
  top: 16px;
  left: 16px;
  padding: 7px 10px;
  border-radius: 1px;
  font-size: 0.65rem;
  letter-spacing: 0.08em;
}

.badge--urgent {
  color: #35121c;
}

.need-card__body {
  padding: 24px;
}

.need-card__body h3 {
  font-weight: 600;
}

.progress__track {
  height: 4px;
  background: var(--blue-100);
}

.progress__track span {
  background: var(--pink);
}

.regular-giving {
  padding: 46px 0;
  background: var(--blue-900);
  border-block-color: rgba(255, 255, 255, 0.12);
  color: var(--white);
}

.regular-giving h2 strong {
  color: var(--lavender);
}

.regular-giving p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.62);
}

.regular-giving .eyebrow {
  color: var(--yellow);
}

.regular-giving .button--dark {
  background: var(--yellow);
  color: var(--blue-900);
}

.regular-giving .button--dark:hover,
.regular-giving .button--dark:focus-visible {
  background: var(--white);
}

.program-grid {
  gap: 1px;
  overflow: hidden;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: 3px;
}

.program-card,
.program-card:nth-child(2),
.program-card:nth-child(3),
.program-card:nth-child(5),
.program-card:nth-child(6) {
  min-height: 310px;
  padding: 34px;
  background: var(--white);
  border: 0;
  border-radius: 0;
  transform: none;
}

.program-card:nth-child(3n + 1) {
  box-shadow: inset 0 3px 0 var(--pink);
}

.program-card:nth-child(3n + 2) {
  box-shadow: inset 0 3px 0 var(--blue-500);
}

.program-card:nth-child(3n) {
  box-shadow: inset 0 3px 0 var(--lavender);
}

.program-card:hover,
.program-card:focus-visible {
  background: var(--blue-900);
  color: var(--white);
  transform: none;
}

.program-card__number {
  color: var(--pink-dark);
  font-family: var(--font-display);
  font-size: 1.35rem;
  letter-spacing: 0.02em;
}

.program-card:hover .program-card__number,
.program-card:focus-visible .program-card__number {
  color: var(--yellow);
}

.program-card:hover p,
.program-card:focus-visible p {
  color: rgba(255, 255, 255, 0.68);
}

.impact {
  background: var(--blue-900);
}

.impact__story > p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.66);
}

.impact__stats {
  background: rgba(255, 255, 255, 0.18);
  border-color: rgba(255, 255, 255, 0.18);
}

.impact__stats div {
  min-height: 170px;
  background: var(--blue-900);
}

.impact__stats dt {
  color: var(--yellow);
  font-size: clamp(3rem, 5vw, 5.25rem);
  letter-spacing: -0.02em;
}

.news-grid,
.project-grid {
  gap: clamp(26px, 3vw, 42px);
}

.news-card,
.project-card {
  overflow: visible;
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
}

.news-card__image,
.project-card__image {
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 3;
  border-radius: 2px;
  background: var(--warm);
}

.news-card--compact .news-card__image {
  height: auto;
  aspect-ratio: 16 / 10;
}

.news-card__body,
.project-card__body {
  padding: 24px 0 0;
}

.news-card time,
.report-card time,
.article-hero time {
  color: var(--pink-dark);
  letter-spacing: 0.09em;
}

.news-card h3,
.project-card h3 {
  font-weight: 600;
}

.transparency {
  padding: 88px 0;
  background: var(--yellow-soft);
  border-block: 1px solid rgba(24, 61, 98, 0.14);
}

.transparency p:not(.eyebrow) {
  color: var(--ink-soft);
}

.partner-list {
  gap: 0;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.partner-list li {
  height: 126px;
  background: transparent;
  border: 0;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  border-radius: 0;
}

.partner-list img {
  opacity: 0.58;
  transition:
    filter 0.4s var(--ease),
    opacity 0.4s var(--ease);
}

.partner-list li:hover img,
.partner-list li:focus-within img {
  opacity: 0.95;
}

.final-cta,
.contact-strip {
  padding: 88px 0;
  background:
    radial-gradient(circle at 85% 15%, rgba(237, 95, 121, 0.3), transparent 24rem),
    radial-gradient(circle at 72% 100%, rgba(195, 155, 190, 0.18), transparent 20rem),
    var(--blue-900);
}

.breadcrumbs {
  min-height: 60px;
  align-items: center;
  gap: 0;
  padding-block: 0;
  color: var(--ink-soft);
  line-height: 1.2;
}

.breadcrumbs > * {
  min-height: 24px;
  display: inline-flex;
  align-items: center;
}

.breadcrumbs > span[aria-hidden="true"] {
  margin-inline: 12px;
  color: var(--blue-700);
}

.breadcrumbs a:hover,
.breadcrumbs a:focus-visible {
  color: var(--ink);
  text-decoration: underline;
}

.page-intro {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: clamp(72px, 8vw, 120px) 0;
  background: var(--blue-900);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--white);
}

.page-intro::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 0;
  background:
    radial-gradient(circle at 86% 12%, rgba(237, 95, 121, 0.3), transparent 24rem),
    radial-gradient(circle at 72% 100%, rgba(195, 155, 190, 0.2), transparent 22rem),
    linear-gradient(120deg, transparent 42%, rgba(97, 169, 235, 0.12));
}

.page-lead {
  color: rgba(255, 255, 255, 0.65);
}

.page-intro .eyebrow {
  color: var(--yellow);
}

.page-intro .button--outline {
  border-color: rgba(255, 255, 255, 0.62);
  color: var(--white);
}

.page-intro .button--outline:hover,
.page-intro .button--outline:focus-visible {
  background: var(--white);
  color: var(--ink);
}

.page-intro__mark span {
  height: 13px;
  border-radius: 99px 2px 99px 2px;
  opacity: 0.78;
}

.page-intro__mark span:nth-child(1) {
  background: var(--blue-500);
}

.page-intro__mark span:nth-child(2) {
  background: var(--lavender);
}

.page-intro__mark span:nth-child(3) {
  background: var(--pink);
}

.filter-bar {
  gap: 6px;
  margin-bottom: 44px;
}

.filter-button {
  min-height: 44px;
  padding: 9px 17px;
  border-radius: 2px;
  background: transparent;
  color: var(--ink-soft);
  font-size: 0.76rem;
  letter-spacing: 0.055em;
  text-transform: uppercase;
}

.filter-button:hover,
.filter-button:focus-visible,
.filter-button.is-active,
.filter-button[aria-pressed="true"] {
  border-color: var(--blue-900);
  background: var(--blue-900);
  color: var(--white);
}

.report-card {
  gap: 24px;
  padding: 26px 0;
}

.report-card__icon {
  border-radius: 2px;
}

.report-card__arrow {
  border-radius: 2px;
}

.report-card:hover .report-card__arrow,
.report-card:focus-within .report-card__arrow {
  border-color: var(--ink);
  background: var(--ink);
}

.empty-state,
.success-note {
  background: var(--warm);
  border: 1px solid var(--line);
  border-radius: 2px;
  color: var(--ink);
}

.story-aside {
  top: 145px;
  background: var(--lavender-soft);
  border: 1px solid var(--line);
  border-radius: 3px;
}

.story-year {
  letter-spacing: -0.02em;
}

.prose {
  max-width: 820px;
  color: var(--ink-soft);
}

.prose h2,
.prose h3,
.prose h4,
.prose h5,
.prose h6 {
  color: var(--ink);
  font-family: var(--font);
  font-weight: 600;
}

.prose a {
  color: var(--pink-dark);
  text-decoration-thickness: 1px;
}

.prose blockquote {
  padding: 34px;
  background: var(--warm);
  border-left: 3px solid var(--pink);
  border-radius: 0;
  font-weight: 500;
}

.prose img:not(.emoji) {
  border-radius: 2px;
}

.prose img.emoji {
  width: 1em;
  height: 1em;
  display: inline;
  margin: 0 0.08em;
  vertical-align: -0.1em;
}

.video-embed {
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  margin: 34px 0;
  background: var(--ink);
  border: 1px solid var(--line);
  border-radius: 2px;
}

.video-embed iframe {
  width: 100%;
  height: 100%;
  display: block;
}

.prose [style*="font-family"] {
  font-family: var(--font) !important;
}

.prose [style*="color:"] {
  color: inherit !important;
}

.team-grid,
.contact-grid,
.help-layout,
.qr-grid,
.bank-grid {
  gap: 20px;
}

.team-card,
.qr-card {
  border-radius: 3px;
  box-shadow: none;
}

.team-card__image {
  border-radius: 2px;
}

.contact-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 3px;
  transition:
    background 0.35s var(--ease),
    color 0.35s var(--ease),
    transform 0.35s var(--ease);
}

.contact-card--pink {
  background: var(--pink-soft);
}

.contact-card:hover,
.contact-card:focus-visible {
  background: var(--ink);
  color: var(--white);
  transform: translateY(-3px);
}

.contact-card:hover p,
.contact-card:focus-visible p {
  color: rgba(255, 255, 255, 0.65);
}

.contact-card__icon,
.social-contact__links a span {
  border: 1px solid var(--line);
  border-radius: 2px;
}

.prose-card,
.aside-card,
.document-preview {
  background: var(--warm);
  border: 1px solid var(--line);
  border-radius: 3px;
}

.prose-card--blue,
.aside-card--accent {
  background: var(--pink-soft);
}

.callout {
  border-radius: 0;
}

.check-list li::before,
.steps li > span {
  border-radius: 2px;
}

.steps {
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}

.steps li {
  border: 0;
  border-radius: 0;
}

.steps li > span {
  background: var(--lavender-soft);
}

.qr-card__image,
.bank-card,
.donation-note {
  border-radius: 3px;
}

.bank-card__mark {
  background: var(--pink-dark);
  border-radius: 2px;
}

.bank-card__mark--blue {
  background: var(--blue-700);
}

.donation-note {
  background: var(--yellow-soft);
}

.article-page {
  padding-top: 96px;
}

.article-hero {
  align-items: end;
  padding-bottom: 96px;
}

.article-hero__copy h1 {
  font-size: clamp(3rem, 5.7vw, 6rem);
}

.article-hero__image,
.need-detail__hero figure {
  background: var(--warm);
  border-radius: 3px;
  box-shadow: var(--shadow-soft);
}

.article-hero__image img,
.need-detail__hero figure img {
  filter: saturate(0.84) contrast(1.02);
}

.news-card__image img[src$="92a4c6bf5-VMESTE-logotip-osn-768x260.jpg"],
.news-card:hover .news-card__image img[src$="92a4c6bf5-VMESTE-logotip-osn-768x260.jpg"],
.news-card:focus-within .news-card__image img[src$="92a4c6bf5-VMESTE-logotip-osn-768x260.jpg"],
.article-hero__image img[src$="92a4c6bf5-VMESTE-logotip-osn-768x260.jpg"] {
  filter: none;
  transform: none;
}

.article-layout {
  padding-bottom: clamp(96px, 10vw, 148px);
}

.article-aside {
  top: 145px;
}

.aside-card {
  padding: 28px;
}

.need-detail {
  padding-top: 88px;
}

.document-preview > span {
  border: 1px solid var(--line);
  border-radius: 2px;
}

.not-found {
  background: var(--warm);
}

.not-found__code {
  color: var(--pink-dark);
  letter-spacing: -0.02em;
}

.search-dialog__backdrop {
  background: rgba(6, 7, 8, 0.82);
  backdrop-filter: blur(10px);
}

.search-dialog__panel {
  max-height: min(780px, calc(100dvh - 50px));
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 3px;
}

.dialog-close {
  width: 44px;
  height: 44px;
  border-radius: 2px;
}

.search-field input {
  border: 1px solid var(--line);
  border-radius: 2px;
  background: var(--paper);
}

.search-field input:focus {
  border-color: var(--ink);
  outline: 3px solid var(--pink-dark);
  outline-offset: 3px;
}

.search-result__type {
  color: var(--pink-dark);
  letter-spacing: 0.08em;
}

.site-footer {
  padding-top: 88px;
  background: var(--blue-900);
  color: var(--white);
}

.brand--footer img {
  filter: none;
}

.brand--footer .brand__copy small,
.footer-brand > p,
.footer-column a,
.footer-bottom {
  color: rgba(255, 255, 255, 0.56);
}

.footer-title,
.footer-contacts > a {
  color: var(--white);
}

.footer-column a:hover,
.footer-column a:focus-visible {
  color: var(--white);
  text-decoration: underline;
}

.social-links a {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 2px;
  color: rgba(255, 255, 255, 0.75);
}

.footer-bottom {
  border-top-color: rgba(255, 255, 255, 0.16);
}

@media (max-width: 1180px) {
  .desktop-nav {
    display: none;
  }

  .header-main {
    justify-content: space-between;
  }

  .menu-toggle {
    display: flex;
  }

  .horizontal-grid {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: thin;
    padding: 4px 2px 24px;
    margin-right: calc((100vw - min(100vw - 48px, var(--container))) / -2);
  }

  .need-card {
    flex: 0 0 280px;
    scroll-snap-align: start;
  }

  .home-hero__card {
    width: min(720px, 77%);
  }

  .footer-main {
    grid-template-columns: 1.4fr repeat(3, 0.8fr);
    gap: 30px;
  }

  .team-card {
    grid-template-columns: 170px 1fr;
  }
}

@media (max-width: 960px) {
  .menu-panel {
    position: fixed;
    top: 124px;
    bottom: 0;
    overflow-y: auto;
  }

  .site-header.is-stuck .menu-panel {
    top: 88px;
  }

  .menu-panel__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .home-hero__inner {
    align-items: end;
  }

  .home-hero__card {
    width: 100%;
  }

  .hero-note {
    display: none;
  }

  .program-grid,
  .news-grid,
  .project-grid,
  .archive-grid,
  .project-grid--archive {
    grid-template-columns: repeat(2, 1fr);
  }

  .impact__grid,
  .story-grid,
  .social-contact,
  .split-cta {
    grid-template-columns: 1fr;
  }

  .stack-links {
    justify-self: start;
  }

  .story-aside {
    position: static;
  }

  .transparency__inner,
  .final-cta__inner,
  .contact-strip__inner {
    display: flex;
    align-items: flex-start;
    flex-direction: column;
  }

  .partner-list {
    grid-template-columns: repeat(3, 1fr);
  }

  .footer-main {
    grid-template-columns: 1.4fr repeat(2, 0.8fr);
  }

  .footer-contacts {
    grid-column: 2 / -1;
  }

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

  .team-card {
    grid-template-columns: 220px 1fr;
  }

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

  .steps li {
    min-height: auto;
    display: grid;
    grid-template-columns: auto 1fr;
    align-items: start;
    gap: 24px;
  }

  .steps li > span {
    margin: 0;
  }

  .qr-card {
    grid-template-columns: 160px 1fr;
  }

  .article-hero {
    grid-template-columns: 1fr;
  }

  .article-hero__image {
    height: min(560px, 75vw);
  }

  .article-layout {
    grid-template-columns: 1fr;
  }

  .article-aside {
    position: static;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
  }

  .need-detail__hero {
    grid-template-columns: 0.8fr 1.2fr;
    gap: 40px;
  }
}

@media (max-width: 760px) {
  body {
    font-size: 16px;
  }

  .container {
    width: min(calc(100% - 32px), var(--container));
  }

  .header-bar {
    display: none;
  }

  .header-main {
    min-height: 78px;
  }

  .brand {
    min-width: 0;
  }

  .brand img {
    width: 49px;
    height: 47px;
  }

  .brand__copy strong {
    font-size: 1.15rem;
  }

  .brand__copy small {
    display: none;
  }

  .header-actions .button {
    display: none;
  }

  .menu-panel,
  .site-header.is-stuck .menu-panel {
    top: 78px;
  }

  .menu-panel__grid {
    grid-template-columns: 1fr;
  }

  .menu-group--accent {
    margin-top: 8px;
  }

  .home-hero {
    min-height: calc(100vh - 78px);
    background-position: 58% center;
  }

  .home-hero__inner {
    padding-block: 44px;
  }

  .home-hero__card {
    padding: 30px 24px;
    border-radius: 24px;
  }

  .home-hero__card h1 {
    font-size: clamp(2.7rem, 13vw, 4.2rem);
  }

  .home-hero__card .button-row {
    flex-direction: column;
  }

  .home-hero__card .button {
    width: 100%;
  }

  .section-heading {
    align-items: flex-start;
    flex-direction: column;
    gap: 18px;
  }

  .regular-giving__inner {
    grid-template-columns: 1fr;
  }

  .regular-giving .button {
    grid-column: 1 / -1;
    width: 100%;
  }

  .program-grid,
  .program-grid--archive,
  .news-grid,
  .project-grid,
  .archive-grid,
  .project-grid--archive {
    grid-template-columns: 1fr;
  }

  .program-grid--archive .program-card {
    min-height: 270px;
  }

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

  .partner-list {
    grid-template-columns: repeat(2, 1fr);
  }

  .page-intro__inner {
    grid-template-columns: 1fr;
  }

  .page-intro__mark {
    display: none;
  }

  .team-card {
    grid-template-columns: 145px 1fr;
  }

  .team-card__image {
    height: 210px;
  }

  .contact-grid,
  .help-layout,
  .qr-grid,
  .bank-grid {
    grid-template-columns: 1fr;
  }

  .qr-card {
    grid-template-columns: 140px 1fr;
  }

  .article-page,
  .need-detail {
    padding-top: 50px;
  }

  .need-detail__hero {
    grid-template-columns: 1fr;
  }

  .need-detail__hero figure {
    height: min(540px, 110vw);
  }

  .article-aside {
    grid-template-columns: 1fr;
  }

  .footer-main {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-brand {
    grid-column: 1 / -1;
  }

  .footer-contacts {
    grid-column: auto;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
    padding-block: 20px;
  }

  .search-result {
    grid-template-columns: 1fr auto;
  }

  .search-result__type {
    grid-column: 1 / -1;
  }

  .prose .wp-block-columns {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 520px) {
  h1 {
    font-size: clamp(2.45rem, 13vw, 3.4rem);
  }

  h2 {
    font-size: clamp(1.85rem, 9vw, 2.55rem);
  }

  .header-actions {
    gap: 6px;
  }

  .icon-button {
    width: 40px;
    height: 40px;
  }

  .menu-toggle {
    width: 40px;
    height: 40px;
  }

  .home-hero__card > p:not(.eyebrow) {
    font-size: 1rem;
  }

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

  .impact__stats div {
    min-height: 120px;
  }

  .partner-list li {
    height: 90px;
  }

  .team-card {
    grid-template-columns: 1fr;
  }

  .team-card__image {
    height: 380px;
  }

  .contact-card {
    min-height: 260px;
    padding: 26px;
  }

  .contact-card__icon {
    top: 24px;
    left: 24px;
  }

  .contact-card > strong {
    right: 26px;
    bottom: 26px;
  }

  .steps li {
    grid-template-columns: 1fr;
  }

  .qr-card {
    grid-template-columns: 1fr;
  }

  .qr-card__image {
    width: 190px;
    margin-inline: auto;
  }

  .bank-card dl div,
  .donation-note {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .article-hero__image {
    height: 100vw;
  }

  .article-layout {
    padding-bottom: 80px;
  }

  .report-card {
    grid-template-columns: auto 1fr;
  }

  .report-card__arrow {
    display: none;
  }

  .footer-main {
    grid-template-columns: 1fr;
  }

  .footer-brand,
  .footer-contacts {
    grid-column: auto;
  }
}

@media (min-width: 961px) and (max-width: 1180px) {
  .horizontal-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    overflow: visible;
    padding: 0;
    margin-right: 0;
  }

  .need-card {
    flex: initial;
  }
}

@media (min-width: 761px) and (max-width: 960px) {
  .menu-panel,
  .site-header.is-stuck .menu-panel {
    top: 124px;
    max-height: calc(100dvh - 124px);
  }

  .horizontal-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    overflow: visible;
    padding: 0;
    margin-right: 0;
  }

  .need-card {
    flex: initial;
  }

  .signature-strip__item {
    grid-template-columns: 1fr;
    align-content: center;
    gap: 10px;
    padding-inline: 24px;
  }
}

@media (max-width: 960px) {
  .home-hero {
    min-height: min(780px, calc(100svh - 124px));
  }

  .home-hero__inner {
    grid-template-columns: 1fr;
    align-items: end;
  }

  .home-hero__card {
    width: min(760px, 100%);
  }

  .signature-strip__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 760px) {
  .container {
    width: min(calc(100% - 40px), var(--container));
  }

  .header-main {
    min-height: 76px;
    gap: 10px;
  }

  .header-actions {
    gap: 7px;
  }

  .header-actions .button {
    min-height: 44px;
    display: inline-flex;
    padding-inline: 14px;
  }

  .menu-panel,
  .site-header.is-stuck .menu-panel {
    top: 76px;
    max-height: calc(100dvh - 76px);
  }

  .menu-panel {
    padding-block: 28px 40px;
  }

  .home-hero {
    min-height: max(680px, calc(100svh - 76px));
    background-position: 58% center;
  }

  .home-hero::before {
    background-position: 61% center;
  }

  .home-hero::after {
    background:
      linear-gradient(0deg, rgba(6, 7, 8, 0.97) 0%, rgba(6, 7, 8, 0.78) 55%, rgba(6, 7, 8, 0.2) 100%),
      linear-gradient(90deg, rgba(6, 7, 8, 0.45), transparent);
  }

  .home-hero__inner {
    padding-block: 90px 52px;
  }

  .home-hero__card {
    padding: 0;
    border-radius: 0;
  }

  .home-hero__card h1 {
    font-size: clamp(3.25rem, 14.5vw, 5rem);
    line-height: 0.95;
  }

  .signature-strip__grid {
    grid-template-columns: 1fr;
  }

  .signature-strip__item {
    min-height: 104px;
    padding: 24px 0;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.14);
    border-left: 0;
  }

  .signature-strip__item:last-child {
    border-right: 0;
    border-bottom: 0;
  }

  .horizontal-grid {
    display: flex;
    gap: 14px;
    overflow-x: auto;
    scroll-padding-inline: 2px;
    scroll-snap-type: x mandatory;
    scrollbar-color: var(--ink) transparent;
    scrollbar-width: thin;
    overscroll-behavior-inline: contain;
    padding: 4px 2px 24px;
    margin-right: calc((100vw - min(100vw - 40px, var(--container))) / -2);
  }

  .horizontal-grid::-webkit-scrollbar {
    height: 5px;
  }

  .horizontal-grid::-webkit-scrollbar-thumb {
    background: var(--ink);
  }

  .need-card {
    flex: 0 0 min(86vw, 350px);
  }

  .section {
    padding-block: 76px;
  }

  .section-heading {
    margin-bottom: 36px;
  }

  .program-card,
  .program-card:nth-child(2),
  .program-card:nth-child(3),
  .program-card:nth-child(5),
  .program-card:nth-child(6) {
    min-height: 270px;
  }

  .transparency,
  .final-cta,
  .contact-strip {
    padding-block: 70px;
  }

  .article-page,
  .need-detail {
    padding-top: 64px;
  }

  .article-hero {
    padding-bottom: 70px;
  }

  .article-hero__copy h1 {
    font-size: clamp(2.8rem, 12vw, 4.4rem);
  }

  .search-dialog__panel {
    max-height: calc(100dvh - 24px);
    margin-block: 12px;
  }
}

@media (max-width: 520px) {
  h1 {
    font-size: clamp(2.75rem, 13vw, 3.75rem);
  }

  h2 {
    font-size: clamp(2.05rem, 10vw, 3rem);
  }

  .container {
    width: min(calc(100% - 36px), var(--container));
  }

  .brand img {
    width: 44px;
    height: 43px;
  }

  .brand__copy strong {
    font-size: 1rem;
    letter-spacing: 0.12em;
  }

  .icon-button,
  .menu-toggle {
    width: 44px;
    height: 44px;
  }

  .header-actions .button {
    padding-inline: 11px;
    font-size: 0.65rem;
  }

  .home-hero__card h1 {
    font-size: clamp(3rem, 15vw, 4.35rem);
  }

  .home-hero__card .button-row {
    flex-direction: row;
  }

  .home-hero__card .button {
    width: auto;
    flex: 1 1 150px;
  }

  .signature-strip__item strong {
    font-size: 2.7rem;
  }

  .need-card__image {
    height: 270px;
  }

  .partner-list li {
    height: 104px;
  }

  .team-card__image {
    height: 360px;
  }
}

@media (max-width: 380px) {
  .brand__copy {
    display: none;
  }

  .header-actions .button {
    padding-inline: 10px;
  }
}

/* Editorial news and project detail */
:is(.article-page--news, .article-page--project) {
  padding-top: clamp(36px, 5vw, 76px);
}

:is(.article-page--news, .article-page--project) .article-hero {
  grid-template-columns: minmax(0, 0.92fr) minmax(420px, 1.08fr);
  align-items: stretch;
  gap: 0;
  padding-bottom: 0;
}

:is(.article-page--news, .article-page--project) .article-hero__copy {
  min-width: 0;
  min-height: clamp(500px, 38vw, 620px);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: clamp(42px, 5vw, 76px);
  overflow: hidden;
  background:
    radial-gradient(circle at 100% 0, rgba(195, 155, 190, 0.34), transparent 38%),
    linear-gradient(145deg, var(--blue-900), #102f4d);
  border-top: 4px solid var(--pink);
  border-radius: 3px 0 0 3px;
  color: var(--white);
}

:is(.article-page--news, .article-page--project) .article-hero__copy .eyebrow {
  margin-bottom: 20px;
  color: var(--yellow);
}

:is(.article-page--news, .article-page--project) .article-hero__copy h1 {
  max-width: 18ch;
  margin: 0 0 clamp(30px, 4vw, 50px);
  color: var(--white);
  font-size: clamp(2.65rem, 4.15vw, 4.9rem);
  line-height: 0.98;
  letter-spacing: -0.055em;
  overflow-wrap: anywhere;
  text-wrap: balance;
}

:is(.article-page--news, .article-page--project) .article-hero time {
  width: fit-content;
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  margin: 0;
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.28);
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.76rem;
  letter-spacing: 0.1em;
}

:is(.article-page--news, .article-page--project) .article-hero__image {
  min-height: clamp(500px, 38vw, 620px);
  height: auto;
  margin: 0;
  overflow: hidden;
  background: var(--warm);
  border: 1px solid var(--line);
  border-top: 4px solid var(--blue-500);
  border-left: 0;
  border-radius: 0 3px 3px 0;
  box-shadow: none;
}

:is(.article-page--news, .article-page--project) .article-hero__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.96) contrast(1.015);
}

:is(.article-page--news, .article-page--project)
  .article-hero__image
  img[src$="92a4c6bf5-VMESTE-logotip-osn-768x260.jpg"] {
  padding: clamp(24px, 5vw, 64px);
  background: var(--white);
  object-fit: contain;
}

:is(.article-page--news, .article-page--project) .article-layout {
  grid-template-columns: minmax(0, 780px) minmax(270px, 320px);
  justify-content: space-between;
  gap: clamp(56px, 8vw, 116px);
  margin-top: clamp(64px, 7vw, 104px);
  padding-top: clamp(48px, 5vw, 72px);
  padding-bottom: clamp(96px, 10vw, 148px);
  border-top: 1px solid var(--line);
}

:is(.article-page--news, .article-page--project) .prose {
  width: 100%;
  max-width: 70ch;
  color: var(--ink);
  font-size: clamp(1.06rem, 1rem + 0.16vw, 1.16rem);
  line-height: 1.78;
  overflow-wrap: anywhere;
}

:is(.article-page--news, .article-page--project) .prose::before {
  content: "";
  width: 72px;
  height: 3px;
  display: block;
  margin-bottom: 34px;
  background: linear-gradient(90deg, var(--pink), var(--blue-500));
}

:is(.article-page--news, .article-page--project) .prose > p:first-child {
  margin-bottom: 1.55em;
  color: var(--ink);
  font-size: clamp(1.15rem, 1.08rem + 0.22vw, 1.28rem);
  line-height: 1.67;
}

:is(.article-page--news, .article-page--project) .prose p,
:is(.article-page--news, .article-page--project) .prose li {
  text-wrap: pretty;
}

:is(.article-page--news, .article-page--project) .prose p,
:is(.article-page--news, .article-page--project) .prose ul,
:is(.article-page--news, .article-page--project) .prose ol {
  margin-bottom: 1.45em;
}

:is(.article-page--news, .article-page--project) .prose h2 {
  margin: 2.2em 0 0.7em;
  font-size: clamp(1.85rem, 2.7vw, 2.55rem);
  line-height: 1.12;
  letter-spacing: -0.035em;
}

:is(.article-page--news, .article-page--project) .prose h3 {
  margin: 2em 0 0.65em;
  font-size: clamp(1.45rem, 2vw, 1.85rem);
  line-height: 1.18;
  letter-spacing: -0.025em;
}

:is(.article-page--news, .article-page--project) .prose h4 {
  margin: 1.8em 0 0.6em;
  font-size: 1.2rem;
  line-height: 1.25;
  letter-spacing: -0.01em;
}

:is(.article-page--news, .article-page--project) .prose strong {
  color: var(--ink);
  font-weight: 600;
}

:is(.article-page--news, .article-page--project) .prose a {
  color: var(--pink-dark);
  text-decoration-color: currentColor;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.2em;
  transition: color 0.2s ease;
}

:is(.article-page--news, .article-page--project) .prose a:hover,
:is(.article-page--news, .article-page--project) .prose a:focus-visible {
  color: var(--blue-700);
}

:is(.article-page--news, .article-page--project) .prose li::marker {
  color: var(--pink);
  font-weight: 600;
}

:is(.article-page--news, .article-page--project) .prose blockquote {
  position: relative;
  margin: clamp(34px, 5vw, 54px) 0;
  padding: clamp(24px, 3.5vw, 36px);
  background: linear-gradient(90deg, var(--pink-soft), var(--paper));
  border: 1px solid rgba(169, 47, 79, 0.16);
  border-left: 4px solid var(--pink);
  color: var(--ink);
  font-size: clamp(1.18rem, 1.7vw, 1.48rem);
  line-height: 1.48;
}

:is(.article-page--news, .article-page--project) .prose img:not(.emoji) {
  max-width: 100%;
  height: auto;
  margin: 10px 14px 12px 0;
  background: var(--warm);
  border: 1px solid var(--line);
  border-radius: 3px;
  box-shadow: var(--shadow-soft);
}

:is(.article-page--news, .article-page--project) .prose > img:not(.emoji),
:is(.article-page--news, .article-page--project) .prose > figure {
  width: 100%;
  margin-block: clamp(34px, 5vw, 58px);
}

:is(.article-page--news, .article-page--project) .prose > figure img {
  width: 100%;
}

:is(.article-page--news, .article-page--project) .prose p:has(> img:not(.emoji):only-child) {
  margin-block: clamp(34px, 5vw, 58px);
}

:is(.article-page--news, .article-page--project) .prose p:has(> img:not(.emoji):only-child) img {
  width: 100%;
  max-height: 760px;
  margin: 0;
  object-fit: contain;
}

:is(.article-page--news, .article-page--project) .prose img.aligncenter {
  display: block;
  margin-inline: auto;
}

:is(.article-page--news, .article-page--project) .prose figcaption {
  margin-top: 12px;
  color: var(--ink-soft);
  font-size: 0.84rem;
  line-height: 1.45;
}

:is(.article-page--news, .article-page--project) .prose th {
  background: var(--blue-100);
  color: var(--ink);
  font-weight: 600;
}

:is(.article-page--news, .article-page--project) .article-aside {
  top: 145px;
  width: 100%;
  gap: 16px;
}

:is(.article-page--news, .article-page--project) .aside-card {
  position: relative;
  overflow: hidden;
  padding: clamp(26px, 3vw, 34px);
  background: linear-gradient(145deg, var(--pink-soft), var(--paper));
  border: 1px solid rgba(169, 47, 79, 0.18);
  border-radius: 3px;
  box-shadow: var(--shadow-soft);
}

:is(.article-page--news, .article-page--project) .aside-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 4px;
  background: linear-gradient(90deg, var(--pink), var(--blue-500));
}

:is(.article-page--news, .article-page--project) .aside-card h2 {
  margin-bottom: 14px;
  font-size: clamp(1.55rem, 2vw, 1.9rem);
  line-height: 1.08;
  letter-spacing: -0.035em;
}

:is(.article-page--news, .article-page--project) .aside-card p:not(.eyebrow) {
  margin-bottom: 22px;
  font-size: 0.96rem;
  line-height: 1.55;
}

:is(.article-page--news, .article-page--project) .aside-card .button {
  width: 100%;
  justify-content: center;
}

:is(.article-page--news, .article-page--project) .back-link {
  min-height: 54px;
  display: inline-flex;
  align-items: center;
  padding: 0 18px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 3px;
  color: var(--ink);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  transition:
    color 0.2s ease,
    border-color 0.2s ease,
    background-color 0.2s ease;
}

:is(.article-page--news, .article-page--project) .back-link:hover,
:is(.article-page--news, .article-page--project) .back-link:focus-visible {
  background: var(--pink-soft);
  border-color: var(--pink);
  color: var(--pink-dark);
}

@media (max-width: 960px) {
  :is(.article-page--news, .article-page--project) .article-hero {
    grid-template-columns: 1fr;
  }

  :is(.article-page--news, .article-page--project) .article-hero__copy {
    min-height: auto;
    padding: clamp(38px, 7vw, 58px);
    border-radius: 3px 3px 0 0;
  }

  :is(.article-page--news, .article-page--project) .article-hero__copy h1 {
    max-width: 20ch;
  }

  :is(.article-page--news, .article-page--project) .article-hero__image {
    min-height: 0;
    height: auto;
    aspect-ratio: 4 / 3;
    border-left: 1px solid var(--line);
    border-radius: 0 0 3px 3px;
  }

  :is(.article-page--news, .article-page--project) .article-layout {
    grid-template-columns: 1fr;
    gap: 56px;
    margin-top: 70px;
    padding-top: 52px;
  }

  :is(.article-page--news, .article-page--project) .article-aside {
    position: static;
    max-width: 600px;
    display: flex;
    flex-direction: column;
  }
}

@media (max-width: 760px) {
  :is(.article-page--news, .article-page--project) {
    padding-top: 28px;
  }

  :is(.article-page--news, .article-page--project) .article-hero__copy {
    padding: clamp(28px, 7vw, 42px);
  }

  :is(.article-page--news, .article-page--project) .article-hero__copy h1 {
    max-width: none;
    margin-bottom: 26px;
    font-size: clamp(2.35rem, 10.5vw, 4rem);
    line-height: 1;
  }

  :is(.article-page--news, .article-page--project) .article-layout {
    gap: 44px;
    margin-top: 52px;
    padding-top: 40px;
    padding-bottom: 84px;
  }

  :is(.article-page--news, .article-page--project) .prose {
    max-width: none;
    font-size: 1.03rem;
    line-height: 1.72;
  }

  :is(.article-page--news, .article-page--project) .prose::before {
    margin-bottom: 28px;
  }

  :is(.article-page--news, .article-page--project) .prose > p:first-child {
    font-size: 1.12rem;
  }

  :is(.article-page--news, .article-page--project) .prose h2 {
    font-size: clamp(1.7rem, 8vw, 2.2rem);
  }

  :is(.article-page--news, .article-page--project) .prose blockquote,
  :is(.article-page--news, .article-page--project) .aside-card {
    padding: 24px;
  }
}

@media (max-width: 520px) {
  :is(.article-page--news, .article-page--project) .article-hero__copy {
    padding: 28px 22px;
  }

  :is(.article-page--news, .article-page--project) .article-hero__copy h1 {
    font-size: clamp(2.15rem, 10.8vw, 3.2rem);
  }

  :is(.article-page--news, .article-page--project) .article-hero time {
    font-size: 0.71rem;
  }

  :is(.article-page--news, .article-page--project) .article-layout {
    margin-top: 42px;
    padding-top: 34px;
  }
}

@media (hover: none) {
  .button:hover,
  .hero-note:hover,
  .need-card:hover,
  .contact-card:hover {
    transform: none;
  }

  .need-card:hover,
  .contact-card:hover {
    box-shadow: none;
  }

  .need-card:hover .need-card__image img,
  .news-card:hover .news-card__image img,
  .project-card:hover .project-card__image img,
  .partner-list li:hover img {
    filter: saturate(0.78) contrast(1.02);
    transform: none;
  }

  .project-card:hover .project-card__image img {
    filter: none;
  }

  .text-link:hover span {
    transform: none;
  }
}

@media (forced-colors: active) {
  .button,
  .filter-button,
  .icon-button,
  .menu-toggle,
  .need-card,
  .program-card,
  .contact-card,
  .partner-list li {
    border: 1px solid ButtonText;
  }

  .progress__track span {
    background: Highlight;
  }

  .page-intro__mark,
  .home-hero::before,
  .home-hero::after {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}

@media print {
  .site-header,
  .site-footer,
  .article-aside,
  .breadcrumbs,
  .search-dialog,
  .button-row,
  .button {
    display: none !important;
  }

  body {
    background: var(--white);
    color: #000;
    font-size: 12pt;
  }

  .container,
  .prose {
    width: 100%;
    max-width: none;
  }

  .page-intro {
    padding: 20px 0;
    background: none;
  }

  .article-layout {
    display: block;
    padding: 0;
  }

  :is(.article-page--news, .article-page--project) .article-hero {
    display: block;
    padding: 0 0 24px;
  }

  :is(.article-page--news, .article-page--project) .article-hero__copy {
    min-height: 0;
    padding: 0 0 24px;
    overflow: visible;
    background: none;
    border: 0;
    color: #000;
  }

  :is(.article-page--news, .article-page--project) .article-hero__copy .eyebrow,
  :is(.article-page--news, .article-page--project) .article-hero__copy h1,
  :is(.article-page--news, .article-page--project) .article-hero time {
    color: #000;
  }

  :is(.article-page--news, .article-page--project) .article-hero__image {
    min-height: 0;
    height: auto;
    aspect-ratio: 4 / 3;
    border: 0;
  }

  :is(.article-page--news, .article-page--project) .article-layout {
    margin: 0;
    border: 0;
  }
}

/* WordPress integration */
.navigation.pagination,
.page-links {
  margin-top: clamp(32px, 5vw, 64px);
}

.navigation.pagination .nav-links,
.page-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
}

.navigation.pagination .page-numbers,
.page-links .post-page-numbers,
ul.page-numbers > li > a,
ul.page-numbers > li > span {
  display: inline-flex;
  min-width: 44px;
  min-height: 44px;
  padding: 10px 14px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  background: var(--white);
  color: var(--blue-900);
  font-weight: 700;
  text-decoration: none;
}

ul.page-numbers {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: clamp(32px, 5vw, 64px) 0 0;
  padding: 0;
  list-style: none;
}

.navigation.pagination .page-numbers.current,
ul.page-numbers > li > span.current {
  border-color: var(--blue-900);
  background: var(--blue-900);
  color: var(--white);
}

.prose > :first-child {
  margin-top: 0;
}

.prose .alignwide {
  width: min(1120px, calc(100vw - 40px));
  max-width: none;
  margin-right: 50%;
  margin-left: 50%;
  transform: translateX(-50%);
}

.prose .alignfull {
  width: 100vw;
  max-width: none;
  margin-right: 50%;
  margin-left: 50%;
  transform: translateX(-50%);
}

.wp-caption,
.wp-caption img,
.prose img {
  max-width: 100%;
  height: auto;
}

@media (min-width: 783px) {
  .admin-bar .site-header.is-stuck {
    top: 32px;
  }
}

@media (max-width: 782px) {
  .admin-bar .site-header.is-stuck {
    top: 46px;
  }
}

/* Final small-screen containment overrides. */
@media (max-width: 960px) {
  .menu-panel,
  .site-header.is-stuck .menu-panel {
    position: absolute;
    top: 100%;
    bottom: auto;
    max-height: calc(100dvh - 124px);
  }
}

@media (max-width: 600px) {
  html,
  body {
    max-width: 100%;
    overflow-x: clip;
  }

  .header-main {
    gap: 8px;
  }

  .brand {
    min-width: 0;
    flex: 1 1 auto;
  }

  .header-actions {
    flex: 0 0 auto;
  }

  .header-actions .button {
    display: none;
  }

  .menu-panel,
  .site-header.is-stuck .menu-panel {
    max-height: calc(100dvh - 76px);
  }

  .home-hero__inner,
  .home-hero__card {
    min-width: 0;
    max-width: 100%;
  }

  .home-hero__card {
    width: 100%;
  }

  .home-hero__card h1 {
    max-width: 100%;
    font-size: clamp(2.8rem, 12vw, 4rem);
    letter-spacing: -0.06em;
    overflow-wrap: break-word;
  }

  .home-hero__card > p:not(.eyebrow) {
    max-width: 100%;
    overflow-wrap: break-word;
  }

  .home-hero__card .button-row {
    width: 100%;
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 10px;
  }

  .home-hero__card .button {
    width: 100%;
    min-width: 0;
  }
}

@media (max-width: 600px) {
  .admin-bar .menu-panel,
  .admin-bar .site-header.is-stuck .menu-panel {
    max-height: calc(100dvh - 122px);
  }
}
