@font-face {
  font-family: "Gotham Pro";
  src: url("../assets/fonts/gotham-pro/GothamPro-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Gotham Pro";
  src: url("../assets/fonts/gotham-pro/GothamPro-Medium.ttf") format("truetype");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Gotham Pro";
  src: url("../assets/fonts/gotham-pro/GothamPro-Bold.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Gilroy";
  src: url("../assets/fonts/gilroy/Gilroy-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Gilroy";
  src: url("../assets/fonts/gilroy/Gilroy-Medium.ttf") format("truetype");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Gilroy";
  src: url("../assets/fonts/gilroy/Gilroy-SemiBold.ttf") format("truetype");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Gilroy";
  src: url("../assets/fonts/gilroy/Gilroy-Bold.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Gotham Pro", "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;
}

input, textarea, select {
  color-scheme: light;
}

.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, background 0.15s ease;
}
.btn:hover:not(:disabled) {
  transform: translateY(-2px);
}
.btn:disabled {
  background: #A3A3A3;
  color: #626262;
  cursor: not-allowed;
}
.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:not(:disabled) {
  background: #DEBE15;
}
.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;
}
.header--solid {
  background: #1B5CA8;
}
.header--solid .nav__link[aria-current=page] {
  color: #0F3D72;
  background: #FFD700;
}
.header--solid .nav__link[aria-current=page]:hover {
  color: #0F3D72;
}
.header--solid .lang {
  border-color: #FFFFFF;
}

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

.nav {
  display: flex;
  align-items: center;
  gap: 0;
}
.nav__link {
  padding: 6px 20px;
  border-radius: 999px;
  font-family: "Gotham Pro";
  font-size: 16px;
  font-weight: 600;
  line-height: 24px;
  white-space: nowrap;
  color: #FFFFFF;
  background: transparent;
  transition: color 0.15s, opacity 0.15s, background 0.15s;
}
.nav__link:hover {
  color: #FFD700;
}

.nav__more {
  position: relative;
  display: none;
  align-items: center;
}

.nav__more-btn {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  height: 24px;
  padding: 4px 6px;
  background: none;
  border: 0;
  cursor: pointer;
}
.nav__more-btn span {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #FFFFFF;
  transition: background 0.15s;
}
.nav__more-btn:hover span {
  background: #FFD700;
}

.nav__more-menu {
  position: absolute;
  top: calc(100% + 14px);
  right: 0;
  min-width: 210px;
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding: 10px;
  border-radius: 8px;
  background: #0F3D72;
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.28);
  z-index: 30;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px);
  transition: opacity 0.15s ease, transform 0.15s ease, visibility 0.15s;
}
.nav__more.is-open .nav__more-menu {
  opacity: 1;
  visibility: visible;
  transform: none;
}

.nav__more-link {
  padding: 10px 12px;
  border-radius: 6px;
  font-size: 15px;
  font-weight: 600;
  line-height: 1.2;
  white-space: nowrap;
  color: #FFFFFF;
  transition: background 0.15s, color 0.15s;
}
.nav__more-link:hover {
  background: rgba(255, 255, 255, 0.1);
  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;
}

.lang-switch {
  position: relative;
  display: flex;
  align-items: center;
}

.lang-switch__btn[aria-expanded=true] {
  border-color: #FFFFFF;
}

.lang-switch__menu {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  min-width: 168px;
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding: 8px;
  border-radius: 8px;
  background: #0F3D72;
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.28);
  z-index: 30;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px);
  transition: opacity 0.15s ease, transform 0.15s ease, visibility 0.15s;
}
.lang-switch.is-open .lang-switch__menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.lang-switch__item {
  display: flex;
  align-items: baseline;
  gap: 8px;
  padding: 9px 12px;
  border-radius: 6px;
  font-size: 15px;
  font-weight: 600;
  line-height: 1.2;
  white-space: nowrap;
  color: #FFFFFF;
  transition: background 0.15s, color 0.15s;
}
.lang-switch__item:hover {
  background: rgba(255, 255, 255, 0.1);
  color: #FFD700;
}
.lang-switch__item.is-active {
  color: #FFD700;
}

.lang-switch__name {
  font-size: 13px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.65);
}
.lang-switch__item:hover .lang-switch__name, .lang-switch__item.is-active .lang-switch__name {
  color: rgba(255, 215, 0, 0.75);
}

.burger {
  display: none;
  align-items: center;
  justify-content: center;
  padding: 8px;
  color: #FFFFFF;
  background: none;
}
.burger__icon {
  width: 24px;
  height: 24px;
  display: block;
}

.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: 40px;
  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;
  gap: 28px;
  margin-top: 32px;
}
.m-menu__link {
  font-size: 22px;
  font-weight: 500;
  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: 54px;
}

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%;
  }
  .news-live__list {
    flex: 0 1 auto;
    max-height: 360px;
  }
}
@media (max-width: 720px) {
  .news {
    padding: 56px 0;
  }
  .news__title {
    font-size: 28px;
  }
  .news__grid {
    grid-template-columns: 1fr;
  }
  .news-live {
    padding: 8px 16px 16px;
  }
  .news-live__head {
    padding-bottom: 12px;
    margin-bottom: 12px;
  }
  .news-live__heading {
    font-size: 22px;
  }
  .news-live__status {
    font-size: 16px;
  }
  .news-live__dot {
    width: 10px;
    height: 10px;
  }
  .news-live__num {
    font-size: 20px;
  }
  .news-live__text {
    font-size: 16px;
  }
  .news-live__list {
    max-height: none;
    overflow: visible;
    gap: 16px;
    padding-right: 0;
  }
  .news-live__item {
    padding-bottom: 16px;
  }
  .news-live__item:nth-child(n+8) {
    display: none;
  }
  .news-live__item:nth-child(7) {
    padding-bottom: 0;
    border-bottom: none;
  }
}
.news-scope {
  margin-bottom: 16px;
}
.news-scope__select {
  height: 44px;
  padding: 0 40px 0 16px;
  border: 1px solid #1B5CA8;
  border-radius: 999px;
  background: transparent;
  color: #1B5CA8;
  font: 500 16px "Gotham Pro", "Montserrat", system-ui, -apple-system, "Segoe UI", sans-serif;
  appearance: none;
  -webkit-appearance: none;
  cursor: pointer;
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' fill='none'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%231B5CA8' stroke-width='2' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
}

