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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Montserrat", system-ui, -apple-system, "Segoe UI", sans-serif;
  color: #2A3354;
  background: #F5F6FB;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

h1, h2, h3, h4 {
  margin: 0;
  line-height: 1.15;
}

p {
  margin: 0;
}

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

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

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.container {
  width: min(100% - 40px * 2, 1620px);
  margin-inline: auto;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  height: 60px;
  padding: 0 34px;
  border-radius: 12px 50px 50px 0;
  font-size: 20px;
  font-weight: 700;
  line-height: 30px;
  white-space: nowrap;
  transition: transform 0.15s ease, filter 0.15s ease;
}
.btn:hover {
  transform: translateY(-2px);
}
.btn--sm {
  height: 44px;
  padding: 0 20px;
  gap: 6px;
  border-radius: 8px 50px 50px 0;
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
}
.btn--yellow {
  background: #FFD700;
  color: #0F3D72;
}
.btn--yellow:hover {
  filter: brightness(1.04);
}
.btn--blue {
  background: #4BAFD4;
  color: #FFFFFF;
  gap: 4px;
  border: 1px solid #FFFFFF;
}
.btn--blue:hover {
  filter: brightness(1.05);
}
.btn__arrow {
  width: 22px;
  height: 22px;
  flex: none;
  background-color: currentColor;
  -webkit-mask: url("../assets/img/arrow.svg") center/contain no-repeat;
  mask: url("../assets/img/arrow.svg") center/contain no-repeat;
}

.header {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 20;
}
.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
}
.header__actions {
  display: flex;
  align-items: center;
  gap: 30px;
}

.logo {
  display: flex;
  align-items: center;
}
.logo__img {
  height: 60px;
  width: auto;
  display: block;
}

.nav {
  display: flex;
  align-items: center;
  gap: 26px;
}
.nav__link {
  font-size: 16px;
  font-weight: 600;
  line-height: 24px;
  color: #FFFFFF;
  transition: color 0.15s, opacity 0.15s;
}
.nav__link:hover {
  color: #FFD700;
}

.lang {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 100px;
  font-size: 16px;
  font-weight: 400;
  color: #FFFFFF;
  border: 1px solid rgba(255, 255, 255, 0.5);
  transition: border-color 0.15s;
}
.lang:hover {
  border-color: #FFFFFF;
}

.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 6px;
}
.burger span {
  width: 26px;
  height: 2.5px;
  border-radius: 2px;
  background: #FFFFFF;
  transition: 0.25s;
}

.m-menu {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: none;
  flex-direction: column;
  padding: 18px 0 40px;
  overflow-y: auto;
  background: #FFFFFF;
  color: #0F3D72;
}
.m-menu.is-open {
  display: flex;
}
.m-menu__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.m-menu__logo {
  height: 52px;
  width: auto;
  display: block;
}
.m-menu__close {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  font-size: 30px;
  line-height: 1;
  color: #FFD700;
  background: none;
}
.m-menu__nav {
  display: flex;
  flex-direction: column;
  margin-top: 24px;
}
.m-menu__link {
  padding: 12px 0;
  font-size: 26px;
  font-weight: 700;
  line-height: 1.2;
  color: #1B5CA8;
  text-decoration: none;
}
.m-menu__link--active {
  color: #FFD700;
}
.m-menu__link:active {
  color: #FFD700;
}
.m-menu__langs {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 24px;
  margin-top: 28px;
}
.m-menu__lang {
  font-size: 22px;
  font-weight: 700;
  line-height: 1;
  color: #1B5CA8;
  background: none;
}
.m-menu__lang--active {
  color: #FFD700;
}
.m-menu__cta {
  margin-top: 32px;
}
.m-menu__cta .btn {
  width: 100%;
  height: 60px;
}

body.is-menu-open {
  overflow: hidden;
}

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: #1B72C4 url("../assets/img/hero-bg.png") center/cover no-repeat;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(11, 89, 141, 0.35) 0%, rgba(11, 89, 141, 0) 22%, rgba(11, 89, 141, 0) 75%, rgba(11, 89, 141, 0.4) 100%);
  pointer-events: none;
}
.hero__inner {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 257px 0;
}
.hero__content {
  display: flex;
  flex-direction: column;
  gap: 40px;
  max-width: 944px;
}
.hero__title {
  margin: 0;
  font-size: 50px;
  font-weight: 700;
  line-height: 75px;
  text-transform: uppercase;
  color: #FFFFFF;
}
.hero__title-accent {
  color: #FFD700;
}
.hero__actions {
  display: flex;
  gap: 30px;
}
.hero__art {
  flex: none;
  width: 550px;
  max-width: 38vw;
}
.hero__art img {
  width: 100%;
  height: auto;
  display: block;
}

.stats {
  padding: 100px 0;
  background: #E8F0F8;
}
.stats__title {
  margin: 0 0 31px;
  font-size: 44px;
  font-weight: 700;
  line-height: 1.5;
  text-transform: uppercase;
  color: #0F3D72;
}
.stats__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.stats__card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
  padding: 24px 31px 32px;
  border-radius: 8px;
  color: #FFFFFF;
  background: linear-gradient(166.88deg, #3280B0 4.77%, #005BA9 93.88%);
}
.stats__num {
  font-size: 90px;
  font-weight: 700;
  line-height: 1;
  color: #FFD700;
}
.stats__label {
  font-size: 26px;
  font-weight: 400;
  line-height: 1.5;
}

.priorities {
  padding: 120px 0;
  background: #FFFFFF url("../assets/img/priorities/bg-watermark.svg") center top/cover no-repeat;
}
.priorities__title {
  margin: 0 0 50px;
  text-align: center;
  font-size: 44px;
  font-weight: 700;
  line-height: 1.5;
  text-transform: uppercase;
  color: #0F3D72;
}
.priorities__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  column-gap: 20px;
  row-gap: 50px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.priorities__card {
  display: flex;
}
.priorities__link {
  flex: 1;
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: #0F3D72;
}
.priorities__link:hover .priorities__img, .priorities__link:focus-visible .priorities__img {
  transform: translateY(-6px);
}
.priorities__link:hover .priorities__label, .priorities__link:focus-visible .priorities__label {
  color: #1B5CA8;
}
.priorities__link:focus-visible {
  outline: 2px solid #1B5CA8;
  outline-offset: 4px;
  border-radius: 4px;
}
.priorities__img {
  width: 100%;
  height: auto;
  display: block;
  aspect-ratio: 527/391;
  object-fit: cover;
  clip-path: polygon(35% 0, 100% 0, 65% 100%, 0 100%);
  transition: transform 0.2s ease;
}
.priorities__label {
  margin-top: 20px;
  font-size: 24px;
  font-weight: 700;
  line-height: 1.5;
  color: #0F3D72;
  transition: color 0.2s ease;
}
@media (max-width: 1100px) {
  .priorities {
    padding: 80px 0;
  }
  .priorities__title {
    font-size: 34px;
    margin-bottom: 36px;
  }
  .priorities__grid {
    grid-template-columns: repeat(2, 1fr);
    row-gap: 36px;
  }
  .priorities__label {
    font-size: 20px;
  }
}
@media (max-width: 720px) {
  .priorities {
    padding: 56px 0;
  }
  .priorities__title {
    font-size: 28px;
  }
  .priorities__grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }
}

