@font-face {
  font-family: 'Roboto';
  src: url('../fonts/roboto-400.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Roboto';
  src: url('../fonts/roboto-500.ttf') format('truetype');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Roboto';
  src: url('../fonts/roboto-700.ttf') format('truetype');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Roboto';
  src: url('../fonts/roboto-800.ttf') format('truetype');
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Roboto';
  src: url('../fonts/roboto-900.ttf') format('truetype');
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}

:root {
  --orange: #f28c28;
  --orange-dark: #d66f0d;
  --green: #16776a;
  --blue: #235789;
  --ink: #17212b;
  --muted: #66717d;
  --line: #dfe7ec;
  --soft: #f4f8f9;
  --white: #ffffff;
  --shadow: 0 16px 40px rgba(21, 47, 66, .12);
  --radius: 8px;
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
  color: var(--ink);
  background: var(--white);
  line-height: 1.6;
}

body .bvi-body,
body .bvi-body *,
html body .bvi-panel,
html body .bvi-panel *,
body .bvi-body[data-bvi-fontfamily="arial"]:not(i):not(span):not(.bvi-no-styles),
body .bvi-body[data-bvi-fontfamily="arial"]:not(i):not(span):not(.bvi-no-styles) * {
  font-family: 'Roboto', Arial, Helvetica, sans-serif !important;
}

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

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

svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.container {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
}

.topbar {
  background: var(--orange);
  color: var(--white);
  font-size: 14px;
}

.topbar__inner {
  min-height: 42px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.topbar__contacts {
  display: inline-flex;
  align-items: center;
  gap: 20px;
  min-width: 0;
  overflow-x: auto;
}

.topbar a,
.topbar span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
}

.topbar__socials {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  flex: 0 0 auto;
}

.topbar__socials a {
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--orange);
  background: rgba(255, 255, 255, .95);
  transition: transform .18s ease, background .18s ease, color .18s ease;
}

.topbar__socials a:hover {
  color: var(--white);
  background: #143f55;
  transform: translateY(-1px);
}

.topbar__socials svg {
  width: 17px;
  height: 17px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: var(--white);
  box-shadow: 0 1px 0 var(--line);
  transform: translateY(0);
  transition: transform .24s ease, box-shadow .24s ease;
  will-change: transform;
}

.site-header.is-condensed {
  transform: translateY(calc(-1 * var(--header-hide-offset, 134px)));
  box-shadow: 0 8px 24px rgba(21, 47, 66, .08);
}

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

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  min-width: 0;
}

.brand__mark {
  width: 82px;
  height: 82px;
  flex: 0 0 82px;
  display: grid;
  place-items: center;
  border-radius: 0;
  color: var(--orange);
  background: transparent;
  font-weight: 800;
}

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

.brand__text {
  display: grid;
  gap: 2px;
}

.brand strong {
  font-size: clamp(18px, 3vw, 28px);
  line-height: 1.15;
}

.brand small {
  color: var(--muted);
  font-size: 14px;
}

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

.accessibility {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 14px;
}

.lang-switch {
  display: inline-flex;
  padding: 4px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--soft);
}

.lang-switch a {
  padding: 7px 10px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 13px;
  color: var(--muted);
}

.lang-switch .active {
  color: var(--white);
  background: var(--orange);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--white);
}

.nav-toggle span {
  display: block;
  height: 2px;
  margin: 5px 0;
  background: var(--ink);
}

.main-nav {
  border-top: 1px solid var(--line);
  background: var(--white);
}

.main-nav__inner {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 6px;
  min-height: 54px;
  margin: 0 auto;
  padding-top: 0;
  padding-bottom: 0;
  list-style: none;
}

.main-nav__item {
  position: relative;
}

.main-nav__item.has-dropdown::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  height: 12px;
}

.main-nav__link-wrap {
  display: inline-flex;
  align-items: center;
}

.main-nav__link {
  position: relative;
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 8px 13px;
  border-radius: 6px;
  color: #23313f;
  font-weight: 700;
  font-size: 15px;
}

.main-nav__link:hover,
.main-nav__item:hover > .main-nav__link-wrap .main-nav__link,
.main-nav__item.is-open > .main-nav__link-wrap .main-nav__link {
  color: var(--white);
  background: var(--orange);
}

.main-nav__dropdown-toggle {
  width: 28px;
  height: 38px;
  margin-left: -8px;
  border: 0;
  border-radius: 6px;
  background: transparent;
  color: currentColor;
}

.main-nav__dropdown-toggle::before {
  content: "";
  display: inline-block;
  width: 8px;
  height: 8px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: translateY(-2px) rotate(45deg);
  transition: transform .18s ease;
}

.main-nav__item:hover > .main-nav__link-wrap .main-nav__dropdown-toggle,
.main-nav__item.is-open > .main-nav__link-wrap .main-nav__dropdown-toggle {
  color: var(--white);
}

.main-nav__item:hover > .main-nav__link-wrap .main-nav__dropdown-toggle::before,
.main-nav__item.is-open > .main-nav__link-wrap .main-nav__dropdown-toggle::before {
  transform: translateY(2px) rotate(225deg);
}