@media (max-width: 720px) {
  .news-scope__select {
    height: 38px;
    font-size: 14px;
  }
}
.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: clamp(12px, 11.3px + 0.19vw, 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: clamp(18px, 15.9px + 0.56vw, 24px);
  font-weight: 700;
  line-height: 1.4;
  color: #0F3D72;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  overflow: hidden;
}
.news-card__text {
  font-size: clamp(12px, 11.3px + 0.19vw, 14px);
  font-weight: 400;
  line-height: 1.4;
  color: #0F3D72;
}
.news-card__meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: clamp(12px, 11.3px + 0.19vw, 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;
  gap: 125px;
}
.footer__brand {
  align-self: flex-start;
}
.footer__brand-logo {
  height: 100px;
  width: auto;
  max-width: 100%;
  display: block;
}
.footer__nav {
  display: flex;
  gap: 110px;
}
.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, 3), auto);
  grid-auto-columns: max-content;
  column-gap: 80px;
  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__field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.join__row {
  display: flex;
  gap: 24px;
}
.join__row > * {
  flex: 0 0 393px;
  min-width: 0;
}
.join__select-wrap {
  position: relative;
  width: 100%;
}
.join__select-wrap::after {
  content: "";
  position: absolute;
  right: 16px;
  top: 50%;
  width: 7px;
  height: 7px;
  border-right: 1.5px solid #FFFFFF;
  border-bottom: 1.5px solid #FFFFFF;
  transform: translateY(-65%) rotate(45deg);
  pointer-events: none;
}
.join__select {
  width: 100%;
  height: 52px;
  padding: 0 40px 0 16px;
  border: 1px solid #FFFFFF;
  border-radius: 8px;
  background: transparent;
  color: #FFFFFF;
  font: 400 16px "Gotham Pro", "Montserrat", system-ui, -apple-system, "Segoe UI", sans-serif;
  appearance: none;
  -webkit-appearance: none;
  cursor: pointer;
}
.join__select option {
  color: #0F3D72;
}
.join__select:invalid {
  color: rgba(255, 255, 255, 0.85);
}
.join__input {
  width: 100%;
  height: 52px;
  padding: 0 16px;
  border: 1px solid #FFFFFF;
  border-radius: 8px;
  background: transparent;
  color: #FFFFFF;
  font: 400 16px "Gotham Pro", "Montserrat", system-ui, -apple-system, "Segoe UI", sans-serif;
  appearance: none;
  -webkit-appearance: none;
  transition: background 0.15s, border-color 0.15s;
}
.join__input::placeholder {
  color: rgba(255, 255, 255, 0.85);
}
.join__input:focus {
  outline: none;
  background: rgba(255, 255, 255, 0.1);
}
.join__input:not(:placeholder-shown):not(:focus):not(.is-invalid) {
  border-color: transparent;
  background: rgba(255, 255, 255, 0.3);
}
.join__input.is-invalid {
  border-color: #FFBAB6;
  background: rgba(255, 186, 182, 0.2);
  color: #FFBAB6;
}
.join__input.is-invalid::placeholder {
  color: rgba(255, 186, 182, 0.85);
}
.join__input:-webkit-autofill, .join__input:-webkit-autofill:hover, .join__input:-webkit-autofill:focus {
  border-color: transparent;
  -webkit-text-fill-color: #FFFFFF;
  -webkit-box-shadow: 0 0 0 1000px rgba(255, 255, 255, 0.3) inset;
  box-shadow: 0 0 0 1000px rgba(255, 255, 255, 0.3) inset;
  transition: background-color 600000s 0s, color 600000s 0s;
}
.join__input-error {
  margin: 0;
  padding: 0 4px;
  font-size: 12px;
  color: #FFBAB6;
}
.join__textarea {
  height: 104px;
  padding: 8px 16px;
  resize: none;
  font-family: inherit;
}
.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;
  background: rgba(255, 255, 255, 0.1);
}
.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;
  max-height: calc(100vh - 40px);
  overflow-y: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.join__modal-card::-webkit-scrollbar {
  display: none;
}
.join__modal-card {
  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__row {
    flex-direction: column;
    gap: 24px;
  }
  .join__row > * {
    flex-basis: auto;
    width: 100%;
  }
  .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 {
  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: 36px 0 4px;
  margin-bottom: -75px;
  position: relative;
  z-index: 3;
}

.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: 2;
  text-transform: uppercase;
  color: #0F3D72;
}
.member__role {
  margin: -10px 0 0;
  font-size: 24px;
  font-weight: 600;
  line-height: 1.6;
  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) {
  .team__bc {
    margin-bottom: 0;
  }
  .member {
    min-height: 0;
    flex-direction: column;
    align-items: stretch;
    background-position: center;
  }
  .member__media,
  .member--reverse .member__media {
    position: static;
    order: -1;
    width: 100%;
    height: 360px;
    margin: 0;
    clip-path: none;
  }
  .member__inner,
  .member--reverse .member__inner {
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    min-height: 0;
    padding-top: 28px;
    padding-bottom: 48px;
  }
  .member__text {
    max-width: none;
  }
}
@media (max-width: 720px) {
  .team__bc {
    padding: 16px 0 4px;
  }
  .member__media,
  .member--reverse .member__media {
    height: 300px;
  }
  .member__name {
    font-size: 26px;
  }
  .member__role {
    font-size: 16px;
  }
  .member__actions {
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
  }
  .member__btn {
    width: 100%;
    justify-content: center;
  }
}
.program-page {
  background: #F8FAFB;
}

.program-hero {
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
  color: #FFFFFF;
  background: #0F3D72 url("../assets/img/program/hero.png") center/cover no-repeat;
}
.program-hero__bc {
  position: absolute;
  top: 116px;
  left: 0;
  right: 0;
  z-index: 3;
}
.program-hero__inner {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: row-reverse;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  padding: 238px 0 137px;
}
.program-hero__text {
  width: 790px;
  margin-right: 104px;
}
.program-hero__title {
  margin: 0;
  font-size: 50px;
  font-weight: 700;
  line-height: 1.5;
  text-transform: uppercase;
  color: #FFFFFF;
}
.program-hero__title-accent {
  color: #FFD700;
}
.program-hero__art {
  flex: none;
  width: 480px;
  max-width: 38%;
  height: auto;
  display: block;
}
.program-hero__actions {
  display: none;
}
.program-hero__btn--support {
  background: #4BAFD4;
  border: 1px solid #FFFFFF;
  color: #FFFFFF;
}
.program-hero__btn--support:hover {
  background: #3aa3c9;
}