.news {
  padding: 117px 0 0;
  background: #FFFFFF;
}
.news__title {
  margin: 0 0 40px;
  text-align: center;
  font-size: 44px;
  font-weight: 700;
  line-height: 1.5;
  text-transform: uppercase;
  color: #0F3D72;
}
.news__content {
  display: flex;
  align-items: stretch;
  gap: 20px;
}
.news__grid {
  flex: 1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.news-live {
  flex: none;
  width: 390px;
  display: flex;
  flex-direction: column;
  padding: 10px 20px 20px;
  border-radius: 8px;
  color: #FFFFFF;
  background: linear-gradient(135.57deg, #3280B0 4.77%, #005BA9 93.88%);
  overflow: hidden;
}
.news-live__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 14px;
  margin-bottom: 16px;
  border-bottom: 1px solid #66A2CA;
}
.news-live__heading {
  font-size: 28px;
  font-weight: 500;
  line-height: 1.4;
}
.news-live__status {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 20px;
  font-weight: 500;
}
.news-live__dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #FFD700;
}
.news-live__list {
  flex: 1 1 0;
  min-height: 0;
  padding-left: 0;
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin: 0;
  padding-right: 12px;
  list-style: none;
  overflow-y: auto;
  scrollbar-width: thin;
  scrollbar-color: #66A2CA transparent;
}
.news-live__list::-webkit-scrollbar {
  width: 4px;
}
.news-live__list::-webkit-scrollbar-thumb {
  background: #66A2CA;
  border-radius: 50px;
}
.news-live__list::-webkit-scrollbar-track {
  background: transparent;
}
.news-live__list::-webkit-scrollbar-button {
  display: none;
  width: 0;
  height: 0;
}
.news-live__item {
  display: flex;
  gap: 10px;
  padding-bottom: 20px;
  border-bottom: 1px solid #66A2CA;
}
.news-live__item:last-child {
  padding-bottom: 0;
  border-bottom: none;
}
.news-live__num {
  flex: none;
  font-size: 24px;
  font-weight: 700;
  line-height: 1.4;
  color: #FFD700;
}
.news-live__text {
  font-size: 18px;
  font-weight: 400;
  line-height: 1.4;
}

@media (max-width: 1100px) {
  .news {
    padding: 80px 0;
  }
  .news__title {
    font-size: 34px;
    margin-bottom: 32px;
  }
  .news__content {
    flex-direction: column;
  }
  .news__grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .news-live {
    width: 100%;
  }
}
@media (max-width: 720px) {
  .news {
    padding: 56px 0;
  }
  .news__title {
    font-size: 28px;
  }
  .news__grid {
    grid-template-columns: 1fr;
  }
}
.news-card {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding-bottom: 16px;
  overflow: hidden;
  border-radius: 8px;
  background: #E8F0F8;
}
.news-card__media {
  position: relative;
  width: 100%;
  height: 258px;
}
.news-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.news-card__badge {
  position: absolute;
  top: 14px;
  left: 14px;
  padding: 6px 12px;
  border-radius: 4px;
  background: #FFD700;
  color: #0F3D72;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.4;
}
.news-card__body {
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: 100%;
  padding: 0 23px;
}
.news-card__title {
  font-size: 24px;
  font-weight: 700;
  line-height: 1.4;
  color: #0F3D72;
}
.news-card__text {
  font-size: 14px;
  font-weight: 400;
  line-height: 1.4;
  color: #0F3D72;
}
.news-card__meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 14px;
  line-height: 1.4;
  color: #66A2CA;
}
.news-card__date {
  text-transform: uppercase;
}
.news-card__stats {
  display: flex;
  align-items: center;
  gap: 20px;
}
.news-card__views {
  display: flex;
  align-items: center;
  gap: 6px;
}
.news-card__icon {
  width: 16px;
  height: 16px;
  flex: none;
  stroke: #66A2CA;
}
@media (max-width: 1100px) {
  .news-card__body {
    width: auto;
  }
}

.map {
  position: relative;
  padding: 120px 0;
  overflow: hidden;
}
.map::before {
  content: "";
  position: absolute;
  inset: 0 76% 0 0;
  background: url("../assets/img/map-watermark.svg") left center/contain no-repeat;
  opacity: 0.5;
  pointer-events: none;
}
.map__inner {
  position: relative;
  display: flex;
  align-items: center;
  gap: 47px;
}
.map__text {
  flex: none;
  width: 776px;
  max-width: 100%;
  display: flex;
  flex-direction: column;
  gap: 30px;
}
.map__title {
  font-size: 44px;
  font-weight: 700;
  line-height: 1.5;
  text-transform: uppercase;
  color: #0F3D72;
}
.map__lead {
  font-size: 24px;
  font-weight: 500;
  line-height: 1.6;
  color: #1B5CA8;
}
.map__btn {
  align-self: flex-start;
}
.map__media {
  flex: 1;
  min-width: 0;
}

.ukr-map {
  width: 100%;
  aspect-ratio: 797/535;
}
.ukr-map svg {
  width: 100%;
  height: 100%;
  display: block;
}
.ukr-map .oblast {
  cursor: pointer;
  transition: fill 0.15s ease;
}
.ukr-map .oblast:hover, .ukr-map .oblast:focus-visible {
  fill: #4BAFD4;
  outline: none;
}

@media (max-width: 1100px) {
  .map {
    padding: 72px 0;
  }
  .map__inner {
    flex-direction: column;
    align-items: stretch;
    gap: 32px;
  }
  .map__text {
    width: 100%;
  }
  .map__title {
    font-size: 34px;
  }
  .map__lead {
    font-size: 18px;
  }
  .map__media {
    width: 100%;
  }
  .map::before {
    display: none;
  }
}
@media (max-width: 720px) {
  .map {
    padding: 56px 0;
  }
  .map__title {
    font-size: 28px;
  }
}
.footer {
  padding: 50px 0 30px;
  color: #FFFFFF;
  background: #0D2A4E;
}
.footer__top {
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  gap: 60px;
}
.footer__brand {
  align-self: flex-start;
}
.footer__brand-logo {
  height: 100px;
  width: auto;
  max-width: 100%;
  display: block;
}
.footer__nav {
  display: flex;
  gap: 150px;
  margin-left: 60px;
}
.footer__col {
  display: flex;
  flex-direction: column;
  gap: 40px;
}
.footer__heading {
  font-size: 18px;
  font-weight: 700;
  line-height: 1.5;
  text-transform: uppercase;
}
.footer__links {
  display: flex;
  gap: 64px;
}
.footer__links--wide {
  width: auto;
}
.footer__list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.footer__list--cols {
  display: grid;
  grid-auto-flow: column;
  grid-template-rows: repeat(var(--footer-rows, 4), auto);
  grid-auto-columns: max-content;
  column-gap: 64px;
  row-gap: 20px;
}
.footer__link {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
  color: #FFFFFF;
  white-space: nowrap;
  transition: color 0.15s;
}
.footer__link:hover {
  color: #FFD700;
}
.footer__actions {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 20px;
}
.footer__btn {
  height: 44px;
  padding: 0 20px;
  font-size: 14px;
}
.footer__divider {
  height: 1px;
  border: 0;
  margin: 40px 0 20px;
  background: #476071;
}
.footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.footer__copy {
  font-size: 14px;
  font-weight: 400;
  line-height: 1.5;
  color: #FFFFFF;
}
.footer__socials {
  display: flex;
  align-items: center;
  gap: 12px;
}
.footer__social {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 33px;
  height: 33px;
  border: 0.5px solid #FFFFFF;
  border-radius: 50px;
  color: #FFFFFF;
  transition: background 0.15s, color 0.15s;
}
.footer__social svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
}
.footer__social:hover {
  background: #FFFFFF;
  color: #0D2A4E;
}