.main-nav__submenu {
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 80;
  min-width: 280px;
  max-width: min(360px, calc(100vw - 32px));
  max-height: 70vh;
  overflow-y: auto;
  display: grid;
  gap: 4px;
  margin: 0;
  padding: 10px;
  list-style: none;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 18px 40px rgba(21, 47, 66, .14);
  opacity: 0;
  pointer-events: none;
  transform: translateY(10px);
  transition: opacity .18s ease, transform .18s ease, visibility 0s linear .18s;
  visibility: hidden;
}

.main-nav__submenu::before {
  content: "";
  position: absolute;
  top: -8px;
  left: 0;
  right: 0;
  height: 8px;
}

.main-nav__item:hover > .main-nav__submenu,
.main-nav__item:focus-within > .main-nav__submenu,
.main-nav__item.is-hover > .main-nav__submenu,
.main-nav__item.is-open > .main-nav__submenu {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
  transition-delay: 0s;
  visibility: visible;
}

.main-nav__submenu .main-nav__item {
  width: 100%;
}

.main-nav__submenu .main-nav__link-wrap,
.main-nav__submenu .main-nav__link {
  width: 100%;
}

.main-nav__submenu .main-nav__link {
  justify-content: flex-start;
  min-height: auto;
  padding: 10px 12px;
  border-radius: 6px;
  color: #23313f;
  font-size: 14px;
  line-height: 1.25;
}

.main-nav__submenu .main-nav__link:hover {
  color: var(--white);
  background: var(--orange);
}

.hero-slider {
  position: relative;
  min-height: 560px;
  overflow: hidden;
  color: var(--white);
  background: #173f4d;
}

.hero-slider__slides {
  position: absolute;
  inset: 0;
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  pointer-events: none;
  background-position: center;
  background-size: cover;
  transform: scale(1.02);
  transition: opacity .8s ease, transform 5.5s ease;
}

.hero-slide.is-active {
  opacity: 1;
  pointer-events: auto;
  transform: scale(1);
}

.hero-slide::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(15, 58, 72, .9), rgba(15, 58, 72, .54), rgba(242, 140, 40, .12));
}

.hero-slide__inner {
  position: relative;
  z-index: 1;
  min-height: 560px;
  display: flex;
  align-items: center;
  padding: 72px 0 130px;
}

.hero-slide__content {
  max-width: 720px;
}

.hero-slide h1 {
  margin: 12px 0 18px;
  font-size: clamp(38px, 6vw, 68px);
  line-height: 1.05;
}

.hero-slide p {
  max-width: 640px;
  margin: 0;
  font-size: 20px;
  color: #eef8f8;
}

.hero-slider__arrow {
  position: absolute;
  z-index: 2;
  top: 50%;
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, .42);
  border-radius: 50%;
  color: var(--white);
  background: rgba(18, 49, 63, .44);
  font-size: 36px;
  line-height: 1;
  transform: translateY(-50%);
  cursor: pointer;
}

.hero-slider__arrow:hover {
  background: var(--orange);
}

.hero-slider__arrow--prev {
  left: 22px;
}

.hero-slider__arrow--next {
  right: 22px;
}

.hero-slider__dots {
  position: absolute;
  z-index: 3;
  left: 50%;
  bottom: 104px;
  display: flex;
  gap: 10px;
  transform: translateX(-50%);
}

.hero-slider__dots button {
  width: 36px;
  height: 5px;
  padding: 0;
  border: 0;
  border-radius: 99px;
  background: rgba(255, 255, 255, .55);
  cursor: pointer;
}

.hero-slider__dots button.is-active {
  width: 54px;
  background: var(--orange);
}

.hero {
  position: relative;
  min-height: 560px;
  overflow: hidden;
  color: var(--white);
  background: #173f4d;
}

.hero__media {
  position: absolute;
  inset: 0;
  background-position: center;
  background-size: cover;
}

.hero__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(15, 58, 72, .88), rgba(15, 58, 72, .42), rgba(242, 140, 40, .2));
}

.hero__inner {
  position: relative;
  min-height: 560px;
  display: flex;
  align-items: center;
  padding: 72px 0 130px;
}

.hero__content {
  max-width: 720px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  color: var(--orange);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero h1 {
  margin: 12px 0 18px;
  font-size: clamp(38px, 6vw, 68px);
  line-height: 1.05;
}

.hero p {
  max-width: 640px;
  margin: 0;
  font-size: 20px;
  color: #eef8f8;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 10px 18px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--white);
  color: var(--ink);
  font-weight: 800;
}

.button--primary {
  border-color: var(--orange);
  background: var(--orange);
  color: var(--white);
}

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

.button--ghost {
  color: var(--white);
  border-color: rgba(255, 255, 255, .45);
  background: rgba(255, 255, 255, .12);
}

.quick-links {
  position: relative;
  z-index: 2;
  margin-top: -78px;
}

.quick-links__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.quick-card {
  min-height: 136px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 18px;
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow);
  transform: translateY(0);
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}

.quick-card:hover,
.quick-card:focus-visible {
  transform: translateY(-10px);
  box-shadow: 0 20px 44px rgba(245, 124, 0, .22);
}

.quick-card:active {
  transform: translateY(-4px);
}

.quick-card span {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  color: var(--white);
  background: var(--orange);
  border-radius: 8px;
  transition: transform .22s ease, background-color .22s ease;
}