.program {
  position: relative;
  overflow: hidden;
  padding: 120px 0;
  background: #F8FAFB url("../assets/img/program/section-bg.svg") top center/1920px auto 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;
  gap: 40px;
  align-items: flex-start;
}
.program__tabs {
  flex: none;
  width: 390px;
  padding: 20px;
  border-radius: 8px;
  background: linear-gradient(140deg, #3280B0 4.77%, #005BA9 93.88%);
  display: flex;
  flex-direction: column;
}
.program__tab {
  text-align: left;
  font: 500 18px/1.4 "Gotham Pro", "Montserrat", system-ui, -apple-system, "Segoe UI", sans-serif;
  color: #FFFFFF;
  background: none;
  border: 0;
  border-top: 1px solid #66A2CA;
  padding: 18px 4px;
  cursor: pointer;
  transition: color 0.15s;
}
.program__tab:first-child {
  border-top: 0;
}
.program__tab:hover {
  color: #FFD700;
}
.program__tab.is-active {
  color: #1B5CA8;
  background: #FFD700;
  border-top: 0;
  border-radius: 50px;
  padding: 16px 20px;
}
.program__tab.is-active + .program__tab {
  border-top: 0;
}
.program__panel {
  flex: 1 1 0;
  min-width: 0;
}
.program__panel-title {
  margin: 0 0 20px;
  font-size: 32px;
  font-weight: 700;
  line-height: 1.5;
  text-transform: uppercase;
  color: #0F3D72;
}
.program__lead {
  margin: 0 0 30px;
  font-size: 20px;
  font-weight: 500;
  line-height: 1.6;
  color: #1B5CA8;
}
.program__steps-title {
  margin: 0 0 20px;
  font-size: 24px;
  font-weight: 700;
  line-height: 1.5;
  text-transform: uppercase;
  color: #0F3D72;
}
.program__steps {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.program__step {
  font-size: 20px;
  font-weight: 500;
  line-height: 1.6;
  color: #1B5CA8;
}
.program__step-label {
  font-weight: 700;
}

@media (max-width: 1100px) {
  .program-hero {
    min-height: 0;
    display: block;
    padding: calc(80px + 24px) 0 48px;
  }
  .program-hero__bc {
    position: static;
    margin-bottom: 24px;
  }
  .program-hero__inner {
    flex-direction: column;
    align-items: stretch;
    gap: 32px;
  }
  .program-hero__text {
    width: 100%;
    max-width: none;
    display: flex;
    flex-direction: column;
    gap: 28px;
  }
  .program-hero__title {
    font-size: 40px;
  }
  .program-hero__art {
    width: 320px;
    max-width: 60%;
    margin: 4px auto 0;
  }
  .program-hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
  }
  .program {
    padding: 72px 0;
  }
  .program__content {
    flex-direction: column;
  }
  .program__tabs {
    width: 100%;
  }
  .program__panel {
    width: 100%;
  }
}
@media (max-width: 720px) {
  .program-hero {
    padding: calc(80px + 16px) 0 40px;
  }
  .program-hero__title {
    font-size: 26px;
  }
  .program-hero__art {
    width: 240px;
    max-width: 78%;
  }
  .program-hero__actions {
    width: 100%;
  }
  .program-hero__btn {
    width: 100%;
    justify-content: center;
  }
  .program {
    padding: 56px 0;
  }
  .program__title {
    font-size: 28px;
  }
  .program__tabs {
    padding: 16px;
  }
  .program__panel-title {
    font-size: 22px;
  }
  .program__steps-title {
    font-size: 20px;
  }
  .program__lead, .program__step {
    font-size: 16px;
  }
}
.regions-page {
  background: #F8FAFB;
}

.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-family: "Gilroy", "Gotham Pro", "Montserrat", system-ui, -apple-system, "Segoe UI", sans-serif;
  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, .reg-social svg {
  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;
  }
}
.regions-index {
  padding: calc(80px + 40px) 0 90px;
  background: #F8FAFB;
}
.regions-index__bc {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-bottom: 24px;
  font-size: 14px;
  line-height: 22px;
  letter-spacing: 0.28px;
}
.regions-index__bc .breadcrumb__link {
  color: #0F3D72;
  text-decoration: none;
}
.regions-index__bc .breadcrumb__link:hover {
  color: #1B5CA8;
}
.regions-index__bc .breadcrumb__sep {
  color: rgba(15, 61, 114, 0.5);
  padding: 0 4px;
}
.regions-index__bc .breadcrumb__current {
  color: #1B5CA8;
  font-weight: 500;
}
.regions-index__title {
  margin: 0 0 43px;
  text-align: center;
  font-size: 44px;
  font-weight: 700;
  line-height: 1.5;
  text-transform: uppercase;
  color: #0F3D72;
}
.regions-index__actions {
  display: flex;
  justify-content: center;
  gap: 30px;
  margin-top: 40px;
}