@media (max-width: 1100px) {
  .footer__top {
    flex-direction: column;
    gap: 40px;
  }
  .footer__nav {
    gap: 60px;
    flex-wrap: wrap;
  }
}
@media (max-width: 720px) {
  .footer__nav {
    flex-direction: column;
    gap: 32px;
  }
  .footer__links {
    gap: 40px;
  }
  .footer__links--wide {
    width: auto;
  }
  .footer__list--cols {
    display: flex;
    flex-direction: column;
    gap: 20px;
  }
  .footer__bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }
}
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 16px;
}
.breadcrumb__link {
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
}
.breadcrumb__link:hover {
  color: #FFD700;
}
.breadcrumb__sep {
  color: rgba(255, 255, 255, 0.5);
}
.breadcrumb__current {
  color: #FFFFFF;
}

.about-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  text-align: center;
  color: #FFFFFF;
  background: #0F3D72 url("../assets/img/about/hero-eu.jpg") center/cover no-repeat;
}
.about-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(7, 26, 58, 0.6) 0%, rgba(7, 26, 58, 0.4) 45%, rgba(7, 26, 58, 0.72) 100%);
}
.about-hero__bc {
  position: absolute;
  top: 116px;
  left: 0;
  right: 0;
  z-index: 3;
}
.about-hero__inner {
  position: relative;
  z-index: 2;
  width: 891px;
  max-width: calc(100% - 40px);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
  padding: 40px;
  border-radius: 8px;
  background: rgba(39, 57, 99, 0.6);
}
.about-hero__title {
  margin: 0;
  font-size: clamp(32px, 4.2vw, 50px);
  font-weight: 700;
  line-height: 1.3;
  text-transform: uppercase;
  color: #FFFFFF;
}
.about-hero__title-accent {
  color: #FFD700;
}
.about-hero__lead {
  max-width: 720px;
  font-size: 24px;
  font-weight: 500;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.9);
}
.about-hero__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
  margin-top: 8px;
}

.values {
  padding: 100px 0;
  background: #F8FAFB;
}
.values__title {
  margin: 0 0 32px;
  font-size: 44px;
  font-weight: 700;
  line-height: 1.5;
  text-transform: uppercase;
  color: #0F3D72;
}
.values__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.values__card {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 30px;
  border-radius: 8px;
  color: #FFFFFF;
  background: linear-gradient(160deg, #3280B0 0%, #005BA9 130%);
}
.values__icon {
  width: 80px;
  height: 80px;
}
.values__name {
  font-size: 28px;
  font-weight: 700;
  line-height: 1.4;
}
.values__text {
  font-size: 20px;
  font-weight: 400;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.92);
}

.community {
  position: relative;
  overflow: hidden;
  background: #FFFFFF url("../assets/img/priorities/bg-watermark.svg") center/cover no-repeat;
}
.community__viewport {
  overflow: hidden;
}
.community__track {
  display: flex;
  transition: transform 0.45s ease;
}
.community__slide {
  position: relative;
  flex: 0 0 100%;
  min-height: 600px;
}
.community__inner {
  position: relative;
  z-index: 1;
  display: flex;
  min-height: 600px;
  padding: 90px 0;
}
.community__text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 30px;
  max-width: 705px;
}
.community__title {
  margin: 0;
  font-size: 44px;
  font-weight: 700;
  line-height: 1.5;
  text-transform: uppercase;
  color: #0F3D72;
}
.community__lead {
  margin: 0;
  font-size: 24px;
  line-height: 1.6;
  color: #0F3D72;
}
.community__btn {
  border-radius: 12px 50px 50px 0;
}
.community__media {
  position: absolute;
  right: 0;
  top: 0;
  height: 100%;
  z-index: 0;
}
.community__img {
  height: 100%;
  width: auto;
  display: block;
}
.community__controls {
  position: absolute;
  bottom: 90px;
  left: max(40px, (100% - 1620px) / 2);
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 18px;
}
.community__arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #E8F0F8;
  cursor: pointer;
  transition: color 0.15s;
}
.community__arrow svg {
  width: 49px;
  height: 37px;
  display: block;
}
.community__arrow:hover {
  color: #FFD700;
}
.community__dots {
  display: flex;
  align-items: center;
  gap: 10px;
}
.community__dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(15, 61, 114, 0.25);
  cursor: pointer;
  transition: background 0.15s, width 0.15s;
}
.community__dot.is-active {
  width: 26px;
  border-radius: 6px;
  background: #FFD700;
}