.quick-card:hover span,
.quick-card:focus-visible span {
  background: #143f55;
  transform: scale(1.08) rotate(-3deg);
}

.quick-card strong {
  font-size: 18px;
  line-height: 1.25;
}

.section {
  padding: 72px 0;
}

.section--soft {
  background: var(--soft);
}

.section-head {
  margin-bottom: 28px;
}

.section-head--row {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
}

.section-head h1,
.section-head h2 {
  margin: 6px 0 0;
  font-size: clamp(28px, 4vw, 42px);
  line-height: 1.15;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.stat {
  padding: 26px;
  border-left: 4px solid var(--orange);
  background: var(--white);
  border-radius: var(--radius);
  text-align: center;
}

.stat strong {
  display: block;
  color: var(--green);
  font-size: 34px;
  line-height: 1;
  font-variant-numeric: tabular-nums;
  letter-spacing: 0;
  min-height: 34px;
}

.stat span {
  display: block;
  margin-top: 10px;
  color: var(--muted);
  line-height: 1.45;
}

.instagram-section {
  background: var(--white);
}

.instagram-ribbon {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 360px), 1fr));
  gap: 14px;
}

.instagram-load-more {
  display: flex;
  justify-content: center;
  margin-top: 28px;
}

.instagram-post {
  min-width: 0;
  min-height: 520px;
  overflow: hidden;
  border: 1px solid rgba(242, 140, 40, .32);
  border-radius: var(--radius);
  color: var(--text);
  background: var(--white);
  box-shadow: 0 10px 24px rgba(21, 47, 66, .08);
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}

.instagram-post:hover,
.instagram-post:focus-visible {
  border-color: var(--orange);
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.instagram-post .instagram-media {
  width: 100% !important;
  min-width: 0 !important;
  max-width: none !important;
  margin: 0 !important;
  border: 0 !important;
  border-radius: 0 !important;
  box-shadow: none !important;
}

.instagram-post iframe {
  width: 100% !important;
}

.instagram-post__fallback {
  min-height: 520px;
  display: grid;
  align-content: center;
  justify-items: center;
  gap: 16px;
  padding: 24px;
  color: var(--ink);
  text-align: center;
  background: linear-gradient(135deg, #ffffff 0%, #fff6ed 100%);
}

.instagram-post__icon {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  color: var(--white);
  background: var(--orange);
  border-radius: 8px;
}

.instagram-post p {
  margin: 0;
  color: var(--text);
  font-weight: 700;
  line-height: 1.45;
}

.instagram-post strong {
  color: var(--green);
  font-size: 14px;
}

.anti-corruption-section {
  position: relative;
  min-height: 360px;
  display: grid;
  align-items: center;
  overflow: hidden;
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(18, 49, 63, .92) 0%, rgba(18, 49, 63, .74) 44%, rgba(18, 49, 63, .22) 100%),
    url('../img/anti-corruption-bg.webp') center / cover no-repeat;
  background-attachment: fixed;
}

.anti-corruption-section::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 4px;
  background: linear-gradient(90deg, var(--orange), rgba(22, 119, 106, .2));
}

.anti-corruption-section__inner {
  position: relative;
  z-index: 1;
  padding: 72px 0;
}

.anti-corruption-section .eyebrow {
  color: #ffd0a3;
}

.anti-corruption-section h2 {
  max-width: 720px;
  margin: 10px 0 14px;
  font-size: clamp(34px, 5vw, 58px);
  line-height: 1.05;
}

.anti-corruption-section p {
  max-width: 560px;
  margin: 0 0 24px;
  color: rgba(255, 255, 255, .84);
  font-size: 19px;
}

.anti-corruption-section .button {
  min-height: 46px;
}

.partners-section {
  padding: 54px 0;
  overflow: hidden;
  background: var(--soft);
  border-top: 1px solid var(--line);
}

.partners-carousel {
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}

.partners-track {
  width: max-content;
  display: flex;
  gap: 18px;
  animation: partners-scroll 28s linear infinite;
}

.partners-carousel:hover .partners-track,
.partners-carousel:focus-within .partners-track {
  animation-play-state: paused;
}

.partner-card {
  width: 250px;
  min-height: 172px;
  display: grid;
  place-items: center;
  gap: 12px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--text);
  text-align: center;
  background: var(--white);
  box-shadow: 0 10px 24px rgba(21, 47, 66, .07);
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}

.partner-card:hover,
.partner-card:focus-visible {
  border-color: var(--orange);
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.partner-card img {
  width: 96px;
  height: 86px;
  object-fit: contain;
}

.partner-card span {
  color: var(--text);
  font-weight: 800;
  line-height: 1.35;
}

@keyframes partners-scroll {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(calc(-50% - 9px));
  }
}

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

.news-card {
  min-width: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  transition: transform .2s ease, box-shadow .2s ease;
}

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

.news-card img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  background: var(--soft);
}

.news-card__body {
  padding: 20px;
}

.news-card__body span {
  display: inline-flex;
  margin-bottom: 8px;
  color: var(--green);
  font-weight: 800;
  font-size: 13px;
}

.news-card time {
  display: block;
  color: var(--muted);
  font-size: 14px;
}

.news-card h3 {
  margin: 8px 0;
  font-size: 20px;
  line-height: 1.25;
}

.news-card p {
  margin: 0;
  color: var(--muted);
}