.regmap {
  position: relative;
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  aspect-ratio: 797/535;
}
.regmap__svg {
  position: absolute;
  inset: 0;
}
.regmap__svg svg {
  width: 100%;
  height: 100%;
  display: block;
}
.regmap__svg svg path:not(.oblast) {
  display: none;
}
.regmap__svg .oblast {
  fill: #D8E2EC;
  stroke: #FFFFFF;
  stroke-width: 1;
  transition: fill 0.15s ease;
  outline: none;
}
.regmap__svg .oblast:focus, .regmap__svg .oblast:focus-visible {
  outline: none;
}
.regmap__svg .oblast.is-active {
  fill: #1B5CA8;
  stroke: rgba(255, 215, 0, 0.9);
}
.regmap__svg .oblast.is-active:hover, .regmap__svg .oblast.is-active:focus-visible {
  fill: #17508F;
}
.regmap__svg .oblast.is-current {
  fill: #0F3D72;
  stroke: #FFD700;
  stroke-width: 1.5;
}
.regmap__labels {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.regmap__pill {
  position: absolute;
  transform: translate(-50%, -50%);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 5px 10px;
  border: 0;
  border-radius: 50px;
  background: rgba(15, 61, 114, 0.55);
  color: #FFFFFF;
  font: 600 13px/1.2 "Gotham Pro", "Montserrat", system-ui, -apple-system, "Segoe UI", sans-serif;
  white-space: nowrap;
  backdrop-filter: blur(1px);
}
.regmap__pill-text {
  display: inline-block;
}
.regmap__pill .regmap__dot {
  width: 8px;
  height: 8px;
  flex: none;
  border-radius: 50%;
  background: #4BAFD4;
}
.regmap__pill.is-active {
  pointer-events: auto;
  cursor: pointer;
  background: rgba(15, 61, 114, 0.82);
  font-weight: 700;
  transition: transform 0.15s ease, background 0.15s ease;
}
.regmap__pill.is-active .regmap__dot {
  background: #FFD700;
}
.regmap__pill.is-active:hover {
  transform: translate(-50%, -50%) translateY(-2px);
  background: #0F3D72;
}
.regmap__pill.is-current {
  background: #FFD700;
  color: #0F3D72;
}
.regmap__pill.is-current .regmap__dot {
  background: #0F3D72;
}
.regmap__pill.is-current:hover {
  background: #FFD700;
}

@media (max-width: 1100px) {
  .regions-index {
    padding: calc(80px + 28px) 0 64px;
  }
  .regions-index__title {
    font-size: 34px;
  }
  .regmap__pill {
    font-size: 11px;
    padding: 4px 8px;
    gap: 6px;
  }
  .regmap__pill .regmap__dot {
    width: 6px;
    height: 6px;
  }
}
@media (max-width: 720px) {
  .regions-index__title {
    font-size: 26px;
  }
  .regions-index__actions {
    flex-direction: column;
    align-items: stretch;
    gap: 16px;
  }
  .regions-index__actions .btn {
    width: 100%;
  }
  .regmap__labels {
    display: none;
  }
}
.region-detail__hero {
  padding: calc(80px + 40px) 0 80px;
  background: #F8FAFB;
}
.region-detail__hero .region-detail__bc {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-bottom: 32px;
  font-size: 14px;
  line-height: 22px;
  letter-spacing: 0.28px;
}
.region-detail__hero .region-detail__bc .breadcrumb__link {
  color: #0F3D72;
  text-decoration: none;
}
.region-detail__hero .region-detail__bc .breadcrumb__link:hover {
  color: #1B5CA8;
}
.region-detail__hero .region-detail__bc .breadcrumb__sep {
  color: rgba(15, 61, 114, 0.5);
  padding: 0 4px;
}
.region-detail__hero .region-detail__bc .breadcrumb__current {
  color: #1B5CA8;
  font-weight: 500;
}

.region-detail__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
}

.region-detail__info {
  flex: 0 1 620px;
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.region-detail__title {
  margin: 0;
  font-size: 44px;
  font-weight: 700;
  line-height: 1.3;
  text-transform: uppercase;
  color: #0F3D72;
}

.region-detail__contacts {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.region-detail__socials {
  display: flex;
  align-items: center;
  gap: 20px;
}

.region-detail__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 4px;
}

.region-detail__map {
  flex: 1 1 0;
  min-width: 0;
}
.region-detail__map .regshape {
  max-width: 394px;
  margin-left: auto;
}

.regshape {
  container-type: inline-size;
  position: relative;
  width: 100%;
  margin: 0 auto;
}
.regshape__svg {
  position: absolute;
  inset: 0;
}
.regshape__svg svg {
  display: block;
  width: 100%;
  height: 100%;
}
.regshape__svg .oblast {
  fill: #1B5CA8;
  stroke: none;
  outline: none;
}
.regshape--planned .regshape__svg .oblast {
  fill: #D8E2EC;
}
.regshape--planned .regshape__pill {
  background: rgba(15, 61, 114, 0.82);
}
.regshape--planned .regshape__dot {
  background: #4BAFD4;
}
.regshape__pill {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  display: inline-flex;
  align-items: center;
  gap: 3.3cqw;
  height: 20.4cqw;
  padding: 0 6.4cqw;
  border-radius: 50px;
  background: rgba(255, 255, 255, 0.2);
  color: #FFFFFF;
  white-space: nowrap;
}
.regshape__dot {
  width: 7.3cqw;
  height: 7.3cqw;
  flex: none;
  border-radius: 50%;
  background: #FFD700;
}
.regshape__label {
  font: 700 7.4cqw/1 "Gotham Pro", "Montserrat", system-ui, -apple-system, "Segoe UI", sans-serif;
  text-transform: uppercase;
}

.region-detail .reg-news {
  padding: 90px 0 100px;
}

@media (max-width: 1100px) {
  .region-detail__hero {
    padding: calc(80px + 28px) 0 56px;
  }
  .region-detail__inner {
    flex-direction: column;
    align-items: stretch;
    gap: 40px;
  }
  .region-detail__info {
    flex: 1 1 auto;
  }
  .region-detail__title {
    font-size: 34px;
  }
  .region-detail__map .regshape {
    max-width: 320px;
    margin: 0 auto;
  }
  .region-detail .reg-news {
    padding: 64px 0 72px;
  }
}
@media (max-width: 720px) {
  .region-detail__title {
    font-size: 26px;
  }
  .region-detail__actions {
    flex-direction: column;
    align-items: stretch;
  }
  .region-detail__actions .btn {
    width: 100%;
  }
  .region-detail__map .regshape {
    max-width: 260px;
  }
}
.intl-page {
  background: #F8FAFB;
}

.intl {
  padding-top: calc(80px + 32px);
  padding-bottom: 100px;
}
.intl__bc {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-bottom: 38px;
  font-size: 14px;
  line-height: 22px;
  letter-spacing: 0.28px;
}
.intl__bc .breadcrumb__link {
  color: #0F3D72;
  text-decoration: none;
}
.intl__bc .breadcrumb__link:hover {
  color: #1B5CA8;
}
.intl__bc .breadcrumb__sep {
  color: rgba(15, 61, 114, 0.5);
  padding: 0 4px;
}
.intl__bc .breadcrumb__current {
  color: #1B5CA8;
  font-weight: 500;
}

.play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 68px;
  height: 48px;
  border-radius: 14px;
  background: #f00;
  transition: background 0.15s ease, transform 0.15s ease;
}
.play-btn::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-40%, -50%);
  border-style: solid;
  border-width: 11px 0 11px 18px;
  border-color: transparent transparent transparent #FFFFFF;
}