.join {
  position: relative;
  overflow: hidden;
  padding: 120px 0;
  background: #F8FAFB url("../assets/img/map-watermark.svg") left center/auto 90% no-repeat;
}
.join__card {
  position: relative;
  z-index: 1;
  max-width: 900px;
  margin: 0 auto;
  padding: 60px 45px;
  border-radius: 20px;
  text-align: center;
  color: #FFFFFF;
  background: linear-gradient(162deg, #3280B0 4.77%, #005BA9 93.88%);
}
.join__title {
  margin: 0 0 32px;
  font-size: 44px;
  font-weight: 700;
  line-height: 1.5;
  text-transform: uppercase;
}
.join__form {
  display: flex;
  flex-direction: column;
  gap: 24px;
  max-width: 810px;
  margin: 0 auto;
  text-align: left;
}
.join__input {
  width: 100%;
  height: 52px;
  padding: 0 16px;
  border: 1px solid #FFFFFF;
  border-radius: 8px;
  background: transparent;
  color: #FFFFFF;
  font: 400 16px "Montserrat", system-ui, -apple-system, "Segoe UI", sans-serif;
}
.join__input::placeholder {
  color: rgba(255, 255, 255, 0.85);
}
.join__input:focus {
  outline: none;
  border-color: #FFD700;
}
.join__field-label {
  display: block;
  margin: 0 0 8px 4px;
  font-size: 12px;
  color: #FFFFFF;
}
.join__phone {
  width: 100%;
  --react-international-phone-height: 52px;
  --react-international-phone-border-radius: 8px;
  --react-international-phone-border-color: #FFFFFF;
  --react-international-phone-background-color: transparent;
  --react-international-phone-text-color: #FFFFFF;
  --react-international-phone-font-size: 16px;
  --react-international-phone-country-selector-background-color: transparent;
  --react-international-phone-country-selector-background-color-hover: rgba(255, 255, 255, .12);
  --react-international-phone-country-selector-arrow-color: #FFFFFF;
  --react-international-phone-dropdown-item-background-color: #FFFFFF;
  --react-international-phone-dropdown-item-text-color: #0F3D72;
  --react-international-phone-dropdown-item-background-color-focus: #E8F0F8;
  --react-international-phone-selected-dropdown-item-background-color: #E8F0F8;
  display: flex;
  align-items: stretch;
}
.join__phone .react-international-phone-country-selector-button {
  flex: none;
  padding: 0 6px 0 12px;
  border: 1px solid #FFFFFF;
  border-right: none;
  border-radius: 8px 0 0 8px;
  cursor: pointer;
}
.join__phone .react-international-phone-country-selector-button .react-international-phone-country-selector-button__dropdown-arrow {
  display: none;
}
.join__phone .react-international-phone-dial-code-preview {
  position: relative;
  display: flex;
  align-items: center;
  cursor: pointer;
  padding: 0 48px 0 4px;
  border: 1px solid #FFFFFF;
  border-left: none;
  border-radius: 0 8px 8px 0;
  background: transparent;
  color: #FFFFFF;
  font-size: 16px;
}
.join__phone .react-international-phone-dial-code-preview::after {
  content: "";
  position: absolute;
  right: 14px;
  top: 50%;
  width: 7px;
  height: 7px;
  border-right: 1.5px solid #FFFFFF;
  border-bottom: 1.5px solid #FFFFFF;
  transform: translateY(-65%) rotate(45deg);
}
.join__phone .join__phone-number {
  flex: 1;
  width: 100%;
  margin-left: 6px;
  border: 1px solid #FFFFFF;
  border-radius: 8px;
}
.join__phone .join__phone-number::placeholder {
  color: rgba(255, 255, 255, 0.85);
}
.join__phone .join__phone-number:focus {
  outline: none;
  border-color: #FFD700;
}
.join__submit {
  width: 100%;
  margin-top: 6px;
}
.join__modal {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  background: rgba(0, 0, 0, 0.7);
}
.join__modal-card {
  position: relative;
  width: 100%;
  max-width: 743px;
  padding: 56px 60px 50px;
  border-radius: 20px;
  text-align: center;
  color: #FFFFFF;
  background: linear-gradient(-26deg, #005BA9 38%, #3280B0 68%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}
.join__modal-card--form {
  max-width: 900px;
  padding: 50px 45px;
  text-align: center;
  align-items: stretch;
  gap: 30px;
  background: linear-gradient(162deg, #3280B0 4.77%, #005BA9 93.88%);
}
.join__modal-card--form .join__form {
  width: 100%;
  max-width: none;
  margin: 0;
}
.join__close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 30px;
  height: 30px;
  color: #FFD700;
  background: none;
  cursor: pointer;
}
.join__close svg {
  width: 100%;
  height: 100%;
}
.join__success-title {
  margin: 0;
  font-size: 32px;
  font-weight: 700;
  line-height: 1.5;
  text-transform: uppercase;
  color: #FFFFFF;
}
.join__success-lead {
  margin: 0 auto;
  max-width: 683px;
  font-size: 20px;
  line-height: 1.5;
  color: #FFFFFF;
}
.join__success-btn {
  min-width: 320px;
  margin-top: 8px;
  border-radius: 12px 50px 50px 0;
}

body.is-modal-open {
  overflow: hidden;
}

@media (max-width: 1100px) {
  .values__grid {
    grid-template-columns: 1fr;
  }
  .community__slide {
    display: flex;
    flex-direction: column;
    min-height: 0;
  }
  .community__inner {
    min-height: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 28px;
    padding: 28px 0 40px;
  }
  .community__text {
    max-width: none;
  }
  .community__media {
    position: static;
    width: 100%;
    height: 260px;
    order: -1;
  }
  .community__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: right center;
    border-radius: 12px;
  }
  .community__controls {
    position: static;
    left: auto;
    bottom: auto;
    margin-top: 4px;
    justify-content: center;
    padding-bottom: 40px;
  }
}
@media (max-width: 720px) {
  .values {
    padding: 64px 0;
  }
  .values__title {
    font-size: 28px;
  }
  .values__name {
    font-size: 22px;
  }
  .community__title {
    font-size: 28px;
  }
  .community .btn {
    width: 100%;
  }
  .join {
    padding: 64px 0;
  }
  .join__card {
    padding: 36px 20px;
    border-radius: 16px;
  }
  .join__title {
    font-size: 26px;
  }
  .join__modal-card {
    padding: 40px 24px;
  }
  .join__success-title {
    font-size: 24px;
  }
  .join__success-lead {
    font-size: 16px;
  }
  .join__success-btn {
    min-width: 0;
    width: 100%;
  }
  .about-hero__title {
    font-size: 28px;
  }
  .about-hero__lead {
    font-size: 16px;
  }
  .about-hero__actions {
    flex-direction: column;
  }
  .about-hero__actions .btn {
    width: 100%;
  }
}
.team-page .header--solid {
  background: #FFFFFF;
  box-shadow: 0 1px 0 rgba(15, 61, 114, 0.08);
}
.team-page .header--solid .nav__link {
  color: #0F3D72;
}
.team-page .header--solid .nav__link:hover {
  color: #1B5CA8;
}
.team-page .header--solid .lang {
  color: #0F3D72;
  border-color: rgba(15, 61, 114, 0.35);
}
.team-page .header--solid .lang:hover {
  border-color: #0F3D72;
}
.team-page .header--solid .burger span {
  background: #0F3D72;
}
.team-page .header--solid .nav__link[aria-current=page] {
  color: #0F3D72;
  padding: 6px 16px;
  border-radius: 999px;
  background: #FFD700;
}
.team-page .header--solid .nav__link[aria-current=page]:hover {
  color: #0F3D72;
}

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

.team-page .breadcrumb--dark .breadcrumb__link {
  color: rgba(15, 61, 114, 0.75);
}
.team-page .breadcrumb--dark .breadcrumb__link:hover {
  color: #1B5CA8;
}
.team-page .breadcrumb--dark .breadcrumb__sep {
  color: rgba(15, 61, 114, 0.4);
}
.team-page .breadcrumb--dark .breadcrumb__current {
  color: #0F3D72;
  font-weight: 600;
}

.team {
  background: #FFFFFF;
}
.team__bc {
  padding: 28px 0 4px;
}

.member {
  position: relative;
  min-height: 600px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: #FFFFFF url("../assets/img/priorities/bg-watermark.svg") center/cover no-repeat;
}
.member__inner {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  min-height: 600px;
}
.member__text {
  max-width: 705px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.member__name {
  margin: 0;
  font-size: 44px;
  font-weight: 700;
  line-height: 1.3;
  text-transform: uppercase;
  color: #0F3D72;
}
.member__role {
  margin: -10px 0 0;
  font-size: 20px;
  font-weight: 500;
  line-height: 1.5;
  color: #1B5CA8;
}
.member__actions {
  display: flex;
  align-items: center;
  gap: 50px;
  margin-top: 6px;
}
.member__socials {
  display: flex;
  align-items: center;
  gap: 20px;
}
.member__social {
  display: block;
  width: 40px;
  height: 40px;
  flex: none;
  transition: transform 0.15s ease;
}
.member__social img {
  width: 100%;
  height: 100%;
  display: block;
}
.member__social:hover {
  transform: translateY(-2px);
}
.member__media {
  position: absolute;
  top: 0;
  right: 0;
  width: 50.5%;
  height: 100%;
  z-index: 1;
  clip-path: polygon(13% 0, 100% 0, 100% 100%, 0 100%);
}
.member__photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}
.member--reverse .member__media {
  right: auto;
  left: 0;
  width: 49.5%;
  clip-path: polygon(0 0, 100% 0, 87% 100%, 0 100%);
}
.member--reverse .member__inner {
  justify-content: flex-end;
}
.member--reverse .member__photo {
  object-position: center top;
}

@media (max-width: 1100px) {
  .member {
    min-height: 0;
    background-position: center;
  }
  .member__inner,
  .member--reverse .member__inner {
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    min-height: 0;
    padding: 0 0 40px;
  }
  .member__media,
  .member--reverse .member__media {
    position: static;
    width: 100%;
    height: 320px;
    margin: 0 0 28px;
    order: -1;
    clip-path: none;
  }
  .member__photo {
    border-radius: 12px;
  }
  .member__text {
    max-width: none;
  }
}
@media (max-width: 720px) {
  .team__bc {
    padding: 20px 0 4px;
  }
  .member__name {
    font-size: 28px;
  }
  .member__role {
    font-size: 16px;
  }
  .member__media {
    height: 240px;
  }
  .member__actions {
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
  }
  .member__btn {
    width: 100%;
  }
}
.program-hero {
  position: relative;
  min-height: 850px;
  display: flex;
  align-items: center;
  overflow: hidden;
  color: #FFFFFF;
  background: #0F3D72 url("../assets/img/hero-bg.png") center/cover no-repeat;
}
.program-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(7, 26, 58, 0.45) 0%, rgba(7, 26, 58, 0.15) 55%, rgba(7, 26, 58, 0.35) 100%);
}
.program-hero__bc {
  position: absolute;
  top: 120px;
  left: 0;
  right: 0;
  z-index: 3;
}
.program-hero__inner {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 60px;
  width: 100%;
  padding: 80px 0 0;
}
.program-hero__art {
  flex: none;
  width: 480px;
  max-width: 36vw;
}
.program-hero__art img {
  display: block;
  width: 100%;
  height: auto;
}
.program-hero__title {
  margin: 0;
  max-width: 778px;
  font-size: clamp(30px, 3.2vw, 50px);
  font-weight: 700;
  line-height: 1.5;
  text-transform: uppercase;
  color: #FFFFFF;
}
.program-hero__title-accent {
  color: #FFD700;
}