.leadership-section {
  background: linear-gradient(180deg, #fff 0%, #f5f8f7 100%);
}

.section-head p {
  max-width: 640px;
  margin: 10px 0 0;
  color: var(--muted);
}

.leadership-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(320px, .8fr);
  gap: 22px;
  align-items: stretch;
}

.leadership-director {
  display: grid;
  grid-template-columns: minmax(240px, 360px) minmax(0, 1fr);
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow);
}

.leadership-director__photo {
  width: min(300px, calc(100% - 48px));
  aspect-ratio: 1;
  align-self: center;
  justify-self: center;
  min-height: 0;
  overflow: hidden;
  border: 6px solid var(--white);
  border-radius: 50%;
  background: var(--soft);
  box-shadow: 0 18px 36px rgba(21, 47, 66, .16);
}

.leadership-director__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 58% 23%;
  transform: translateY(26px) scale(1.88);
  transform-origin: 58% 23%;
}

.leadership-director__content {
  padding: clamp(24px, 4vw, 42px);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.leadership-director__content > span,
.leader-card span {
  color: var(--orange);
  font-weight: 800;
  font-size: 13px;
  text-transform: uppercase;
}

.leadership-director h3 {
  margin: 12px 0;
  font-size: clamp(28px, 4vw, 42px);
  line-height: 1.08;
}

.leadership-director p {
  margin: 0 0 16px;
  color: var(--muted);
  font-size: 17px;
}

.leadership-director strong {
  padding: 14px 16px;
  border-left: 4px solid var(--orange);
  border-radius: 8px;
  color: #143f55;
  background: #fff6ed;
  line-height: 1.45;
}

.leadership-meta {
  display: grid;
  gap: 10px;
  margin-top: 22px;
}

.leadership-meta span,
.leader-card p {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--ink);
}

.leadership-grid {
  display: grid;
  gap: 16px;
}

.leader-card {
  min-height: 148px;
  display: grid;
  grid-template-columns: 128px minmax(0, 1fr);
  gap: 16px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  transition: transform .22s ease, box-shadow .22s ease;
}

.leader-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 36px rgba(21, 47, 66, .12);
}

.leader-card__photo {
  width: 128px;
  height: 128px;
  align-self: center;
  overflow: hidden;
  border: 4px solid var(--white);
  border-radius: 50%;
  background: var(--soft);
  box-shadow: 0 10px 24px rgba(21, 47, 66, .12);
}

.leader-card__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 20%;
  transform: scale(1.42);
  transform-origin: center 20%;
}

.leader-card:nth-child(1) .leader-card__photo img {
  object-position: center 22%;
  transform-origin: center 22%;
}

.leader-card:nth-child(2) .leader-card__photo img {
  object-position: 52% 26%;
  transform-origin: 52% 26%;
}

.leader-card:nth-child(3) .leader-card__photo img {
  object-position: center 14%;
  transform-origin: center 14%;
}

.leader-card h3 {
  margin: 8px 0;
  font-size: 20px;
  line-height: 1.2;
}

.leader-card p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.35;
}

.page-shell {
  background: linear-gradient(180deg, var(--soft), var(--white) 260px);
  min-height: 60vh;
  padding: 44px 0 72px;
}

.content-layout {
  display: grid;
  grid-template-columns: 280px minmax(0, 1fr);
  gap: 24px;
}

.content-layout--wide {
  grid-template-columns: minmax(0, 1fr);
}

.side-panel,
.content-card,
.article {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 8px 24px rgba(21, 47, 66, .06);
}

.side-panel {
  align-self: start;
  padding: 18px;
  display: grid;
  gap: 8px;
}

.side-panel a {
  padding: 10px 12px;
  border-radius: 6px;
  color: var(--muted);
  font-weight: 700;
}

.side-panel a:hover {
  color: var(--white);
  background: var(--orange);
}

.content-card,
.article {
  min-width: 0;
  padding: clamp(24px, 4vw, 44px);
}

.breadcrumbs {
  margin: 0 0 12px;
  color: var(--muted);
  font-size: 14px;
}

.breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  margin: 0;
  padding: 0;
  list-style: none;
}

.breadcrumbs li {
  display: inline-flex;
  align-items: center;
  min-width: 0;
  gap: 8px;
}

.breadcrumbs li + li::before {
  content: "/";
  color: #a8b3bd;
  flex: 0 0 auto;
}

.breadcrumbs a,
.breadcrumbs span {
  min-width: 0;
}

.breadcrumbs a {
  color: var(--blue);
  text-decoration: none;
  font-weight: 700;
}

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

.breadcrumbs [aria-current="page"] span {
  color: var(--muted);
}

.content-card h1,
.article h1 {
  margin: 12px 0 24px;
  font-size: clamp(30px, 5vw, 48px);
  line-height: 1.12;
}

.content-text {
  min-width: 0;
  max-width: 100%;
  overflow-wrap: anywhere;
  font-size: 18px;
}

.content-text a {
  color: var(--blue);
  text-decoration: underline;
}

.content-text .instagram-media,
.content-text .content-instagram-embed {
  width: min(100%, 540px) !important;
  min-width: 0 !important;
  margin: 28px auto !important;
}

.content-text .instagram-media iframe {
  max-width: 100% !important;
}