.intl-hero {
  position: relative;
  display: block;
  width: 100%;
  aspect-ratio: 1620/911;
  border-radius: 40px 40px 40px 0;
  overflow: hidden;
}
.intl-hero__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.intl-hero:hover .play-btn {
  background: #c00;
  transform: translate(-50%, -50%) scale(1.05);
}

.intl-videos {
  margin-top: 25px;
  padding-bottom: 120px;
}
.intl-videos__title {
  margin: 0 0 33px;
  font-size: 32px;
  font-weight: 700;
  line-height: 1.4;
  text-transform: uppercase;
  color: #0F3D72;
}
.intl-videos__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px 30px;
}

.intl-video {
  display: flex;
  flex-direction: column;
  gap: 20px;
  text-decoration: none;
}
.intl-video__media {
  position: relative;
  display: block;
  aspect-ratio: 795/447;
  border-radius: 12px;
  overflow: hidden;
  min-height: 0;
}
.intl-video__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease;
}
.intl-video:hover .intl-video__img {
  transform: scale(1.03);
}
.intl-video:hover .play-btn {
  background: #c00;
}
.intl-video__title {
  font-size: 22px;
  font-weight: 700;
  line-height: 1.4;
  text-transform: uppercase;
  color: #0F3D72;
}

.intl-dialog {
  position: relative;
  overflow: hidden;
  padding: 85px 0;
  background: #F8FAFB url("../assets/img/program/section-bg.svg") top center/1920px auto no-repeat;
}
.intl-dialog > .container {
  position: relative;
  z-index: 1;
}
.intl-dialog__title {
  margin: 0 0 34px;
  font-size: 32px;
  font-weight: 700;
  line-height: 1.3;
  text-transform: uppercase;
  color: #0F3D72;
}
.intl-dialog__lead {
  max-width: 900px;
  margin: 0 0 56px;
  font-size: 22px;
  font-weight: 500;
  line-height: 1.6;
  color: #1B5CA8;
}
.intl-dialog__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
  margin-bottom: 81px;
}
.intl-dialog__text {
  flex: 0 1 620px;
}
.intl-dialog__text p {
  margin: 0;
  font-size: 24px;
  line-height: 1.4;
  color: #0F3D72;
}
.intl-dialog__subtitle {
  margin: 0 0 20px;
  font-size: 32px;
  font-weight: 700;
  line-height: 1.4;
  text-transform: uppercase;
  color: #0F3D72;
}
.intl-dialog__subtitle--stats {
  margin-bottom: 30px;
}

.intl-flag {
  position: relative;
  flex: 0 0 794px;
  aspect-ratio: 795/530;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(15, 61, 114, 0.18);
}
.intl-flag__ua, .intl-flag__hu {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}
.intl-flag__ua {
  background-image: url("../assets/img/spilnota/flag.jpg");
  clip-path: polygon(0 0, 62% 0, 38% 100%, 0 100%);
}
.intl-flag__hu {
  background-image: url("../assets/img/about/hungary-flag.png");
  clip-path: polygon(62% 0, 100% 0, 100% 100%, 38% 100%);
}

.intl-stat-card {
  padding: 28px 26px 30px;
  border-radius: 12px;
}
.intl-stat-card__num {
  font-size: 56px;
}
.intl-stat-card__label {
  font-size: 16px;
}

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

@media (max-width: 1100px) {
  .intl {
    padding-top: calc(80px + 24px);
    padding-bottom: 72px;
  }
  .intl-videos {
    margin-top: 56px;
  }
  .intl-videos__title {
    font-size: 26px;
  }
  .intl-video__title {
    font-size: 18px;
  }
  .intl-dialog {
    padding: 72px 0;
  }
  .intl-dialog__title {
    font-size: 34px;
  }
  .intl-dialog__row {
    flex-direction: column;
    align-items: stretch;
    gap: 32px;
  }
  .intl-dialog__text {
    flex: 1 1 auto;
  }
  .intl-flag {
    flex: 1 1 auto;
    max-width: none;
    width: 100%;
  }
  .intl-news {
    padding-top: 72px;
  }
  .intl-news__title {
    font-size: 34px;
  }
  .intl-news__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 720px) {
  .intl-hero {
    border-radius: 12px;
  }
  .intl-videos__grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .intl-videos__title {
    font-size: 22px;
  }
  .intl-dialog {
    padding: 56px 0;
  }
  .intl-dialog__title {
    font-size: 26px;
  }
  .intl-dialog__lead {
    font-size: 16px;
    margin-bottom: 40px;
  }
  .intl-stat-card__num {
    font-size: 44px;
  }
  .intl-news {
    padding-top: 56px;
  }
  .intl-news__title {
    font-size: 26px;
  }
  .intl-news__grid {
    grid-template-columns: 1fr;
  }
  .play-btn {
    width: 56px;
    height: 40px;
  }
}
.media-page {
  background: #F8FAFB;
}

.media {
  position: relative;
  overflow: hidden;
  padding-top: calc(80px + 32px);
  padding-bottom: 125px;
  background: url("../assets/img/spilnota/initiatives-bg.svg") left top/auto 100% no-repeat;
}
.media > .container {
  position: relative;
  z-index: 1;
}
.media--detail {
  padding-bottom: 0;
}
.media--detail .gallery {
  padding-top: 40px;
}
.media__bc {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-bottom: 39px;
  font-size: 14px;
  line-height: 22px;
  letter-spacing: 0.28px;
}
.media__bc .breadcrumb__link {
  color: #0F3D72;
  text-decoration: none;
}
.media__bc .breadcrumb__link:hover {
  color: #1B5CA8;
}
.media__bc .breadcrumb__sep {
  color: rgba(15, 61, 114, 0.5);
  padding: 0 4px;
}
.media__bc .breadcrumb__current {
  color: #1B5CA8;
  font-weight: 500;
}
.media__title {
  margin: 0 0 36px;
  font-size: 44px;
  font-weight: 700;
  line-height: 1.4;
  text-transform: uppercase;
  color: #0F3D72;
}
.media__empty {
  margin: 0;
  font-size: 18px;
  color: #1B5CA8;
}

.media__tabs {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 26px;
  margin-bottom: 40px;
}