.program {
  position: relative;
  overflow: hidden;
  padding: 120px 0;
  background: #F8FAFB url("../assets/img/priorities/bg-watermark.svg") center/cover no-repeat;
}
.program > .container {
  position: relative;
  z-index: 1;
}
.program__title {
  margin: 0 0 40px;
  font-size: 44px;
  font-weight: 700;
  line-height: 1.5;
  text-transform: uppercase;
  color: #0F3D72;
}
.program__content {
  display: flex;
  align-items: flex-start;
  gap: 40px;
}
.program__tabs {
  flex: none;
  width: 390px;
  padding: 20px;
  border-radius: 8px;
  background: linear-gradient(140deg, #3280B0 4.77%, #005BA9 93.88%);
}
.program__tablist {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.program__tab {
  font-size: 18px;
  font-weight: 400;
  line-height: 1.4;
  color: #FFFFFF;
  cursor: pointer;
}
.program__tab:not(:last-child) {
  padding-bottom: 20px;
  border-bottom: 1px solid #66A2CA;
}
.program__tab--active {
  align-self: stretch;
  padding: 16px 20px;
  border: none;
  border-radius: 999px;
  font-size: 16px;
  font-weight: 500;
  color: #1B5CAB;
  background: #FFD700;
}
.program__tab:not(.program__tab--active):hover {
  color: #FFD700;
}
.program__panel {
  flex: 1 1 0;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 30px;
}
.program__intro {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.program__panel-title {
  margin: 0;
  font-size: 32px;
  font-weight: 700;
  line-height: 1.5;
  text-transform: uppercase;
  color: #0F3D72;
}
.program__lead {
  margin: 0;
  font-size: 20px;
  font-weight: 500;
  line-height: 1.6;
  color: #1B5CA8;
}
.program__steps {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.program__steps-title {
  margin: 0;
  font-size: 24px;
  font-weight: 700;
  line-height: 1.5;
  text-transform: uppercase;
  color: #0F3D72;
}
.program__step {
  margin: 0;
  font-size: 20px;
  font-weight: 500;
  line-height: 1.6;
  color: #1B5CA8;
}
.program__step strong {
  font-weight: 700;
}

@media (max-width: 1100px) {
  .program-hero {
    min-height: 0;
    padding: 40px 0;
  }
  .program-hero__inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 32px;
    padding-top: 80px;
  }
  .program-hero__art {
    width: 300px;
    max-width: 60%;
  }
  .program-hero__title {
    font-size: 34px;
  }
  .program {
    padding: 80px 0;
  }
  .program__content {
    flex-direction: column;
  }
  .program__tabs {
    width: 100%;
  }
  .program__tablist {
    gap: 16px;
  }
}
@media (max-width: 720px) {
  .program-hero__art {
    width: 220px;
  }
  .program-hero__title {
    font-size: 26px;
    line-height: 1.4;
  }
  .program {
    padding: 56px 0;
  }
  .program__title {
    font-size: 28px;
  }
  .program__panel-title {
    font-size: 24px;
  }
  .program__lead {
    font-size: 17px;
  }
  .program__steps-title {
    font-size: 20px;
  }
  .program__step {
    font-size: 17px;
  }
}
.regions-page {
  background: #F8FAFB;
}

.regions-page .header--solid {
  background: #1B5CA8;
}

.regions {
  padding-top: 80px;
}

.regions .breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 16px;
  line-height: 1.4;
}
.regions .breadcrumb__link {
  color: #0F3D72;
  text-decoration: none;
}
.regions .breadcrumb__link:hover {
  color: #1B5CA8;
}
.regions .breadcrumb__sep {
  color: rgba(15, 61, 114, 0.4);
}
.regions .breadcrumb__current {
  color: #1B5CA8;
  font-weight: 600;
}

.reg-hero {
  padding: 40px 0 80px;
}
.reg-hero__bc {
  margin-bottom: 38px;
}
.reg-hero__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
}
.reg-hero__info {
  flex: 0 1 705px;
  display: flex;
  flex-direction: column;
  gap: 40px;
}
.reg-hero__title {
  margin: 0;
  font-size: 44px;
  font-weight: 700;
  line-height: 1.3;
  text-transform: uppercase;
  color: #0F3D72;
}
.reg-hero__contacts {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin: -16px 0 0;
  padding: 0;
  list-style: none;
}
.reg-hero__socials {
  display: flex;
  align-items: center;
  gap: 20px;
}
.reg-hero__actions {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  gap: 30px;
  margin-top: 6px;
}
.reg-hero__map {
  flex: 1;
  min-width: 0;
  display: flex;
  justify-content: center;
}
.reg-hero .region-map {
  width: 100%;
  max-width: 400px;
}
.reg-hero .ukr-map {
  margin: 0 auto;
}

.reg-contact {
  display: flex;
  align-items: center;
  gap: 10px;
}
.reg-contact__icon {
  width: 30px;
  height: 30px;
  flex: none;
  display: block;
}
.reg-contact__link, .reg-contact__text {
  font-size: 18px;
  font-weight: 600;
  line-height: 1.6;
  color: #1B5CA8;
  text-decoration: none;
}
.reg-contact__link:hover {
  color: #0F3D72;
}

.reg-social {
  display: block;
  width: 40px;
  height: 40px;
  flex: none;
  transition: transform 0.15s ease;
}
.reg-social img {
  width: 100%;
  height: 100%;
  display: block;
}
.reg-social:hover {
  transform: translateY(-2px);
}

.reg-news {
  padding: 100px 0;
}
.reg-news__title {
  margin: 0 0 40px;
  text-align: center;
  font-size: 44px;
  font-weight: 700;
  line-height: 1.5;
  text-transform: uppercase;
  color: #0F3D72;
}
.reg-news__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin: 0;
  padding: 0;
  list-style: none;
}