.content-text .content-youtube-embed {
  position: relative;
  width: min(100%, 860px);
  aspect-ratio: 16 / 9;
  margin: 28px auto;
  overflow: hidden;
  border-radius: 8px;
  background: #0f1720;
}

.content-text .content-youtube-embed iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.content-text .video-container {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  margin: 28px 0;
}

.content-text .video-box {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border-radius: 8px;
  background: #0f1720;
  box-shadow: 0 12px 28px rgba(21, 47, 66, .12);
}

.content-text .video-box iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.content-text table {
  width: 100%;
  min-width: 680px;
  border-collapse: collapse;
  margin: 28px 0;
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 8px 22px rgba(21, 47, 66, .05);
}

.content-text > table,
.content-text .wp-block-table,
.content-text .table-responsive,
.content-text div:has(> table) {
  display: block;
  max-width: 100%;
  overflow-x: auto;
  overflow-y: hidden;
  border-radius: var(--radius);
  -webkit-overflow-scrolling: touch;
}

.content-text .wp-block-table table {
  margin: 0;
}

.content-text td,
.content-text th {
  padding: 13px 14px;
  border: 1px solid var(--line);
  color: var(--ink);
  overflow-wrap: anywhere;
  vertical-align: top;
}

.content-text th,
.content-text tr:first-child > td {
  color: #12313f;
  background: #eef7f7;
  font-weight: 800;
}

.content-text tr:nth-child(even) td {
  background: #fbfdfd;
}

.content-text tr:hover td {
  background: #fff7ee;
}

.content-text td p,
.content-text th p {
  margin: 0;
}

.content-text td p + p,
.content-text th p + p {
  margin-top: 6px;
}

.content-text img {
  height: auto;
  margin: 18px 0;
  border-radius: 6px;
}

.blog-feedback {
  margin-top: 36px;
  padding-top: 30px;
  border-top: 1px solid var(--line);
}

.blog-feedback__head {
  margin-bottom: 18px;
}

.blog-feedback__head h2 {
  margin: 6px 0 8px;
  color: var(--ink);
  font-size: clamp(26px, 3vw, 34px);
  line-height: 1.15;
}

.blog-feedback__head p {
  max-width: 680px;
  margin: 0;
  color: var(--muted);
  font-size: 17px;
}

.feedback-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.feedback-form label {
  display: grid;
  gap: 8px;
  min-width: 0;
  color: var(--ink);
  font-weight: 800;
}

.feedback-form input,
.feedback-form textarea {
  width: 100%;
  min-width: 0;
  padding: 13px 14px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--white);
  color: var(--ink);
  font: inherit;
  font-weight: 500;
  transition: border-color .2s ease, box-shadow .2s ease;
}

.feedback-form textarea {
  resize: vertical;
  min-height: 150px;
}

.feedback-form input:focus,
.feedback-form textarea:focus {
  outline: none;
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(36, 125, 145, .14);
}

.feedback-form__message,
.feedback-form .button,
.form-notice {
  grid-column: 1 / -1;
}

.feedback-form__captcha {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 10px 12px;
  border-radius: 6px;
  background: #eef7f7;
  color: var(--blue);
  font-size: 16px;
}

.feedback-form .button {
  justify-self: start;
}

.feedback-form__trap {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.form-notice {
  margin: 0 0 16px;
  padding: 13px 14px;
  border-radius: 6px;
  font-weight: 800;
}

.form-notice--success {
  border: 1px solid rgba(36, 125, 145, .25);
  background: #eef7f7;
  color: var(--blue);
}

.form-notice--error {
  border: 1px solid rgba(242, 140, 40, .35);
  background: #fff7ee;
  color: #9a4b00;
}

.contacts-shell {
  background:
    radial-gradient(circle at 12% 140px, rgba(242, 140, 40, .13), transparent 260px),
    linear-gradient(180deg, #eef7f7, var(--white) 420px);
}

.contacts-layout {
  align-items: start;
}

.contacts-page {
  min-width: 0;
  display: grid;
  gap: 22px;
}

.contacts-hero,
.contact-summary,
.contact-panel,
.contacts-map {
  border: 1px solid rgba(22, 119, 106, .15);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 16px 40px rgba(21, 47, 66, .08);
}

.contacts-hero {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  align-items: end;
  padding: clamp(26px, 4vw, 42px);
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(18, 49, 63, .96), rgba(22, 119, 106, .88)),
    url('../img/hero-hospital.svg') right 28px bottom -26px / 360px auto no-repeat;
}

.contacts-hero::after {
  content: "";
  position: absolute;
  inset: auto -60px -120px auto;
  width: 280px;
  height: 280px;
  border: 34px solid rgba(255, 255, 255, .1);
  border-radius: 50%;
}

.contacts-hero .breadcrumbs {
  color: rgba(255, 255, 255, .72);
}

.contacts-hero .eyebrow {
  color: #ffd6ad;
}

.contacts-hero h1 {
  position: relative;
  z-index: 1;
  margin: 8px 0 10px;
  font-size: clamp(34px, 5vw, 58px);
  line-height: 1;
}

.contacts-hero p {
  position: relative;
  z-index: 1;
  max-width: 620px;
  margin: 0;
  color: rgba(255, 255, 255, .82);
  font-size: 18px;
}

.contacts-hero__actions {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: flex-end;
}

.contacts-hero__actions .button {
  min-height: 44px;
}

.contacts-hero__actions .button--ghost {
  color: var(--white);
  border-color: rgba(255, 255, 255, .35);
  background: rgba(255, 255, 255, .1);
}

.contact-summary {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  background: var(--line);
}

.contact-summary__item {
  min-width: 0;
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr);
  gap: 10px 12px;
  align-items: center;
  padding: 18px;
  background: var(--white);
}