.media__tab {
  display: inline-flex;
  align-items: center;
  height: 44px;
  padding: 0 4px;
  border-radius: 999px;
  font-size: 20px;
  font-weight: 500;
  line-height: 1.5;
  color: #0F3D72;
  text-decoration: none;
  transition: color 0.15s ease;
}
.media__tab:hover {
  color: #1B5CA8;
}
.media__tab.is-active {
  padding: 6px 20px;
  background: #FFD700;
  color: #1B5CAB;
}

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

.media-card {
  border-radius: 8px;
  overflow: hidden;
}
.media-card__link {
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: center;
  padding-bottom: 20px;
  background: #E8F0F8;
  text-decoration: none;
}
.media-card__media {
  position: relative;
  width: 100%;
  aspect-ratio: 527/348;
  min-height: 0;
  overflow: hidden;
}
.media-card__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.media-card__badge {
  position: absolute;
  top: 19px;
  left: 20px;
  padding: 6px 12px;
  border-radius: 4px;
  background: #FFD700;
  color: #0F3D72;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.4;
}
.media-card__body {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: flex-start;
  width: calc(100% - 40px);
}
.media-card__title {
  margin: 0;
  font-size: 24px;
  font-weight: 700;
  line-height: 1.4;
  color: #0F3D72;
}
.media-card__date {
  font-size: 14px;
  font-weight: 400;
  line-height: 1.4;
  text-transform: uppercase;
  color: #4BAFD4;
}

@media (max-width: 1100px) {
  .media {
    padding-top: calc(80px + 24px);
    padding-bottom: 72px;
  }
  .media__title {
    font-size: 34px;
  }
  .media__tabs {
    gap: 16px;
    margin-bottom: 32px;
  }
  .media__tab {
    font-size: 18px;
  }
  .media__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 720px) {
  .media__title {
    font-size: 26px;
  }
  .media__tabs {
    gap: 12px;
  }
  .media__tab {
    font-size: 16px;
    height: 38px;
  }
  .media__tab.is-active {
    padding: 4px 16px;
  }
  .media__grid {
    grid-template-columns: 1fr;
  }
  .media-card__title {
    font-size: 20px;
  }
}
.partners__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px 20px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.partner-card {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 110px;
  padding: 16px 24px;
  border-radius: 8px;
  background: #1B5CA8;
  text-decoration: none;
  transition: transform 0.15s ease, background 0.15s ease;
}
.partner-card:hover {
  transform: translateY(-2px);
  background: #17508F;
}

.partner-card__logo {
  max-width: 100%;
  max-height: 44px;
  object-fit: contain;
}

.partner-card__name {
  text-align: center;
  font-size: 18px;
  font-weight: 700;
  color: #FFFFFF;
}

@media (max-width: 1100px) {
  .partners__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 720px) {
  .partners__grid {
    grid-template-columns: 1fr;
  }
  .partner-card {
    height: 84px;
  }
  .partner-card__name {
    font-size: 16px;
  }
}
.transparency-page {
  background: #F8FAFB;
}