@media (max-width: 1100px) {
  .reg-hero {
    padding: 28px 0 64px;
  }
  .reg-hero__inner {
    flex-direction: column;
    align-items: stretch;
    gap: 40px;
  }
  .reg-hero__info {
    flex: 1 1 auto;
  }
  .reg-hero__map {
    width: 100%;
    max-width: 520px;
    margin: 0 auto;
  }
  .reg-hero__title {
    font-size: 34px;
  }
  .reg-news {
    padding: 72px 0;
  }
  .reg-news__title {
    font-size: 34px;
    margin-bottom: 32px;
  }
  .reg-news__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 720px) {
  .reg-hero__title {
    font-size: 28px;
  }
  .reg-hero__actions {
    flex-direction: column;
    align-items: stretch;
    gap: 16px;
  }
  .reg-hero__actions .btn {
    width: 100%;
  }
  .reg-contact__link,
  .reg-contact__text {
    font-size: 16px;
  }
  .reg-news {
    padding: 56px 0;
  }
  .reg-news__title {
    font-size: 28px;
  }
  .reg-news__grid {
    grid-template-columns: 1fr;
  }
}
.region-leader {
  position: relative;
  min-height: 600px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: #FFFFFF;
}
.region-leader__inner {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  min-height: 600px;
}
.region-leader__text {
  max-width: 705px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.region-leader__name {
  margin: 0;
  font-size: 44px;
  font-weight: 700;
  line-height: 1.3;
  text-transform: uppercase;
  color: #0F3D72;
}
.region-leader__role {
  margin: -10px 0 0;
  font-size: 20px;
  font-weight: 500;
  line-height: 1.5;
  color: #1B5CA8;
}
.region-leader__socials {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 6px;
}
.region-leader__social {
  display: block;
  width: 40px;
  height: 40px;
  flex: none;
  transition: transform 0.15s ease;
}
.region-leader__social img {
  width: 100%;
  height: 100%;
  display: block;
}
.region-leader__social:hover {
  transform: translateY(-2px);
}
.region-leader__media {
  position: absolute;
  top: 0;
  right: 0;
  width: 50.5%;
  height: 100%;
  z-index: 1;
}
.region-leader__photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}
.region-leader--reverse .region-leader__media {
  right: auto;
  left: 0;
}
.region-leader--reverse .region-leader__inner {
  justify-content: flex-end;
}
@media (max-width: 1100px) {
  .region-leader {
    min-height: 0;
  }
  .region-leader__inner {
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    min-height: 0;
    padding: 0 0 40px;
  }
  .region-leader--reverse .region-leader__inner {
    justify-content: flex-start;
  }
  .region-leader__media, .region-leader--reverse .region-leader__media {
    position: static;
    width: 100%;
    height: 320px;
    margin: 0 0 28px;
    order: -1;
  }
  .region-leader__photo {
    border-radius: 12px;
  }
  .region-leader__text {
    max-width: none;
  }
  .region-leader__name {
    font-size: 34px;
  }
}
@media (max-width: 720px) {
  .region-leader__name {
    font-size: 28px;
  }
  .region-leader__role {
    font-size: 16px;
  }
  .region-leader__media {
    height: 240px;
  }
}

.region-map {
  position: relative;
  width: 100%;
  min-height: 1px;
}
.region-map__svg {
  width: 100%;
  height: auto;
  display: block;
  overflow: visible;
}
.region-map__shape {
  fill: #1B5CA8;
  stroke: none;
}
.region-map__pin {
  position: absolute;
  transform: translate(-50%, -50%);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 9px 22px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.18);
  color: #FFFFFF;
  font-size: 22px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  white-space: nowrap;
  pointer-events: none;
}
.region-map__dot {
  width: 16px;
  height: 16px;
  flex: none;
  border-radius: 50%;
  background: #FFD700;
}
@media (max-width: 720px) {
  .region-map__pin {
    padding: 7px 16px;
    font-size: 18px;
    gap: 8px;
  }
  .region-map__dot {
    width: 13px;
    height: 13px;
  }
}

.gallery {
  padding: 0 0 100px;
}
.gallery__title {
  margin: 0 0 40px;
  text-align: center;
  font-size: 44px;
  font-weight: 700;
  line-height: 1.5;
  text-transform: uppercase;
  color: #0F3D72;
}
.gallery__grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-auto-rows: 505px;
  gap: 20px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.gallery__item {
  margin: 0;
  overflow: hidden;
  border-radius: 12px;
}
.gallery__link {
  display: block;
  width: 100%;
  height: 100%;
  cursor: zoom-in;
}
.gallery__link img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.35s ease;
}
.gallery__link:hover img, .gallery__link:focus-visible img {
  transform: scale(1.05);
}
.gallery__link:focus-visible {
  outline: 3px solid #FFD700;
  outline-offset: -3px;
}
.gallery__item--a {
  grid-column: 1/8;
}
.gallery__item--b {
  grid-column: 8/13;
}
.gallery__item--c {
  grid-column: 1/6;
}
.gallery__item--d {
  grid-column: 6/11;
}
.gallery__item--e {
  grid-column: 11/13;
}
.gallery__item--f {
  grid-column: 1/6;
}
.gallery__item--g {
  grid-column: 6/13;
}
@media (max-width: 1100px) {
  .gallery {
    padding-bottom: 72px;
  }
  .gallery__title {
    font-size: 34px;
    margin-bottom: 32px;
  }
  .gallery__grid {
    grid-auto-rows: 320px;
  }
}
@media (max-width: 720px) {
  .gallery {
    padding-bottom: 56px;
  }
  .gallery__title {
    font-size: 28px;
  }
  .gallery__grid {
    grid-template-columns: 1fr;
    grid-auto-rows: 220px;
  }
  .gallery__item {
    grid-column: 1/-1 !important;
  }
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 40px;
  background: rgba(8, 18, 40, 0.93);
}
.lightbox.is-open {
  display: flex;
}
.lightbox__stage {
  margin: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  max-width: 90vw;
}
.lightbox__img {
  max-width: 90vw;
  max-height: 82vh;
  object-fit: contain;
  border-radius: 8px;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.55);
}
.lightbox__caption {
  color: rgba(255, 255, 255, 0.85);
  font-size: 15px;
  line-height: 1.4;
  text-align: center;
}
.lightbox__close {
  position: absolute;
  top: 20px;
  right: 24px;
  width: 48px;
  height: 48px;
  font-size: 30px;
  line-height: 1;
  color: #FFFFFF;
  background: none;
  cursor: pointer;
}
.lightbox__nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  font-size: 38px;
  line-height: 1;
  color: #FFFFFF;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 50%;
  cursor: pointer;
  transition: background 0.15s ease;
}
.lightbox__nav:hover {
  background: rgba(255, 255, 255, 0.22);
}
.lightbox__nav--prev {
  left: 24px;
}
.lightbox__nav--next {
  right: 24px;
}
.lightbox__counter {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 22px;
  text-align: center;
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
}
@media (max-width: 720px) {
  .lightbox {
    padding: 16px;
  }
  .lightbox__close {
    top: 10px;
    right: 12px;
  }
  .lightbox__nav {
    width: 44px;
    height: 44px;
    font-size: 30px;
  }
  .lightbox__nav--prev {
    left: 8px;
  }
  .lightbox__nav--next {
    right: 8px;
  }
}

body.is-lightbox-open {
  overflow: hidden;
}

.spilnota-page {
  background: #F8FAFB;
}

.spilnota-page .header--solid {
  background: #1B5CA8;
}

.spilnota-hero__bc.breadcrumb {
  font-size: 14px;
}
.spilnota-hero__bc .breadcrumb__link {
  color: #0F3D72;
}
.spilnota-hero__bc .breadcrumb__link:hover {
  color: #1B5CA8;
}
.spilnota-hero__bc .breadcrumb__sep {
  color: rgba(15, 61, 114, 0.5);
}
.spilnota-hero__bc .breadcrumb__current {
  color: #1B5CA8;
}