.contact-summary__item > span,
.contact-panel__icon,
.contacts-map__head span {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  color: var(--white);
  background: var(--orange);
}

.contact-summary__item > span {
  grid-row: 1 / span 2;
}

.contact-summary__item small {
  grid-column: 2;
  display: block;
  color: var(--muted);
  font-weight: 800;
  line-height: 1.25;
}

.contact-summary__item strong {
  grid-column: 2;
  display: block;
  margin-top: 3px;
  overflow-wrap: anywhere;
  color: var(--ink);
  font-size: 17px;
  line-height: 1.25;
}

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

.contact-panel {
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr);
  gap: 16px;
  padding: 22px;
}

.contact-panel--address,
.contact-panel--phones {
  grid-column: 1 / -1;
}

.contact-panel h2,
.contacts-map h2 {
  margin: 0 0 10px;
  font-size: 24px;
  line-height: 1.15;
}

.contact-panel p {
  max-width: 760px;
  margin: 0;
  color: var(--muted);
  font-size: 17px;
}

.contact-panel a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 12px;
  color: var(--blue);
  font-weight: 800;
}

.contact-panel a:hover,
.contact-panel a:focus-visible {
  color: var(--orange);
}

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

.contact-phone-list div {
  min-width: 0;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #f8fbfb;
}

.contact-phone-list strong,
.contact-phone-list span {
  display: block;
}

.contact-phone-list strong {
  margin-bottom: 4px;
  line-height: 1.25;
}

.contact-phone-list span {
  overflow-wrap: anywhere;
  color: var(--muted);
  line-height: 1.35;
}

.contacts-map {
  overflow: hidden;
}

.contacts-map__head {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 18px 20px;
  border-bottom: 1px solid var(--line);
}

.contacts-map__head h2 {
  margin: 0;
}

.contacts-map iframe {
  display: block;
  width: 100%;
  min-height: 430px;
  border: 0;
  background: var(--soft);
}

.departments-page h1 {
  margin-bottom: 18px;
}

.departments-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 150px;
  gap: 22px;
  align-items: center;
  margin: 0 0 34px;
  padding: 24px;
  border: 1px solid rgba(22, 119, 106, .18);
  border-radius: var(--radius);
  background: linear-gradient(135deg, #f4fbf8 0%, #fff8ef 100%);
}

.departments-hero p {
  max-width: 680px;
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 17px;
}

.departments-summary {
  min-height: 120px;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 4px;
  border-radius: var(--radius);
  color: var(--white);
  text-align: center;
  background: #143f55;
}

.departments-summary strong {
  font-size: 42px;
  line-height: 1;
}

.departments-summary span {
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.departments-section + .departments-section {
  margin-top: 42px;
  padding-top: 34px;
  border-top: 1px solid var(--line);
}

.departments-section__head {
  margin-bottom: 18px;
}

.departments-section__head h2 {
  margin: 0;
  color: #143f55;
  font-size: clamp(24px, 3vw, 32px);
  line-height: 1.18;
}

.departments-section__head p {
  max-width: 760px;
  margin: 8px 0 0;
  color: var(--muted);
}

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

.department-card {
  min-height: 76px;
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr) 34px;
  gap: 14px;
  align-items: center;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--ink);
  background: var(--white);
  box-shadow: 0 8px 20px rgba(21, 47, 66, .05);
  transition: transform .18s ease, border-color .18s ease, box-shadow .18s ease;
}

.department-card:hover,
.department-card:focus-visible {
  border-color: rgba(242, 140, 40, .72);
  box-shadow: 0 14px 28px rgba(21, 47, 66, .11);
  transform: translateY(-2px);
}

.department-card__number {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  color: var(--orange);
  background: #fff2e5;
  font-weight: 900;
  font-size: 15px;
  font-variant-numeric: tabular-nums;
}

.department-card__title {
  min-width: 0;
  font-weight: 800;
  line-height: 1.28;
}

.department-card__arrow {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--green);
  background: rgba(22, 119, 106, .09);
}

.department-card__arrow svg {
  width: 16px;
  height: 16px;
}

.department-detail-page .content-text {
  display: grid;
  gap: 18px;
}

.department-detail-page .content-text > h1,
.department-detail-page .content-text > h2,
.department-detail-page .content-text > h3 {
  margin: 10px 0 0;
  color: #143f55;
  line-height: 1.18;
}

.department-detail-page .content-text > h1 {
  font-size: clamp(28px, 4vw, 40px);
}

.department-detail-page .content-text > h2 {
  padding-top: 22px;
  border-top: 1px solid var(--line);
  font-size: clamp(23px, 3vw, 31px);
}

.department-detail-page .content-text > h3 {
  font-size: clamp(20px, 2.4vw, 25px);
}

.department-detail-page .content-text p,
.department-detail-page .content-text ul,
.department-detail-page .content-text ol {
  margin: 0;
}