.transparency {
  position: relative;
  overflow: hidden;
  padding: calc(80px + 40px) 0 100px;
  background: #F8FAFB url("../assets/img/spilnota/initiatives-bg.svg") left top/auto 100% no-repeat;
}
.transparency__bc {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-bottom: 28px;
  font-size: 14px;
  line-height: 22px;
}
.transparency__bc .breadcrumb__link {
  color: #0F3D72;
  text-decoration: none;
}
.transparency__bc .breadcrumb__link:hover {
  color: #1B5CA8;
}
.transparency__bc .breadcrumb__sep {
  color: rgba(15, 61, 114, 0.5);
  padding: 0 4px;
}
.transparency__bc .breadcrumb__current {
  color: #1B5CA8;
  font-weight: 500;
}
.transparency__row {
  display: flex;
  align-items: center;
  gap: 29px;
}
.transparency__info {
  flex: 1 1 0;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.transparency__title {
  margin: 0;
  font-size: 44px;
  font-weight: 700;
  line-height: 1.5;
  text-transform: uppercase;
  color: #0F3D72;
}
.transparency__lead {
  margin: 0;
  font-size: 23px;
  line-height: 1.6;
  color: #1B5CA8;
}
.transparency__card {
  flex: 0 0 800px;
  padding: 40px 30px 32px;
  border-radius: 12px;
  background: linear-gradient(162deg, #3280B0 4.77%, #005BA9 93.88%);
}
.transparency__card-title {
  margin: 0 0 40px;
  font-size: 44px;
  font-weight: 700;
  line-height: 1.5;
  text-transform: uppercase;
  color: #FFFFFF;
}
.transparency__list {
  margin: 0;
  display: flex;
  flex-direction: column;
}
.transparency__item {
  display: flex;
  align-items: flex-start;
  gap: 30px;
  padding: 16px 0;
  border-top: 1px solid #85C3EC;
}
.transparency__item:first-child {
  border-top: 0;
  padding-top: 0;
}
.transparency__item:last-child {
  padding-bottom: 0;
}
.transparency__label {
  flex: 0 0 240px;
  font-size: 20px;
  font-weight: 400;
  line-height: 1.4;
  color: #FFFFFF;
}
.transparency__value {
  flex: 1 1 0;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 10px;
  margin: 0;
  text-align: left;
  font-size: 20px;
  font-weight: 500;
  line-height: 1.4;
  color: #FFFFFF;
}

.copy-btn {
  flex: none;
  margin-left: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  padding: 0;
  border: 0;
  background: none;
  color: #FFD700;
  cursor: pointer;
}
.copy-btn svg {
  width: 100%;
  height: 100%;
}
.copy-btn:hover {
  color: #FFFFFF;
}

.copy-toast {
  position: fixed;
  top: calc(80px + 30px);
  right: 40px;
  z-index: 1000;
  padding: 12px 50px;
  border-radius: 8px;
  background: #0F3D72;
  color: #FFFFFF;
  font-size: 20px;
  font-weight: 500;
  line-height: 1.4;
  white-space: nowrap;
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.28);
}
.copy-toast--error {
  padding: 12px;
  background: #FF1543;
}
@media (max-width: 720px) {
  .copy-toast {
    left: 16px;
    right: 16px;
    top: calc(80px + 16px);
    padding: 12px 20px;
    font-size: 16px;
    white-space: normal;
    text-align: center;
  }
  .copy-toast--error {
    padding: 12px 20px;
  }
}

@media (max-width: 1100px) {
  .transparency {
    padding: calc(80px + 28px) 0 64px;
  }
  .transparency__title {
    font-size: 34px;
  }
  .transparency__row {
    flex-direction: column;
    gap: 40px;
  }
  .transparency__card {
    flex: 1 1 auto;
    width: 100%;
  }
  .transparency__card-title {
    font-size: 32px;
  }
}
@media (max-width: 720px) {
  .transparency__title {
    font-size: 26px;
  }
  .transparency__card {
    padding: 24px 20px;
  }
  .transparency__card-title {
    font-size: 24px;
  }
  .transparency__label, .transparency__value {
    font-size: 16px;
  }
  .transparency__item {
    flex-direction: column;
    gap: 6px;
    padding: 14px 0;
  }
  .transparency__label {
    flex: none;
  }
}
.contacts-page {
  background: #F8FAFB;
}

.contacts {
  padding: calc(80px + 40px) 0 100px;
}
.contacts__bc {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-bottom: 24px;
  font-size: 14px;
  line-height: 22px;
}
.contacts__bc .breadcrumb__link {
  color: #0F3D72;
  text-decoration: none;
}
.contacts__bc .breadcrumb__link:hover {
  color: #1B5CA8;
}
.contacts__bc .breadcrumb__sep {
  font-family: "Gilroy", "Gotham Pro", "Montserrat", system-ui, -apple-system, "Segoe UI", sans-serif;
  font-weight: 500;
  color: rgba(15, 61, 114, 0.5);
  padding: 0 4px;
}
.contacts__bc .breadcrumb__current {
  color: #1B5CA8;
  font-weight: 500;
}
.contacts__title {
  margin: 37px 0 35px;
  font-size: 44px;
  font-weight: 700;
  line-height: 1.5;
  text-transform: uppercase;
  color: #0F3D72;
}
.contacts__phone {
  margin-bottom: 31px;
}
.contacts__socials {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 60px;
}
.contacts__offices {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 48px 31px;
  margin-bottom: 122px;
}
.contacts__join-band {
  position: relative;
  overflow: hidden;
  padding: 60px 0;
  background: #FFFFFF url("../assets/img/priorities/bg-watermark.svg") center top/cover no-repeat;
}
.contacts__join {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
}

.office {
  display: flex;
  flex-direction: column;
  gap: 30px;
}
.office__title {
  margin: 0;
  font-family: "Gotham Pro";
  font-size: 32px;
  font-weight: 700;
  line-height: 1.5;
  text-transform: uppercase;
  color: #0F3D72;
}
.office__map {
  width: 100%;
  height: 447px;
  border: 0;
  border-radius: 40px;
}

@media (max-width: 1100px) {
  .contacts {
    padding: calc(80px + 28px) 0 72px;
  }
  .contacts__title {
    font-size: 34px;
  }
  .contacts__offices {
    grid-template-columns: 1fr;
    gap: 40px;
    margin-bottom: 64px;
  }
  .office__title {
    font-size: 26px;
  }
  .office__map {
    height: 320px;
    border-radius: 24px;
  }
}
@media (max-width: 720px) {
  .contacts__title {
    font-size: 26px;
  }
  .office__title {
    font-size: 22px;
  }
  .office__map {
    height: 220px;
  }
}
.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;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 32px;
  padding: 40px;
  background: rgba(6, 21, 38, 0.85);
}
.lightbox.is-open {
  display: flex;
}
.lightbox__stage {
  margin: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  width: 100%;
  max-width: 1280px;
}
.lightbox__counter, .lightbox__caption {
  margin: 0;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.4;
  color: #FFFFFF;
  text-align: center;
}
.lightbox__frame {
  position: relative;
  display: flex;
  justify-content: center;
  margin: 0;
  width: 100%;
}
.lightbox__img {
  display: block;
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 62vh;
  object-fit: contain;
  border-radius: 10px;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.55);
}
.lightbox__close {
  position: absolute;
  top: 24px;
  right: 32px;
  width: 30px;
  height: 30px;
  font-size: 22px;
  line-height: 1;
  color: #FFD700;
  background: none;
  cursor: pointer;
}
.lightbox__nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 49px;
  height: 37px;
  background: none;
  border: none;
  cursor: pointer;
  transition: opacity 0.15s ease;
}
.lightbox__nav svg {
  width: 100%;
  height: 100%;
}
.lightbox__nav:hover {
  opacity: 0.75;
}
.lightbox__nav--prev {
  left: -70px;
}
.lightbox__nav--next {
  right: -70px;
}
.lightbox__thumbs {
  display: flex;
  gap: 21px;
  max-width: 100%;
  padding-bottom: 4px;
  overflow-x: auto;
}
.lightbox__thumb {
  flex: none;
  width: 124px;
  height: 124px;
  padding: 0;
  border: 1px solid transparent;
  border-radius: 6px;
  overflow: hidden;
  background: #D9D9D9;
  cursor: pointer;
  transition: border-color 0.15s ease;
}
.lightbox__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.lightbox__thumb.is-active {
  border-color: #FFD700;
}
.lightbox__thumb:hover:not(.is-active) {
  border-color: rgba(255, 255, 255, 0.4);
}
@media (max-width: 1100px) {
  .lightbox__nav--prev {
    left: 8px;
  }
  .lightbox__nav--next {
    right: 8px;
  }
}
@media (max-width: 720px) {
  .lightbox {
    padding: 16px;
    gap: 20px;
  }
  .lightbox__close {
    top: 10px;
    right: 12px;
  }
  .lightbox__nav {
    width: 36px;
    height: 27px;
  }
  .lightbox__nav--prev {
    left: 4px;
  }
  .lightbox__nav--next {
    right: 4px;
  }
  .lightbox__counter, .lightbox__caption {
    font-size: 16px;
  }
  .lightbox__thumb {
    width: 64px;
    height: 64px;
  }
}

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

.spilnota-page {
  background: #F8FAFB;
}