.spilnota-hero {
  position: relative;
  background: #FFFFFF;
  padding-top: 80px;
  overflow: hidden;
}
.spilnota-hero__inner {
  position: relative;
  z-index: 2;
  min-height: 520px;
  padding: 40px 0 60px;
}
.spilnota-hero__bc {
  margin-bottom: 36px;
}
.spilnota-hero__text {
  max-width: 705px;
}
.spilnota-hero__title {
  margin: 0 0 24px;
  font-size: 44px;
  font-weight: 700;
  line-height: 1.5;
  color: #0F3D72;
}
.spilnota-hero__lead p {
  margin: 0 0 20px;
  font-size: 20px;
  font-weight: 500;
  line-height: 1.6;
  color: #1B5CA8;
}
.spilnota-hero__lead p:last-child {
  margin-bottom: 0;
}
.spilnota-hero__media {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 50.5%;
  z-index: 1;
  clip-path: polygon(13% 0, 100% 0, 100% 100%, 0 100%);
}
.spilnota-hero__flag {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

@media (max-width: 1100px) {
  .spilnota-hero__inner {
    min-height: 0;
    padding-bottom: 40px;
  }
  .spilnota-hero__text {
    max-width: none;
  }
  .spilnota-hero__media {
    position: relative;
    width: 100%;
    height: 240px;
    clip-path: none;
    margin-top: 28px;
  }
}
@media (max-width: 720px) {
  .spilnota-hero__title {
    font-size: 28px;
  }
  .spilnota-hero__lead p {
    font-size: 16px;
  }
}
.leader {
  position: relative;
  display: flex;
  min-height: 600px;
  background: #F8FAFB url("../assets/img/spilnota/leader-bg.svg") center/cover no-repeat;
  overflow: hidden;
}
.leader__photo {
  position: relative;
  width: 49.5%;
  flex: none;
  background: #EDEFF2;
  clip-path: polygon(0 0, 100% 0, 87% 100%, 0 100%);
}
.leader__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}
.leader__panel {
  position: relative;
  flex: 1;
  background: transparent;
}
.leader__inner {
  position: relative;
  z-index: 1;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 24px;
  padding: 60px 60px 60px 56px;
}
.leader__name {
  margin: 0;
  font-size: 44px;
  font-weight: 700;
  line-height: 1.3;
  text-transform: uppercase;
  color: #0F3D72;
}
.leader__role {
  margin: 0;
  font-size: 24px;
  font-weight: 600;
  line-height: 1.6;
  color: #1B5CA8;
}
.leader__socials {
  display: flex;
  gap: 20px;
}
.leader__social {
  display: inline-flex;
  width: 40px;
  height: 40px;
  transition: transform 0.15s, opacity 0.15s;
}
.leader__social svg {
  width: 100%;
  height: 100%;
  display: block;
}
.leader__social:hover {
  transform: translateY(-2px);
  opacity: 0.85;
}
.leader__nav {
  position: absolute;
  left: 56px;
  bottom: 72px;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 22px;
}
.leader__arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 32px;
  background: none;
  border: none;
  cursor: pointer;
  color: #FFD700;
}
.leader__arrow:hover {
  color: #F4C500;
}
.leader__arrow--prev {
  color: #E8F0F8;
}
.leader__arrow--prev:hover {
  color: #1B5CA8;
}
.leader__arrow-icon {
  width: 40px;
  height: 2px;
  position: relative;
  background: currentColor;
}
.leader__arrow-icon::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 12px;
  height: 12px;
  border-top: 2px solid currentColor;
  border-right: 2px solid currentColor;
}
.leader__arrow--next .leader__arrow-icon::after {
  right: 0;
  transform: translateY(-50%) rotate(45deg);
}
.leader__arrow--prev .leader__arrow-icon::after {
  left: 0;
  transform: translateY(-50%) rotate(-135deg);
}

@media (max-width: 1100px) {
  .leader {
    flex-direction: column;
    min-height: 0;
  }
  .leader__photo {
    width: 100%;
    height: 360px;
    clip-path: none;
  }
  .leader__inner {
    padding: 40px;
  }
  .leader__nav {
    position: static;
    left: auto;
    bottom: auto;
    padding: 0 40px 40px;
  }
}
@media (max-width: 720px) {
  .leader__name {
    font-size: 28px;
  }
  .leader__role {
    font-size: 18px;
  }
  .leader__photo {
    height: 280px;
  }
  .leader__inner {
    padding: 32px 20px;
    gap: 18px;
  }
}
.leaders-hero {
  padding: calc(80px + 44px) 0 8px;
}
.leaders-hero__title {
  margin: 20px 0 0;
  font-size: 44px;
  font-weight: 700;
  line-height: 1.3;
  text-transform: uppercase;
  color: #0F3D72;
}
@media (max-width: 720px) {
  .leaders-hero {
    padding-top: calc(80px + 28px);
  }
  .leaders-hero__title {
    font-size: 28px;
  }
}

.initiatives {
  padding: 120px 0;
  background: #F8FAFB url("../assets/img/spilnota/initiatives-bg.svg") left top/auto 100% no-repeat;
}
.initiatives__title {
  margin: 0 0 50px;
  text-align: center;
  font-size: 44px;
  font-weight: 700;
  line-height: 1.5;
  text-transform: uppercase;
  color: #0F3D72;
}
.initiatives__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  column-gap: 20px;
  row-gap: 50px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.initiatives__card {
  display: flex;
}
.initiatives__link {
  flex: 1;
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: #0F3D72;
}
.initiatives__link:hover .initiatives__img, .initiatives__link:focus-visible .initiatives__img {
  transform: translateY(-6px);
}
.initiatives__link:hover .initiatives__label, .initiatives__link:focus-visible .initiatives__label {
  color: #1B5CA8;
}
.initiatives__link:focus-visible {
  outline: 2px solid #1B5CA8;
  outline-offset: 4px;
  border-radius: 4px;
}
.initiatives__img {
  width: 100%;
  height: auto;
  display: block;
  aspect-ratio: 527/391;
  object-fit: cover;
  clip-path: polygon(35% 0, 100% 0, 65% 100%, 0 100%);
  transition: transform 0.2s ease;
}
.initiatives__label {
  margin-top: 20px;
  max-width: 410px;
  font-size: 24px;
  font-weight: 700;
  line-height: 1.5;
  color: #0F3D72;
  transition: color 0.2s ease;
}
@media (max-width: 1100px) {
  .initiatives {
    padding: 80px 0;
    background-size: auto 60%;
  }
  .initiatives__title {
    font-size: 34px;
    margin-bottom: 36px;
  }
  .initiatives__grid {
    grid-template-columns: repeat(2, 1fr);
    row-gap: 36px;
  }
  .initiatives__label {
    font-size: 20px;
  }
}
@media (max-width: 720px) {
  .initiatives {
    padding: 56px 0;
  }
  .initiatives__title {
    font-size: 28px;
  }
  .initiatives__grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }
}

.page {
  background: #FFFFFF;
}
.page__hero {
  background: #1B5CA8;
  color: #FFFFFF;
  padding-top: 80px;
}
.page__hero-inner {
  padding: 56px 0;
}
.page__title {
  margin: 0;
  font-size: 44px;
  font-weight: 700;
  line-height: 1.3;
  text-transform: uppercase;
  color: #FFFFFF;
}
.page__body {
  padding: 60px 0 100px;
  background: #F8FAFB;
}
.page__prose {
  max-width: 820px;
}
.page__prose p {
  margin: 0 0 20px;
  font-size: 18px;
  line-height: 1.7;
  color: #2A3354;
}
.page__prose p:last-child {
  margin-bottom: 0;
}
.page__prose h2 {
  margin: 32px 0 16px;
  font-size: 26px;
  font-weight: 700;
  color: #0F3D72;
}
.page__updated {
  margin-top: 36px;
  font-size: 14px;
  color: #66A2CA;
}
@media (max-width: 720px) {
  .page__title {
    font-size: 28px;
  }
  .page__hero-inner {
    padding: 40px 0;
  }
  .page__body {
    padding: 40px 0 64px;
  }
  .page__prose p {
    font-size: 16px;
  }
}