.department-detail-page .content-text ul,
.department-detail-page .content-text ol {
  padding: 18px 22px 18px 34px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fbfdfd;
}

.department-detail-page .content-text li + li {
  margin-top: 8px;
}

.department-detail-page .content-text figure {
  margin: 6px 0;
}

.department-detail-page .content-text figure img,
.department-detail-page .content-text > p img {
  width: auto;
  max-width: 100%;
  max-height: 520px;
  margin: 0;
  object-fit: contain;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--soft);
}

.department-detail-page .content-text table {
  display: block;
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

.department-back-link {
  width: fit-content;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: -6px 0 24px;
  padding: 10px 14px;
  border: 1px solid rgba(22, 119, 106, .22);
  border-radius: 6px;
  color: var(--green);
  background: rgba(22, 119, 106, .08);
  font-weight: 800;
}

.department-back-link::before {
  content: "";
  width: 8px;
  height: 8px;
  border-left: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg);
}

.search-form {
  display: flex;
  width: min(100%, 360px);
  border: 1px solid var(--line);
  border-radius: 6px;
  overflow: hidden;
  background: var(--white);
}

.search-form input {
  min-width: 0;
  flex: 1;
  border: 0;
  padding: 0 14px;
  font: inherit;
}

.search-form button {
  width: 48px;
  border: 0;
  color: var(--white);
  background: var(--orange);
}

.category-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 26px;
}

.category-row a {
  padding: 8px 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--white);
  color: var(--muted);
  font-weight: 700;
}

.category-row a.active,
.category-row a:hover {
  color: var(--white);
  border-color: var(--orange);
  background: var(--orange);
}

.pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-top: 34px;
}

.pagination__pages {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  flex-wrap: wrap;
}

.pagination__link,
.pagination__ellipsis {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 42px;
  min-height: 42px;
  padding: 8px 13px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--white);
  color: var(--text);
  font-weight: 800;
  line-height: 1;
}

.pagination__link:hover,
.pagination__link.is-active {
  border-color: var(--green);
  background: var(--green);
  color: var(--white);
}

.pagination__link.is-disabled {
  pointer-events: none;
  opacity: .45;
}

.pagination__link--edge {
  min-width: 96px;
}

.pagination__ellipsis {
  border-color: transparent;
  background: transparent;
  color: var(--muted);
}

.empty {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

.article {
  max-width: 940px;
}

.article time,
.back-link {
  color: var(--muted);
  font-weight: 700;
}

.back-link {
  display: inline-flex;
  margin-bottom: 16px;
}

.article__image {
  width: 100%;
  max-height: 520px;
  object-fit: cover;
  border-radius: var(--radius);
  margin-bottom: 28px;
}

.gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

.gallery img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 6px;
}

.file-list {
  display: grid;
  gap: 10px;
}

.file-list a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 6px;
}

.file-list--excel {
  margin-top: 18px;
}

.file-list a.excel-download {
  width: fit-content;
  min-height: 48px;
  padding: 12px 18px;
  border-color: var(--green);
  color: var(--white);
  background: var(--green);
  font-weight: 800;
  text-decoration: none;
}

.file-list a.excel-download:hover,
.file-list a.excel-download:focus-visible {
  background: #0f5f55;
}

.file-list a.excel-download svg {
  width: 20px;
  height: 20px;
}

.site-footer {
  color: #d8e8eb;
  background: #12313f;
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(230px, 25%) minmax(0, 75%);
  gap: 32px;
  align-items: stretch;
  padding: 42px 0;
}

.footer-grid strong {
  display: block;
  color: var(--white);
  font-size: 20px;
}

.footer-grid span {
  display: block;
  color: var(--orange);
  font-weight: 800;
  margin-bottom: 10px;
}

.footer-grid a {
  display: block;
  margin: 6px 0;
}

.footer-contacts {
  min-width: 0;
}

.footer-contacts p {
  margin: 14px 0;
  color: #d8e8eb;
  line-height: 1.55;
}

.footer-socials {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 18px 0 12px;
}

.footer-socials a {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  margin: 0;
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, .2);
  border-radius: 8px;
  background: rgba(255, 255, 255, .08);
  transition: background-color .2s ease, border-color .2s ease, transform .2s ease;
}

.footer-socials a:hover,
.footer-socials a:focus-visible {
  border-color: var(--orange);
  background: var(--orange);
  transform: translateY(-2px);
}

.footer-socials svg {
  width: 19px;
  height: 19px;
}

.footer-screenreader {
  color: var(--orange);
  font-weight: 800;
}

.footer-map iframe {
  width: 100%;
  height: 100%;
  min-height: 360px;
  border: 0;
  border-radius: 8px;
  background: var(--soft);
}

.footer-bottom {
  padding: 18px 0;
  border-top: 1px solid rgba(255, 255, 255, .12);
  color: #adc4c9;
}

.scroll-top {
  position: fixed;
  right: 18px;
  bottom: 18px;
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border: 0;
  border-radius: 50%;
  color: var(--white);
  background: var(--orange);
  opacity: 0;
  pointer-events: none;
  transform: translateY(10px) rotate(-90deg);
  transition: .2s ease;
}

.scroll-top.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0) rotate(-90deg);
}