.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: 27px;
}
.spilnota-hero__text {
  max-width: 705px;
}
.spilnota-hero__title {
  margin: 0 0 24px;
  font-size: 44px;
  text-transform: uppercase;
  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 {
  position: relative;
  overflow: hidden;
  background: #F8FAFB url("../assets/img/news/article-watermark.svg") no-repeat;
  background-position: left 80px;
}
.page__hero {
  padding-top: calc(80px + 32px);
  padding-bottom: 40px;
}
.page__bc {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-bottom: 28px;
  font-size: 14px;
  line-height: 22px;
}
.page__bc .breadcrumb__link {
  color: #0F3D72;
  text-decoration: none;
}
.page__bc .breadcrumb__link:hover {
  color: #1B5CA8;
}
.page__bc .breadcrumb__sep {
  font-family: "Gilroy", "Gotham Pro", "Montserrat", system-ui, -apple-system, "Segoe UI", sans-serif;
  font-weight: 500;
  color: rgba(15, 61, 114, 0.5);
  padding: 0 4px;
}
.page__bc .breadcrumb__current {
  color: #1B5CA8;
  font-weight: 500;
}
.page__title {
  margin: 0;
  font-size: 44px;
  font-weight: 700;
  line-height: 1.5;
  text-transform: uppercase;
  color: #0F3D72;
}
.page__revision {
  margin: 20px 0 0;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.5;
  text-transform: uppercase;
  color: #0F3D72;
}
.page__body {
  padding: 20px 0 100px;
}
.page__prose {
  width: 100%;
}
.page__prose p {
  margin: 0 0 20px;
  font-family: "Gilroy", "Gotham Pro", "Montserrat", system-ui, -apple-system, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: #1B5CA8;
}
.page__prose p:last-child {
  margin-bottom: 0;
}
.page__prose h2 {
  margin: 48px 0 10px;
  font-size: 26px;
  font-weight: 700;
  line-height: 1.5;
  text-transform: uppercase;
  color: #0F3D72;
}
.page__prose h2:first-child {
  margin-top: 0;
}
.page__updated {
  margin-top: 36px;
  font-size: 14px;
  color: #66A2CA;
}
@media (max-width: 1100px) {
  .page__hero {
    padding-top: calc(80px + 24px);
    padding-bottom: 32px;
  }
  .page__title {
    font-size: 34px;
  }
}
@media (max-width: 720px) {
  .page__hero {
    padding-bottom: 24px;
  }
  .page__title {
    font-size: 28px;
  }
  .page__body {
    padding: 16px 0 64px;
  }
  .page__prose p {
    font-size: 16px;
  }
  .page__prose h2 {
    font-size: 22px;
  }
}

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

.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;
  padding: 0;
  border: 0.5px solid #FFFFFF;
  border-radius: 50%;
  background: none;
  color: #FFFFFF;
  font: inherit;
  cursor: pointer;
  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;
    align-items: stretch;
  }
  .article__main {
    width: 100%;
  }
  .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;
  }
}

.notfound {
  position: relative;
  min-height: calc(80px + 800px);
  display: flex;
  overflow: hidden;
  background: #105A8E;
}
.notfound::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("../assets/img/notfound-bg.svg") center no-repeat;
  pointer-events: none;
}
.notfound__inner {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: calc(80px + 40px) 0 322px;
}
.notfound__bc {
  align-self: flex-start;
  display: flex;
  align-items: center;
  gap: 4px;
  margin-bottom: 80px;
  font-size: 14px;
  line-height: 22px;
}
.notfound__bc .breadcrumb__link {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
}
.notfound__bc .breadcrumb__link:hover {
  color: #FFFFFF;
}
.notfound__bc .breadcrumb__sep {
  color: rgba(255, 255, 255, 0.5);
  padding: 0 4px;
}
.notfound__bc .breadcrumb__current {
  color: #FFFFFF;
  font-weight: 500;
}
.notfound__code {
  margin: 0 0 12px;
  font-size: 120px;
  font-weight: 700;
  line-height: 1.2;
  text-transform: uppercase;
  color: #FFFFFF;
}
.notfound__lead {
  margin: 0 0 30px;
  font-size: 26px;
  font-weight: 700;
  text-transform: uppercase;
  color: #FFFFFF;
}

@media (max-width: 1100px) {
  .notfound {
    min-height: 620px;
  }
  .notfound__bc {
    margin-bottom: 56px;
  }
  .notfound__code {
    font-size: 88px;
  }
  .notfound__lead {
    font-size: 18px;
  }
}
@media (max-width: 720px) {
  .notfound {
    min-height: 540px;
  }
  .notfound__bc {
    margin-bottom: 40px;
  }
  .notfound__code {
    font-size: 64px;
  }
  .notfound__lead {
    font-size: 16px;
    margin-bottom: 32px;
  }
  .notfound__btn {
    width: 100%;
    justify-content: center;
  }
}
@media (min-width: 1101px) and (max-width: 1440px) {
  .nav__more {
    display: flex;
  }
  .nav > .nav__link:nth-last-of-type(-n+3) {
    display: none;
  }
  .header__actions {
    gap: 18px;
  }
}
@media (max-width: 1100px) {
  .nav,
  .header .lang-switch,
  .header__actions .btn {
    display: none;
  }
  .burger {
    display: flex;
  }
  .hero {
    min-height: 0;
  }
  .hero__inner {
    gap: 32px;
    padding: 140px 0 80px;
  }
  .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-live {
    width: 100%;
    order: -1;
  }
  .news-live__list {
    overflow: visible;
    padding-right: 0;
  }
}
@media (max-width: 1440px) {
  .news__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 720px) {
  .container {
    width: min(100% - 32px, 1620px);
  }
  .hero {
    min-height: 0;
    padding: 104px 0 40px;
  }
  .hero__inner {
    position: relative;
    flex-direction: column;
    align-items: stretch;
    gap: 26px;
    padding: 0;
    min-height: 420px;
  }
  .hero__content {
    position: relative;
    z-index: 2;
    gap: 26px;
  }
  .hero__art {
    display: block;
    position: absolute;
    z-index: 1;
    right: -56px;
    bottom: -30px;
    width: 360px;
    max-width: 96%;
    pointer-events: none;
  }
  .hero__title {
    font-size: 30px;
    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__card {
    padding: 20px 24px 24px;
  }
  .stats__num {
    font-size: 48px;
  }
  .stats__label {
    font-size: 16px;
  }
  .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%;
    align-items: center;
  }
  .footer__actions .btn {
    width: auto;
  }
  .footer__socials {
    order: -1;
  }
}

/*# sourceMappingURL=styles.css.map */