.article-page {
  padding-top: 80px;
  background: #F8FAFB url("../assets/img/news/article-watermark.svg") left top repeat-y;
}

.article-page .header--solid {
  background: #1B5CA8;
}
.article-page .header--solid .nav__link[aria-current=page] {
  color: #0F3D72;
  padding: 6px 12px;
  border-radius: 4px;
  background: #FFD700;
}
.article-page .header--solid .nav__link[aria-current=page]:hover {
  color: #0F3D72;
}

.article-page .breadcrumb--dark {
  font-size: 14px;
  letter-spacing: 0.28px;
}
.article-page .breadcrumb--dark .breadcrumb__link {
  color: #0F3D72;
}
.article-page .breadcrumb--dark .breadcrumb__link:hover {
  color: #1B5CA8;
}
.article-page .breadcrumb--dark .breadcrumb__sep {
  color: rgba(15, 61, 114, 0.4);
}
.article-page .breadcrumb--dark .breadcrumb__current {
  color: #1B5CA8;
  font-weight: 600;
}

.article {
  padding-bottom: 90px;
}
.article__bc {
  padding: 26px 0 22px;
}
.article__layout {
  display: flex;
  align-items: flex-start;
  gap: 40px;
}
.article__main {
  flex: 1;
  min-width: 0;
}
.article__aside {
  flex: 0 0 390px;
}
.article__title {
  margin: 0 0 20px;
  font-size: 34px;
  font-weight: 600;
  line-height: 1.4;
  color: #0F3D72;
}
.article__meta {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 24px;
  font-size: 20px;
  text-transform: uppercase;
}
.article__date {
  color: #1B5CA8;
}
.article__read {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #4BAFD4;
}
.article__read svg {
  width: 20px;
  height: 20px;
}
.article__prose {
  font-size: 20px;
  line-height: 1.4;
  color: #0F3D72;
}
.article__prose p {
  margin: 0 0 20px;
}
.article__prose h2 {
  margin: 40px 0 20px;
  font-size: 28px;
  font-weight: 600;
  line-height: 1.4;
  color: #0F3D72;
}
.article__prose ul {
  margin: 0 0 20px;
  padding-left: 24px;
  list-style: disc;
}
.article__prose li {
  margin: 0 0 12px;
}
.article__prose li::marker {
  color: #0F3D72;
}
.article__prose strong {
  font-weight: 700;
}
.article__prose img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 20px;
  margin: 8px 0 32px;
}
.article__prose a {
  color: #1B5CA8;
  text-decoration: underline;
}
.article__share {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-top: 40px;
  padding: 40px;
  border-radius: 20px;
  background: linear-gradient(177deg, #3280B0 5%, #005BA9 94%);
}
.article__share-label {
  font-size: 20px;
  font-weight: 500;
  color: #FFFFFF;
}
.article__socials {
  display: flex;
  align-items: center;
  gap: 20px;
}
.article__social {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border: 0.5px solid #FFFFFF;
  border-radius: 50%;
  color: #FFFFFF;
  transition: background 0.15s, color 0.15s;
}
.article__social svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}
.article__social:hover {
  background: #FFFFFF;
  color: #005BA9;
}
.article__aside-title {
  margin: 0 0 20px;
  font-size: 22px;
  font-weight: 700;
  color: #0F3D72;
}
.article__recent {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
@media (max-width: 1100px) {
  .article__layout {
    flex-direction: column;
  }
  .article__aside {
    flex: none;
    width: 100%;
  }
  .article__title {
    font-size: 30px;
  }
}
@media (max-width: 720px) {
  .article__title {
    font-size: 26px;
  }
  .article__meta {
    font-size: 16px;
    gap: 16px;
  }
  .article__prose {
    font-size: 17px;
  }
  .article__prose h2 {
    font-size: 23px;
  }
  .article__share {
    flex-direction: column;
    align-items: flex-start;
    padding: 28px;
  }
}

.audioplayer {
  display: flex;
  align-items: center;
  gap: 15px;
  margin: 0 0 30px;
  padding: 8px 14px;
  border-radius: 10px;
  background: #E8F0F8;
  overflow: hidden;
}
.audioplayer__btn {
  flex: none;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #FFD700;
  color: #0F3D72;
  cursor: pointer;
  transition: filter 0.15s;
}
.audioplayer__btn svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}
.audioplayer__btn:hover {
  filter: brightness(0.95);
}
.audioplayer__wave {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 6px;
  height: 38px;
  cursor: pointer;
  overflow: hidden;
}
.audioplayer__bar {
  flex: none;
  width: 4px;
  border-radius: 10px;
  background: #0F3D72;
  opacity: 0.66;
  transition: opacity 0.1s;
}
.audioplayer__bar.is-played {
  opacity: 1;
}
.audioplayer__time {
  flex: none;
  font-size: 18px;
  color: #0F3D72;
  font-variant-numeric: tabular-nums;
}
.audioplayer__volume {
  flex: none;
  display: flex;
  width: 30px;
  height: 30px;
  color: #0F3D72;
}
.audioplayer__volume svg {
  width: 100%;
  height: 100%;
}
@media (max-width: 720px) {
  .audioplayer {
    gap: 10px;
  }
  .audioplayer__wave {
    height: 32px;
  }
  .audioplayer__time {
    font-size: 16px;
  }
}

@media (max-width: 1100px) {
  .nav,
  .header .lang {
    display: none;
  }
  .burger {
    display: flex;
  }
  .hero__inner {
    gap: 32px;
  }
  .hero__title {
    font-size: 38px;
    line-height: 1.25;
  }
  .hero__art {
    width: 320px;
    max-width: 32vw;
  }
  .stats__title {
    font-size: 34px;
    margin-bottom: 32px;
  }
  .stats__grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .stats__num {
    font-size: 64px;
  }
  .news__content {
    flex-direction: column;
  }
  .news__grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .news-live {
    width: 100%;
    order: -1;
  }
  .news-live__list {
    overflow: visible;
    padding-right: 0;
  }
}
@media (max-width: 720px) {
  .container {
    width: min(100% - 32px, 1620px);
  }
  .hero {
    min-height: 0;
    padding: 104px 0 56px;
  }
  .hero__inner {
    flex-direction: column;
    align-items: stretch;
  }
  .hero__content {
    gap: 26px;
  }
  .hero__art {
    display: none;
  }
  .hero__title {
    font-size: 28px;
    line-height: 1.3;
  }
  .hero__actions {
    flex-direction: column;
    gap: 16px;
  }
  .hero__actions .btn {
    width: 100%;
  }
  .logo__img {
    height: 46px;
  }
  .stats__title {
    font-size: 28px;
  }
  .stats__grid {
    grid-template-columns: 1fr;
  }
  .stats__num {
    font-size: 56px;
  }
  .priorities__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px 16px;
  }
  .priorities__label {
    font-size: 14px;
    margin-top: 12px;
  }
  .news__grid {
    grid-template-columns: 1fr;
  }
  .map__btn {
    width: 100%;
    align-self: stretch;
  }
  .footer__actions {
    width: 100%;
  }
  .footer__actions .btn {
    width: 100%;
  }
  .footer__socials {
    order: -1;
  }
}