@media (max-width: 980px) {
  .accessibility {
    padding: 10px;
    font-size: 0;
  }

  .accessibility svg {
    width: 21px;
    height: 21px;
  }

  .nav-toggle {
    display: block;
  }

  .main-nav {
    display: none;
  }

  .main-nav.is-open {
    display: block;
  }

  .main-nav__inner {
    align-items: stretch;
    flex-direction: column;
    padding: 10px 0;
  }

  .main-nav__item,
  .main-nav__link-wrap,
  .main-nav__link {
    width: 100%;
  }

  .main-nav__link-wrap {
    justify-content: space-between;
  }

  .main-nav__link {
    justify-content: flex-start;
  }

  .main-nav__dropdown-toggle {
    width: 46px;
    height: 42px;
    margin-left: 0;
    color: #23313f;
    background: var(--soft);
  }

  .main-nav__submenu {
    position: static;
    max-width: none;
    max-height: none;
    display: none;
    margin: 4px 0 8px 14px;
    padding: 6px;
    border-radius: 8px;
    opacity: 1;
    pointer-events: auto;
    transform: none;
    box-shadow: none;
  }

  .main-nav__submenu::before {
    display: none;
  }

  .main-nav__item:hover > .main-nav__submenu,
  .main-nav__item:focus-within > .main-nav__submenu {
    display: none;
  }

  .main-nav__item.is-open > .main-nav__submenu {
    display: grid;
  }

  .quick-links__grid,
  .stats-grid,
  .cards-grid,
  .departments-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .content-layout,
  .leadership-layout {
    grid-template-columns: 1fr;
  }

  .content-layout > .content-card,
  .contacts-layout > .contacts-page,
  .departments-page,
  .department-detail-page {
    order: -1;
  }

  .contacts-hero,
  .contact-summary,
  .contacts-grid,
  .contact-phone-list {
    grid-template-columns: 1fr;
  }

  .contacts-hero__actions {
    justify-content: flex-start;
  }

  .leadership-director {
    grid-template-columns: 280px minmax(0, 1fr);
  }

  .hero-slider,
  .hero-slide__inner,
  .hero,
  .hero__inner {
    min-height: 500px;
  }

  .hero-slider__arrow {
    display: none;
  }
}

@media (max-width: 640px) {
  .container {
    width: min(100% - 22px, 1180px);
  }

  .topbar__inner {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
    padding: 8px 0;
  }

  .topbar__contacts {
    width: 100%;
    gap: 14px;
  }

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

  .brand__mark {
    width: 58px;
    height: 58px;
    flex-basis: 58px;
  }

  .brand small {
    display: none;
  }

  .hero-slider,
  .hero-slide__inner,
  .hero,
  .hero__inner {
    min-height: 560px;
  }

  .hero-slide__inner,
  .hero__inner {
    padding-bottom: 110px;
  }

  .hero-slider__dots {
    bottom: 86px;
  }

  .quick-links__grid,
  .stats-grid,
  .cards-grid,
  .footer-grid,
  .gallery,
  .content-text .video-container,
  .departments-grid,
  .departments-hero {
    grid-template-columns: 1fr;
  }

  .departments-hero {
    padding: 18px;
  }

  .departments-summary {
    min-height: 92px;
  }

  .department-card {
    grid-template-columns: 44px minmax(0, 1fr) 30px;
    gap: 10px;
    padding: 12px;
  }

  .department-card__number {
    width: 44px;
    height: 44px;
  }

  .section-head--row {
    align-items: start;
    flex-direction: column;
  }

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

  .pagination__link--edge {
    width: 100%;
  }

  .anti-corruption-section {
    min-height: 420px;
    background:
      linear-gradient(180deg, rgba(18, 49, 63, .96) 0%, rgba(18, 49, 63, .78) 100%),
      url('../img/anti-corruption-bg.webp') center / cover no-repeat;
    background-attachment: scroll;
  }

  .anti-corruption-section__inner {
    padding: 54px 0;
  }

  .anti-corruption-section p {
    font-size: 17px;
  }

  .leadership-director,
  .leader-card {
    grid-template-columns: 1fr;
  }

  .leadership-director__photo {
    width: min(280px, calc(100% - 40px));
  }

  .leader-card__photo {
    width: 150px;
    height: 150px;
    justify-self: start;
  }

  .content-card,
  .article {
    padding: 20px;
  }

  .feedback-form {
    grid-template-columns: 1fr;
  }

  .feedback-form .button {
    width: 100%;
    justify-content: center;
  }

  .contacts-page {
    gap: 16px;
  }

  .contacts-hero,
  .contact-panel {
    padding: 18px;
  }

  .contact-summary__item,
  .contact-panel {
    grid-template-columns: 40px minmax(0, 1fr);
  }

  .contact-summary__item > span,
  .contact-panel__icon,
  .contacts-map__head span {
    width: 40px;
    height: 40px;
  }

  .contacts-hero__actions .button {
    width: 100%;
    justify-content: center;
  }

  .contacts-map iframe {
    min-height: 320px;
  }

  .breadcrumbs li[aria-current="page"] {
    flex-basis: 100%;
  }

  .breadcrumbs li[aria-current="page"]::before {
    display: none;
  }

  .breadcrumbs li[aria-current="page"] span {
    display: -webkit-box;
    overflow: hidden;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
  }
}
