@charset "UTF-8";
/**
 * Глобальні хелпер-класи.
 * Використовуються прямо в розмітці: <div class="df aic jcsb gap16">
 */
* {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 0;
  margin: 0;
}

ul {
  padding: 0;
  margin: 0;
}

/* --- Видимість ------------------------------------------------------------ */
.hidden {
  display: none !important;
}

.show_mob {
  display: none;
}

.overflow {
  overflow: hidden;
}

/* --- Flex ----------------------------------------------------------------- */
.df {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.dif {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
}

.fdc,
.dfc {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.fdr {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
}

.wrap {
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.flex {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

.aic {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.ais {
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
}

.aifs {
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

.aife {
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}

.aib {
  -webkit-box-align: baseline;
      -ms-flex-align: baseline;
          align-items: baseline;
}

.jcc {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.jcsb {
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.jcsa {
  -ms-flex-pack: distribute;
      justify-content: space-around;
}

.jcfs {
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}

.jcfe {
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}

.asc {
  -ms-flex-item-align: center;
      -ms-grid-row-align: center;
      align-self: center;
}

.asfs {
  -ms-flex-item-align: start;
      align-self: flex-start;
}

.asfe {
  -ms-flex-item-align: end;
      align-self: flex-end;
}

/* --- Grid ----------------------------------------------------------------- */
.dg {
  display: -ms-grid;
  display: grid;
}

/* --- Gap ------------------------------------------------------------------ */
.gap4 {
  gap: 4px;
}

.gap8 {
  gap: 8px;
}

.gap12 {
  gap: 12px;
}

.gap16 {
  gap: 16px;
}

.gap24 {
  gap: 24px;
}

.gap32 {
  gap: 32px;
}

.gap48 {
  gap: 48px;
}

.gap64 {
  gap: 64px;
}

.gap-2xs {
  gap: 0.5rem;
}

.gap-xs {
  gap: 0.75rem;
}

.gap-s {
  gap: 1rem;
}

.gap-1 {
  gap: 1rem;
}

.gap-l {
  gap: 1.5rem;
}

.gap-xl {
  gap: 2rem;
}

.gap-2xl {
  gap: 2.5rem;
}

.gap-3xl {
  gap: 4rem;
}

.cg16 {
  -webkit-column-gap: 16px;
     -moz-column-gap: 16px;
          column-gap: 16px;
}

.cg32 {
  -webkit-column-gap: 32px;
     -moz-column-gap: 32px;
          column-gap: 32px;
}

.rg16 {
  row-gap: 16px;
}

.rg32 {
  row-gap: 32px;
}

/* --- Відступи ------------------------------------------------------------- */
.m-a {
  margin-left: auto;
  margin-right: auto;
}

.ml-a {
  margin-left: auto;
}

.mr-a {
  margin-right: auto;
}

.mb16 {
  margin-bottom: 16px;
}

.mb24 {
  margin-bottom: 24px;
}

.mb32 {
  margin-bottom: 32px;
}

.mb48 {
  margin-bottom: 48px;
}

.pi16 {
  padding-inline: 16px;
}

.pi24 {
  padding-inline: 24px;
}

.pi40 {
  padding-inline: 40px;
}

/* --- Розміри -------------------------------------------------------------- */
.w100 {
  width: 100%;
}

.h100 {
  height: 100%;
}

/* --- Заокруглення --------------------------------------------------------- */
.br8 {
  border-radius: 8px;
}

.br12 {
  border-radius: 12px;
}

.br16 {
  border-radius: 16px;
}

.br20 {
  border-radius: 20px;
}

.br24 {
  border-radius: 24px;
}

.br32 {
  border-radius: 32px;
}

.br38 {
  border-radius: 38px;
}

.br48 {
  border-radius: 48px;
}

.br-full {
  border-radius: 999px;
}

/* --- Текст / фон ---------------------------------------------------------- */
.tdn {
  text-decoration: none;
}

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

.text-left {
  text-align: left;
}

.text-right {
  text-align: right;
}

.uppercase {
  text-transform: uppercase;
}

.color-white {
  color: #FFFFFF;
}

.color-primary {
  color: #1F5FD6;
}

.color-muted {
  color: #6B7280;
}

.cover-bg {
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
}

/* --- Брейкпоінти ---------------------------------------------------------- */
@media (max-width: 1023px) {
  .hide_mob {
    display: none !important;
  }
  .show_mob {
    display: block;
  }
}
/* --- Шеврон (стрілка випадайки) ------------------------------------------ */
header.top_header_site .lang_block .lang_current::after, header.top_header_site .menu_block .menu-item-has-children > a::after {
  content: "";
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 0.4em;
  height: 0.4em;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  -webkit-transform: rotate(45deg) translate(-0.1em, -0.1em);
      -ms-transform: rotate(45deg) translate(-0.1em, -0.1em);
          transform: rotate(45deg) translate(-0.1em, -0.1em);
  -webkit-transition: -webkit-transform 0.2s;
  transition: -webkit-transform 0.2s;
  transition: transform 0.2s;
  transition: transform 0.2s, -webkit-transform 0.2s;
}

/**
 * Скидання/нормалізація базових стилів.
 * Натхнено normalize.css v8.0.1 та Eric Meyer's Reset CSS 2.0
 */
body {
  margin: 0;
}

html {
  line-height: 1.2;
}

main {
  display: block;
}

h1, h2, h3, h4, h5, h6 {
  margin-top: 0;
  margin-bottom: 0;
  font-weight: normal;
}

li {
  list-style: none;
}

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

ol,
ul {
  margin: 0;
  padding: 0;
}

button {
  margin: 0;
  padding: 0;
  background: none;
  border: none;
  font: inherit;
  cursor: pointer;
}

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

address {
  font-style: normal;
}

blockquote {
  margin-right: 0;
  margin-left: 0;
}

iframe {
  display: block;
}

form {
  margin: 0;
}

input {
  border-radius: 0;
}

/**
 * Типографіка.
 * Класи вішаються на будь-який тег: <h1 class="h1">, <div class="body-1-reg">
 * Розміри — через CSS-змінні з фолбеком, щоб їх можна було перевизначити точково.
 * ponytail: значення — плейсхолдери, підганяються під макет; імена класів лишаються
 */
* {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.block_12 .step_number, .block_2 .about_stat_value, .footer_brand .logo_title, header.top_header_site .logo_lockup .logo_title, .h6, .h5, .h4, .h3, .h2, .h1 {
  font-family: var(--type-font-family-heading, Inter, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Helvetica, Arial, sans-serif);
  font-style: normal;
  font-weight: 700;
}

.footer_brand .logo_sub, header.top_header_site .logo_lockup .logo_sub, .block_17 .fluentform .ff-btn-submit, .block_20 .conditions_dark, .button_xl, .button_sm, .button_color, .button_color_sm, .action_bold, .profession_btn, .block_39 .help_btn, .block_38 .headbtns_btn, .block_33 .docbox_btn, .block_28 .headbtn_button, .vacancy_single .vacancy_apply, .contest_single .contest_apply, .pagination_block .page-numbers, .action-med, .action-reg, .caption, .body-3-bold, .body-3-semi, .body-3-reg, .block_17 .fluentform .ff-el-input--label label, .vacancy_single .vacancy_content h2, .vacancy_single .vacancy_content h3, .vacancy_single .vacancy_content h4, .footer_menu .sub-menu a, .footer_menu > li > a, .body-2-bold, .body-2-semi, .body-2-reg, .news_single .news_single_content h2, .news_single .news_single_content h3, .news_single .news_single_content h4, .body-1-bold, .body-1-semi, .body-1-reg {
  font-family: var(--type-font-family-body, Inter, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Helvetica, Arial, sans-serif);
  font-style: normal;
}

/* --- Заголовки ------------------------------------------------------------ */
.h1 {
  font-size: var(--fontsize-heading-h1, 4rem);
  line-height: var(--line-height-heading-h1, 4.5rem);
}

.h2 {
  font-size: var(--fontsize-heading-h2, 3rem);
  line-height: var(--line-height-heading-h2, 3.5rem);
}

.h3 {
  font-size: var(--fontsize-heading-h3, 2.25rem);
  line-height: var(--line-height-heading-h3, 2.75rem);
}

.h4 {
  font-size: var(--fontsize-heading-h4, 1.75rem);
  line-height: var(--line-height-heading-h4, 2.25rem);
}

.h5 {
  font-size: var(--fontsize-heading-h5, 1.5rem);
  line-height: var(--line-height-heading-h5, 2rem);
}

.h6 {
  font-size: var(--fontsize-heading-h6, 1.125rem);
  line-height: var(--line-height-heading-h6, 1.625rem);
}

/* --- Body L --------------------------------------------------------------- */
.news_single .news_single_content h2, .news_single .news_single_content h3, .news_single .news_single_content h4, .body-1-bold, .body-1-semi, .body-1-reg {
  font-size: var(--fontsize-body-l, 1.25rem);
  line-height: var(--line-height-body-l, 1.875rem);
}

.body-1-reg {
  font-weight: 400;
}

.body-1-semi {
  font-weight: 600;
}

.body-1-bold {
  font-weight: 700;
}

/* --- Body M --------------------------------------------------------------- */
.block_17 .fluentform .ff-el-input--label label, .vacancy_single .vacancy_content h2, .vacancy_single .vacancy_content h3, .vacancy_single .vacancy_content h4, .footer_menu .sub-menu a, .footer_menu > li > a, .body-2-bold, .body-2-semi, .body-2-reg {
  font-size: var(--fontsize-body-m, 1.125rem);
  line-height: var(--line-height-body-m, 1.6875rem);
}

.body-2-reg {
  font-weight: 400;
}

.body-2-semi {
  font-weight: 600;
}

.body-2-bold {
  font-weight: 700;
}

/* --- Body S --------------------------------------------------------------- */
.body-3-bold, .body-3-semi, .body-3-reg {
  font-size: var(--fontsize-body-s, 1rem);
  line-height: var(--line-height-body-s, 1.5rem);
}

.body-3-reg {
  font-weight: 400;
}

.body-3-semi {
  font-weight: 600;
}

.body-3-bold {
  font-weight: 700;
}

/* --- Дрібне --------------------------------------------------------------- */
.caption {
  font-size: 0.75rem;
  font-weight: 600;
  line-height: 0.9375rem;
  letter-spacing: 0.03125rem;
  text-transform: uppercase;
}

/* --- Action (лінки, кнопки) ----------------------------------------------- */
.profession_btn, .block_39 .help_btn, .block_38 .headbtns_btn, .block_33 .docbox_btn, .block_28 .headbtn_button, .vacancy_single .vacancy_apply, .contest_single .contest_apply, .pagination_block .page-numbers, .action-med, .action-reg {
  font-size: var(--fontsize-other-action, 1rem);
  line-height: var(--line-height-other-action, 1.5rem);
}

.action-reg {
  font-weight: 400;
}

.action-med {
  font-weight: 600;
}

.block_17 .fluentform .ff-btn-submit, .block_20 .conditions_dark, .button_xl, .button_sm, .button_color, .button_color_sm, .action_bold {
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.5rem;
}

/* --- Кнопки --------------------------------------------------------------- */
.block_20 .conditions_dark, .button_xl, .button_sm, .button_color, .button_color_sm {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.75rem;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  padding: 0 1.5rem;
  border-radius: 12px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.block_20 .conditions_dark:disabled, .button_xl:disabled, .button_sm:disabled, .button_color:disabled, .button_color_sm:disabled {
  border-color: transparent;
  background: #6B7280;
  color: #FFFFFF;
  cursor: not-allowed;
}

.button_color, .button_color_sm {
  height: 3.125rem;
  border: 1px solid #1F5FD6;
  background: #1F5FD6;
  color: #FFFFFF;
}
.button_color:hover, .button_color_sm:hover {
  background: #1A4FB4;
  border-color: #1A4FB4;
}

.button_color_sm {
  height: 2.5rem;
}

.button_xl, .button_sm {
  height: 3.125rem;
  border: 1.5px solid #E5E7EB;
  background: transparent;
  color: #111111;
}
.button_xl:hover, .button_sm:hover {
  background: #F5F6F8;
}
.button_xl:active, .button_sm:active {
  border-color: #1F5FD6;
}

.button_sm {
  height: 2.5rem;
  border-width: 1px;
}

/* --- Адаптив -------------------------------------------------------------- */
@media (max-width: 1024px) {
  .h1 {
    font-size: var(--fontsize-heading-h1, 2.5rem);
    line-height: var(--line-height-heading-h1, 3rem);
  }
  .h2 {
    font-size: var(--fontsize-heading-h2, 2rem);
    line-height: var(--line-height-heading-h2, 2.5rem);
  }
  .h3 {
    font-size: var(--fontsize-heading-h3, 1.625rem);
    line-height: var(--line-height-heading-h3, 2.125rem);
  }
  .h4 {
    font-size: var(--fontsize-heading-h4, 1.375rem);
    line-height: var(--line-height-heading-h4, 1.875rem);
  }
  .h5 {
    font-size: var(--fontsize-heading-h5, 1.25rem);
    line-height: var(--line-height-heading-h5, 1.75rem);
  }
  .h6 {
    font-size: var(--fontsize-heading-h6, 1rem);
    line-height: var(--line-height-heading-h6, 1.5rem);
  }
  .profession_btn, .block_39 .help_btn, .block_38 .headbtns_btn, .block_33 .docbox_btn, .block_28 .headbtn_button, .vacancy_single .vacancy_apply, .contest_single .contest_apply, .pagination_block .page-numbers, .action-reg, .action-med, .block_17 .fluentform .ff-btn-submit, .action_bold, .block_20 .conditions_dark, .button_color, .button_color_sm, .button_xl, .button_sm, .action_bold {
    font-size: var(--fontsize-other-action, 0.875rem);
    line-height: var(--line-height-other-action, 1.25rem);
  }
}
body {
  font-family: var(--type-font-family-body, Inter, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Helvetica, Arial, sans-serif);
  background: #FFFFFF;
  color: #111111;
}

html {
  font-size: 100%;
}
@media (min-width: 2800px) {
  html {
    font-size: 112.5%;
  }
}
@media (min-width: 3840px) {
  html {
    font-size: 125%;
  }
}

section[class^=block_] {
  scroll-margin-top: var(--header-height, 5rem);
}

.content_block {
  width: 90rem;
  max-width: min(90%, 2560px);
  margin-left: auto;
  margin-right: auto;
  position: relative;
  z-index: 60;
}

/* ==========================================================================
   Header / Footer
   ========================================================================== */
header.top_header_site {
  padding: 1rem 0;
  position: sticky;
  top: 0;
  z-index: 888;
  background: #FFFFFF;
  border-bottom: 1px solid #E5E7EB;
}
header.top_header_site .line {
  min-height: 4.5rem;
}
header.top_header_site {
  /* --- Лого + назва: один клікабельний блок --------------------------- */
}
header.top_header_site .logo_lockup {
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
header.top_header_site .logo_lockup .logo_mark {
  display: block;
  width: auto;
  height: 3rem;
}
header.top_header_site .logo_lockup .logo_title {
  font-size: 1.5rem;
  line-height: 1.2;
}
header.top_header_site .logo_lockup .logo_sub {
  font-size: 0.875rem;
  line-height: 1.3;
  color: #6B7280;
}
header.top_header_site {
  /* --- Головне меню --------------------------------------------------- */
}
header.top_header_site .menu_block {
  margin-left: auto;
}
header.top_header_site .menu_block .menu > li {
  position: relative;
}
header.top_header_site .menu_block .menu > li > a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.375rem;
  padding: 0.5rem 0;
  white-space: nowrap;
}
header.top_header_site .menu_block .menu-item-has-children:hover > a::after,
header.top_header_site .menu_block .menu-item-has-children:focus-within > a::after {
  -webkit-transform: rotate(-135deg) translate(-0.15em, -0.15em);
      -ms-transform: rotate(-135deg) translate(-0.15em, -0.15em);
          transform: rotate(-135deg) translate(-0.15em, -0.15em);
}
header.top_header_site {
  /* --- Випадайки ------------------------------------------------------ */
}
header.top_header_site .sub-menu {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 14rem;
  padding: 0.5rem;
  background: #FFFFFF;
  color: #111111;
  border: 1px solid #E5E7EB;
  border-radius: 12px;
  -webkit-box-shadow: 0 12px 32px rgba(0, 0, 0, 0.12);
          box-shadow: 0 12px 32px rgba(0, 0, 0, 0.12);
  opacity: 0;
  visibility: hidden;
  translate: 0 0.5rem;
  -webkit-transition: opacity 0.2s, translate 0.2s, visibility 0.2s;
  transition: opacity 0.2s, translate 0.2s, visibility 0.2s;
}
header.top_header_site .sub-menu li > a {
  display: block;
  padding: 0.5rem 0.75rem;
  border-radius: 8px;
  white-space: nowrap;
}
header.top_header_site .sub-menu li > a:hover {
  background: #F5F6F8;
}
header.top_header_site li:hover > .sub-menu,
header.top_header_site li:focus-within > .sub-menu,
header.top_header_site .lang_block:hover .sub-menu,
header.top_header_site .lang_block:focus-within .sub-menu {
  opacity: 1;
  visibility: visible;
  translate: 0 0;
}
header.top_header_site {
  /* --- Перемикач мови ------------------------------------------------- */
}
header.top_header_site .lang_block {
  position: relative;
  margin-left: 1rem;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
header.top_header_site .lang_block .lang_current {
  cursor: pointer;
  padding: 0.5rem 0;
}
header.top_header_site .lang_block .lang_list {
  left: auto;
  right: 0;
  min-width: 6rem;
}
header.top_header_site {
  /* --- CTA ------------------------------------------------------------ */
}
header.top_header_site .cta_block {
  margin-left: 0.5rem;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
header.top_header_site {
  /* --- Гамбургер ------------------------------------------------------ */
}
header.top_header_site .menu-icon {
  width: 2.5rem;
  height: 2.5rem;
  margin-left: auto;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 5px;
}
header.top_header_site .menu-icon span {
  display: block;
  width: 22px;
  height: 2px;
  background: currentColor;
  border-radius: 2px;
  -webkit-transition: opacity 0.2s, -webkit-transform 0.3s;
  transition: opacity 0.2s, -webkit-transform 0.3s;
  transition: transform 0.3s, opacity 0.2s;
  transition: transform 0.3s, opacity 0.2s, -webkit-transform 0.3s;
}
header.top_header_site .menu-icon.active span:nth-child(1) {
  -webkit-transform: translateY(7px) rotate(45deg);
      -ms-transform: translateY(7px) rotate(45deg);
          transform: translateY(7px) rotate(45deg);
}
header.top_header_site .menu-icon.active span:nth-child(2) {
  opacity: 0;
}
header.top_header_site .menu-icon.active span:nth-child(3) {
  -webkit-transform: translateY(-7px) rotate(-45deg);
      -ms-transform: translateY(-7px) rotate(-45deg);
          transform: translateY(-7px) rotate(-45deg);
}

/* --- Мобільне меню ------------------------------------------------------ */
.mobile_menu {
  position: fixed;
  inset: 0;
  top: var(--header-height, 5rem);
  z-index: 887;
  padding: 2rem 0;
  background: #FFFFFF;
  overflow-y: auto;
}
.mobile_menu[hidden] {
  display: none;
}
.mobile_menu .sub-menu {
  position: static;
  opacity: 1;
  visibility: visible;
  translate: none;
  -webkit-box-shadow: none;
          box-shadow: none;
  border: none;
  padding: 0.5rem 0 0 1rem;
  min-width: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 0.5rem;
}
.mobile_menu .lang_mob a.is-active {
  color: #1F5FD6;
  font-weight: 700;
}

.footer_card {
  background: #262626;
  color: #FFFFFF;
  border-radius: 32px 32px 0 0;
  overflow: hidden;
}

/* --- Верхня частина ------------------------------------------------------ */
.footer_top {
  padding: 4rem 0;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.footer_brand {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 22rem;
          flex: 0 0 22rem;
  max-width: 22rem;
}
.footer_brand .logo_mark {
  display: block;
  width: auto;
  height: 3.25rem;
}
.footer_brand .logo_title {
  font-size: 1.5rem;
  line-height: 1.2;
  color: #FFFFFF;
}
.footer_brand .logo_sub {
  font-size: 0.875rem;
  line-height: 1.3;
  color: rgba(255, 255, 255, 0.6);
}

.footer_about {
  color: rgba(255, 255, 255, 0.6);
}

.footer_social {
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.08);
  color: #FFFFFF;
  -webkit-transition: background 0.25s;
  transition: background 0.25s;
}
.footer_social:hover {
  background: rgba(255, 255, 255, 0.16);
}

/* --- Колонки посилань ---------------------------------------------------- */
.footer_col {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 12rem;
          flex: 1 1 12rem;
  min-width: 0;
}

.footer_menu {
  gap: 1.25rem;
}
.footer_menu > li > a {
  font-weight: 700;
  color: #FFC629;
}
.footer_menu > li > a:hover {
  text-decoration: underline;
}
.footer_menu .sub-menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 1.25rem;
  margin-top: 1.25rem;
}
.footer_menu .sub-menu a {
  font-weight: 400;
  color: rgba(255, 255, 255, 0.85);
}
.footer_menu .sub-menu a:hover {
  color: #FFFFFF;
}

/* --- Нижня смуга --------------------------------------------------------- */
.footer_bottom {
  padding: 1.5rem 0;
  background: #FFC629;
  color: #111111;
}
.footer_bottom .footer_legal {
  gap: 1.5rem;
}
.footer_bottom .footer_legal li + li::before {
  content: "";
  display: inline-block;
  width: 1px;
  height: 1rem;
  margin-right: 1.5rem;
  vertical-align: -0.2em;
  background: rgba(0, 0, 0, 0.25);
}
.footer_bottom .footer_legal a:hover {
  text-decoration: underline;
}

@media (max-width: 1200px) {
  .footer_brand {
    -ms-flex-preferred-size: 100%;
        flex-basis: 100%;
    max-width: 30rem;
    margin-bottom: 1rem;
  }
}
@media (max-width: 767px) {
  .footer_card {
    border-radius: 24px 24px 0 0;
  }
  .footer_top {
    padding: 2.5rem 0;
    gap: 2rem;
  }
  .footer_col {
    -ms-flex-preferred-size: 100%;
        flex-basis: 100%;
  }
  .footer_bottom .content_block {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
}
/* ==========================================================================
   Темна картка з контактами
   Спільна для блоків 10 і 17 — тому поза їхніми скоупами
   ========================================================================== */
.contacts_card {
  padding: 3rem;
  border-radius: 24px;
  background: #262626;
  color: #FFFFFF;
  -webkit-box-shadow: 0 24px 60px rgba(0, 0, 0, 0.18);
          box-shadow: 0 24px 60px rgba(0, 0, 0, 0.18);
}

.contacts_card_text {
  color: rgba(255, 255, 255, 0.72);
}

.contact_icon {
  width: 3rem;
  height: 3rem;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  border-radius: 12px;
  background: #FFFFFF;
  color: #111111;
}

.contact_icon--empty {
  background: transparent;
}

.contact_label {
  color: rgba(255, 255, 255, 0.6);
}

.contact_value {
  color: #FFFFFF;
}

a.contact_value:hover {
  text-decoration: underline;
}

@media (max-width: 1023px) {
  .contacts_card {
    padding: 2rem;
  }
}
/* ==========================================================================
   Рядок документа для завантаження
   Спільний для блоків 13 і 16 — тому поза їхніми скоупами
   ========================================================================== */
.doc_item + .doc_item {
  border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.doc_link {
  padding: 1rem 0.5rem;
  color: #111111;
  -webkit-transition: color 0.2s;
  transition: color 0.2s;
}
.doc_link:hover {
  color: #1F5FD6;
}
.doc_link:hover .doc_download {
  color: #1F5FD6;
}

.doc_icon {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 2.5rem;
  color: #E5484D;
}

.doc_name {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  min-width: 0;
}

.doc_date {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  color: #6B7280;
}

.doc_download {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 2rem;
  color: #6B7280;
  -webkit-transition: color 0.2s;
  transition: color 0.2s;
}

@media (max-width: 1023px) {
  .doc_link:has(.doc_date) {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    gap: 0.5rem 1rem;
  }
  .doc_link:has(.doc_date) .doc_name {
    -webkit-box-flex: 1;
        -ms-flex: 1 1 calc(100% - 5.5rem);
            flex: 1 1 calc(100% - 5.5rem);
  }
  .doc_date {
    margin-left: 3.5rem;
  }
}
/* ==========================================================================
   Новини та оголошення
   Розміри — з макетів «Новини» і «Новина» у Figma
   ========================================================================== */
.news_archive {
  padding: 4.5rem 0;
}
.news_archive > .content_block {
  gap: 4.5rem;
}
.news_archive .news_subtitle {
  color: #6B7280;
  max-width: 46em;
}

/* --- Вкладки ------------------------------------------------------------- */
.news_tabs {
  -webkit-box-shadow: inset 0 -1px 0 #E5E7EB;
          box-shadow: inset 0 -1px 0 #E5E7EB;
}

.news_tab {
  position: relative;
  padding: 0.5rem 1rem;
  color: #6B7280;
  -webkit-transition: color 0.2s;
  transition: color 0.2s;
  white-space: nowrap;
}
.news_tab::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1px;
  background: #111111;
  opacity: 0;
  -webkit-transition: opacity 0.2s;
  transition: opacity 0.2s;
}
.news_tab:hover {
  color: #111111;
}
.news_tab.is-active {
  color: #111111;
}
.news_tab.is-active::after {
  opacity: 1;
}

/* --- Сітка карток -------------------------------------------------------- */
.news_grid {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 1rem 1fr 1rem 1fr;
  grid-template-columns: repeat(3, 1fr);
  gap: 4.5rem 1rem;
}

.news_card .news_card_img {
  display: block;
  aspect-ratio: 427/280;
  border-radius: 20px;
  overflow: hidden;
  background: #F5F6F8;
  -webkit-box-shadow: 4px 4px 16px rgba(0, 0, 0, 0.16);
          box-shadow: 4px 4px 16px rgba(0, 0, 0, 0.16);
}
.news_card .news_card_img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-transition: -webkit-transform 0.5s;
  transition: -webkit-transform 0.5s;
  transition: transform 0.5s;
  transition: transform 0.5s, -webkit-transform 0.5s;
}
.news_card .news_card_img:hover img {
  -webkit-transform: scale(1.04);
      -ms-transform: scale(1.04);
          transform: scale(1.04);
}
.news_card .news_card_date {
  color: #6B7280;
}
.news_card .news_card_excerpt {
  color: #6B7280;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.news_empty {
  color: #6B7280;
}

/* --- Пагінація (архіви новин і професій) ---------------------------------- */
.pagination_block .nav-links {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 0.5rem;
}

.pagination_block .page-numbers {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  min-width: 2.5rem;
  height: 2.5rem;
  padding: 0 0.75rem;
  border: 1px solid #E5E7EB;
  border-radius: 10px;
  color: #111111;
  -webkit-transition: border-color 0.2s, background 0.2s;
  transition: border-color 0.2s, background 0.2s;
}
.pagination_block .page-numbers:hover {
  border-color: #111111;
}
.pagination_block .page-numbers.current {
  border-color: #111111;
  background: #111111;
  color: #FFFFFF;
}
.pagination_block .page-numbers.dots {
  border-color: transparent;
  pointer-events: none;
}

/* --- Сторінка новини ----------------------------------------------------- */
.news_single {
  padding-top: 4.5rem;
}
.news_single .news_breadcrumbs {
  margin-bottom: 5rem;
  color: #6B7280;
}
.news_single .news_breadcrumbs a {
  color: #6B7280;
}
.news_single .news_breadcrumbs a:hover {
  color: #111111;
}
.news_single .news_breadcrumbs .separator {
  margin: 0 0.5rem;
}
.news_single .news_breadcrumbs .last {
  color: #111111;
}
.news_single .news_single_date {
  color: #6B7280;
}
.news_single .news_single_title {
  font-weight: 400;
}
.news_single .news_single_head,
.news_single .news_single_content {
  max-width: 50rem;
  margin-left: auto;
  margin-right: auto;
}
.news_single .news_single_content {
  margin-top: 2.5rem;
  color: #6B7280;
}
.news_single .news_single_content > * + * {
  margin-top: 1rem;
}
.news_single .news_single_content > figure,
.news_single .news_single_content > .wp-block-image,
.news_single .news_single_content > .wp-block-gallery,
.news_single .news_single_content > .wp-block-embed {
  margin-top: 2.5rem;
  margin-bottom: 2.5rem;
}
.news_single .news_single_content h2, .news_single .news_single_content h3, .news_single .news_single_content h4 {
  font-weight: 700;
  color: #111111;
}
.news_single .news_single_content strong, .news_single .news_single_content b {
  color: #111111;
}
.news_single .news_single_content a {
  color: #111111;
  text-decoration: underline;
}
.news_single .news_single_content ul, .news_single .news_single_content ol {
  padding-left: 1.5rem;
}
.news_single .news_single_content ul li + li, .news_single .news_single_content ol li + li {
  margin-top: 0.5rem;
}
.news_single .news_single_content ul li {
  list-style: disc;
}
.news_single .news_single_content ol li {
  list-style: decimal;
}
.news_single .news_single_content img {
  max-width: 100%;
  height: auto;
  border-radius: 20px;
}
.news_single .news_single_content iframe {
  max-width: 100%;
  border-radius: 20px;
}
.news_single .news_more {
  margin-top: 6.5rem;
  padding: 6.5rem 0;
}
.news_single .news_more .content_block {
  gap: 4.5rem;
}

/* --- Сторінка конкурсу ---------------------------------------------------- */
.contest_single .news_single_content .wp-block-gallery {
  gap: 0.5rem;
}
.contest_single .contest_apply_wrap {
  margin-top: 2rem;
}
.contest_single .contest_apply {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  height: 3.75rem;
  padding: 0 2.5rem;
  border-radius: 12px;
  background: #111111;
  color: #FFFFFF;
  -webkit-transition: opacity 0.2s;
  transition: opacity 0.2s;
}
.contest_single .contest_apply:hover {
  opacity: 0.85;
}

@media (max-width: 1023px) {
  .news_grid {
    -ms-grid-columns: 1fr 1rem 1fr;
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem 1rem;
  }
  .news_archive {
    padding: 2.5rem 0 3.5rem;
  }
  .news_archive > .content_block {
    gap: 2.5rem;
  }
  .news_tabs {
    overflow-x: auto;
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
  }
  .news_single {
    padding-top: 1.5rem;
  }
  .news_single .news_breadcrumbs {
    margin-bottom: 2rem;
  }
  .news_single .news_more {
    margin-top: 3.5rem;
    padding: 3.5rem 0;
  }
  .news_single .news_more .content_block {
    gap: 2.5rem;
  }
}
@media (max-width: 560px) {
  .news_grid {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }
}
/* ==========================================================================
   Архів професій
   ========================================================================== */
.professions_head {
  padding: 3.5rem 0 2.5rem;
}
.professions_head .professions_subtitle {
  color: #6B7280;
  max-width: 46em;
}

.professions_banner img {
  display: block;
  width: 100%;
  height: clamp(16rem, 30vw, 26rem);
  -o-object-fit: cover;
     object-fit: cover;
}

.professions_archive {
  padding: 3rem 0 5rem;
}

/* --- Таби напрямів ------------------------------------------------------- */
.professions_tabs {
  gap: 2rem;
  border-bottom: 1px solid #E5E7EB;
}

.professions_tab {
  position: relative;
  padding: 0.75rem 0;
  color: #6B7280;
  -webkit-transition: color 0.2s;
  transition: color 0.2s;
  white-space: nowrap;
}
.professions_tab::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  height: 2px;
  background: #111111;
  opacity: 0;
  -webkit-transition: opacity 0.2s;
  transition: opacity 0.2s;
}
.professions_tab:hover {
  color: #111111;
}
.professions_tab.is-active {
  color: #111111;
}
.professions_tab.is-active::after {
  opacity: 1;
}

/* --- Пошук і селекти ----------------------------------------------------- */
.professions_search {
  position: relative;
  -webkit-box-flex: 0;
      -ms-flex: 0 1 26rem;
          flex: 0 1 26rem;
}
.professions_search svg {
  position: absolute;
  left: 1rem;
  top: 50%;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
  color: #6B7280;
  pointer-events: none;
}
.professions_search input {
  width: 100%;
  height: 3rem;
  padding: 0 1rem 0 2.75rem;
  border: 1px solid #E5E7EB;
  border-radius: 12px;
  background: #FFFFFF;
  color: #111111;
  font: inherit;
}
.professions_search input:focus {
  outline: none;
  border-color: #1F5FD6;
}

.professions_select {
  height: 3rem;
  padding: 0 2.5rem 0 1rem;
  border: 1px solid #E5E7EB;
  border-radius: 12px;
  background: #FFFFFF;
  color: #111111;
  cursor: pointer;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8' fill='none'%3E%3Cpath d='M1 1.5 6 6.5l5-5' stroke='%23111' stroke-width='1.6' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
}
.professions_select:focus {
  outline: none;
  border-color: #1F5FD6;
}

.professions_count {
  color: #6B7280;
  margin-top: -1rem;
}

.professions_empty {
  color: #6B7280;
}

/* --- Сітка карток -------------------------------------------------------- */
.professions_grid {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 2rem 1fr 2rem 1fr;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem 2rem;
}

.profession_card .profession_card_img {
  display: block;
  aspect-ratio: 4/3;
  border-radius: 16px;
  overflow: hidden;
  background: #F5F6F8;
}
.profession_card .profession_card_img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-transition: -webkit-transform 0.5s;
  transition: -webkit-transform 0.5s;
  transition: transform 0.5s;
  transition: transform 0.5s, -webkit-transform 0.5s;
}
.profession_card .profession_card_img:hover img {
  -webkit-transform: scale(1.04);
      -ms-transform: scale(1.04);
          transform: scale(1.04);
}
.profession_card .profession_card_field {
  -ms-flex-item-align: start;
      align-self: flex-start;
}
.profession_card .profession_card_excerpt {
  color: #6B7280;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.profession_card .profession_card_level {
  margin-top: 0.25rem;
  color: #6B7280;
}
.profession_card .profession_card_level svg {
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

@media (max-width: 1023px) {
  .professions_grid {
    -ms-grid-columns: 1fr 1.5rem 1fr;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem 1.5rem;
  }
  .professions_tabs {
    gap: 1.25rem;
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
    overflow-x: auto;
  }
  .professions_filters .professions_search {
    -webkit-box-flex: 1;
        -ms-flex: 1 1 100%;
            flex: 1 1 100%;
  }
  .professions_filters .professions_selects {
    width: 100%;
  }
  .professions_filters .professions_select {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
  }
}
@media (max-width: 560px) {
  .professions_grid {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }
}
/* ==========================================================================
   Вакансії: картка (блок 26 і «Інші вакансії») та сторінка вакансії
   ========================================================================== */
.vacancy_grid {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 1rem 1fr 1rem 1fr;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem 1rem;
}

.vacancy_card_link {
  gap: 1rem;
  color: #111111;
}
.vacancy_card_link:hover .vacancy_card_image img {
  -webkit-transform: scale(1.04);
      -ms-transform: scale(1.04);
          transform: scale(1.04);
}
.vacancy_card_link:hover .vacancy_card_title {
  text-decoration: underline;
}

.vacancy_card_image {
  aspect-ratio: 427/280;
  overflow: hidden;
  border-radius: 20px;
  background: #E5E7EB;
}
.vacancy_card_image img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-transition: -webkit-transform 0.5s;
  transition: -webkit-transform 0.5s;
  transition: transform 0.5s;
  transition: transform 0.5s, -webkit-transform 0.5s;
}

.vacancy_card_excerpt,
.vacancy_card_details {
  color: #6B7280;
}

.vacancy_card_details svg {
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

/* --- Сторінка вакансії --------------------------------------------------- */
.vacancy_single {
  padding-top: 6.5rem;
}
.vacancy_single > .content_block {
  gap: 4.5rem;
}
.vacancy_single .vacancy_breadcrumbs {
  color: #6B7280;
}
.vacancy_single .vacancy_breadcrumbs a {
  color: #6B7280;
}
.vacancy_single .vacancy_breadcrumbs a:hover {
  color: #111111;
}
.vacancy_single .vacancy_breadcrumbs .separator {
  margin: 0 0.5rem;
}
.vacancy_single .vacancy_breadcrumbs [aria-current] {
  color: #111111;
}
.vacancy_single .vacancy_layout {
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 5rem;
}
.vacancy_single .vacancy_main {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 49.4%;
          flex: 0 0 49.4%;
  min-width: 0;
  gap: 2.5rem;
}
.vacancy_single .vacancy_date {
  color: #6B7280;
}
.vacancy_single .vacancy_title {
  font-weight: 400;
}
.vacancy_single .vacancy_content {
  color: #6B7280;
}
.vacancy_single .vacancy_content > * + * {
  margin-top: 1rem;
}
.vacancy_single .vacancy_content h2, .vacancy_single .vacancy_content h3, .vacancy_single .vacancy_content h4 {
  font-weight: 700;
  color: #111111;
  margin-top: 2.5rem;
  margin-bottom: 1.5rem;
}
.vacancy_single .vacancy_content h2 + *, .vacancy_single .vacancy_content h3 + *, .vacancy_single .vacancy_content h4 + * {
  margin-top: 0;
}
.vacancy_single .vacancy_content ul, .vacancy_single .vacancy_content ol {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 1rem;
  padding-left: 1.5rem;
}
.vacancy_single .vacancy_content ul li {
  list-style: disc;
}
.vacancy_single .vacancy_content ol li {
  list-style: decimal;
}
.vacancy_single .vacancy_content a {
  color: #111111;
  text-decoration: underline;
}
.vacancy_single .vacancy_aside {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 41%;
          flex: 0 0 41%;
  position: sticky;
  top: calc(var(--header-height, 5rem) + 2rem);
}
.vacancy_single .vacancy_card_facts {
  gap: 2.5rem;
  padding: 2.5rem;
  border-radius: 20px;
  -webkit-box-shadow: 0 25px 50px rgba(0, 0, 0, 0.25);
          box-shadow: 0 25px 50px rgba(0, 0, 0, 0.25);
}
.vacancy_single .vacancy_card_facts .contact_icon {
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 14px;
}
.vacancy_single .vacancy_apply {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  height: 3.75rem;
  padding: 0 1.5rem;
  border-radius: 12px;
  background: #FFFFFF;
  color: #111111;
  text-align: center;
  -webkit-transition: opacity 0.2s;
  transition: opacity 0.2s;
}
.vacancy_single .vacancy_apply:hover {
  opacity: 0.85;
}
.vacancy_single .vacancy_apply:focus-visible {
  outline: 2px solid #FFFFFF;
  outline-offset: 3px;
}
.vacancy_single .vacancy_others {
  padding: 6.5rem 0;
}
.vacancy_single .vacancy_others .content_block {
  gap: 4.5rem;
}

@media (max-width: 1023px) {
  .vacancy_grid {
    -ms-grid-columns: 1fr 1rem 1fr;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem 1rem;
  }
  .vacancy_single {
    padding-top: 2.5rem;
  }
  .vacancy_single > .content_block {
    gap: 2rem;
  }
  .vacancy_single .vacancy_layout {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 2.5rem;
  }
  .vacancy_single .vacancy_main,
  .vacancy_single .vacancy_aside {
    -webkit-box-flex: 0;
        -ms-flex: none;
            flex: none;
    width: 100%;
  }
  .vacancy_single .vacancy_main {
    gap: 1.5rem;
  }
  .vacancy_single .vacancy_aside {
    position: static;
  }
  .vacancy_single .vacancy_card_facts {
    padding: 2rem;
  }
  .vacancy_single .vacancy_others {
    padding: 3.5rem 0;
  }
  .vacancy_single .vacancy_others .content_block {
    gap: 2.5rem;
  }
}
@media (max-width: 560px) {
  .vacancy_grid {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }
}
/* ==========================================================================
   Блоки — scss лежить у папці блоку, поруч із php
   Новий блок: додати рядок сюди після створення modules/block_N/_block_N.scss
   ========================================================================== */
/**
 * Block 1 — Hero.
 * Шаблон: block_1.php (поруч)
 */
.block_1 {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  min-height: min(46rem, 100vh);
  padding: 5rem 0;
  overflow: hidden;
  color: #FFFFFF;
}
.block_1 .hero_bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  z-index: 1;
}
.block_1::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  background: -webkit-gradient(linear, left top, right top, from(rgba(0, 0, 0, 0.88)), color-stop(35%, rgba(0, 0, 0, 0.72)), color-stop(62%, rgba(0, 0, 0, 0.3)), color-stop(85%, rgba(0, 0, 0, 0)));
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.88) 0%, rgba(0, 0, 0, 0.72) 35%, rgba(0, 0, 0, 0.3) 62%, rgba(0, 0, 0, 0) 85%);
}
.block_1 .content_block {
  z-index: 3;
}
.block_1 .hero_content {
  max-width: 55%;
  gap: 1.5rem;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
.block_1 .hero_title {
  color: #FFFFFF;
}
.block_1 .hero_subtitle {
  max-width: 34em;
  color: rgba(255, 255, 255, 0.88);
}
.block_1 .hero_buttons {
  margin-top: 1rem;
}
.block_1 .button_color, .block_1 .button_color_sm {
  background: #FFFFFF;
  border-color: #FFFFFF;
  color: #111111;
}
.block_1 .button_color:hover, .block_1 .button_color_sm:hover {
  background: rgba(255, 255, 255, 0.88);
  border-color: rgba(255, 255, 255, 0.88);
}
.block_1 .button_xl, .block_1 .button_sm {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.65);
  color: #FFFFFF;
}
.block_1 .button_xl:hover, .block_1 .button_sm:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: #FFFFFF;
}
.block_1 .hero_features {
  margin-top: 1.5rem;
  -webkit-column-gap: 2.5rem;
     -moz-column-gap: 2.5rem;
          column-gap: 2.5rem;
  row-gap: 1rem;
}
.block_1 .hero_feature_icon {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  color: #E0A800;
}

@media (max-width: 1200px) {
  .block_1 .hero_content {
    max-width: 70%;
  }
}
@media (max-width: 1023px) {
  .block_1 {
    min-height: 0;
    padding: 4rem 0;
  }
  .block_1 .hero_content {
    max-width: 100%;
  }
  .block_1::after {
    background: rgba(0, 0, 0, 0.72);
  }
  .block_1 .hero_features {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-column-gap: 0;
       -moz-column-gap: 0;
            column-gap: 0;
  }
}
/**
 * Block 2 — Про нас.
 * Шаблон: block_2.php (поруч)
 */
.block_2 {
  padding: 5rem 0;
}
.block_2 .content_block {
  gap: 3rem;
}
.block_2 {
  /* --- Ряд 1: текст + кнопка ------------------------------------------ */
}
.block_2 .about_head {
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}
.block_2 .about_head_text {
  max-width: 52%;
}
.block_2 .about_eyebrow {
  color: #E0A800;
}
.block_2 .about_head_action {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  padding-bottom: 0.25rem;
}
.block_2 {
  /* --- Ряд 2: фото + показники ---------------------------------------- */
}
.block_2 .about_body > .about_image {
  -webkit-box-flex: 1.15;
      -ms-flex: 1.15;
          flex: 1.15;
}
.block_2 .about_body > .about_stats {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.block_2 .about_image {
  min-width: 0;
}
.block_2 .about_image img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 16px;
}
.block_2 .about_stats {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 1rem 1fr;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  min-width: 0;
}
.block_2 .about_stat {
  min-height: 15rem;
  padding: 1.5rem;
  background: #F5F6F8;
  border-radius: 16px;
}
.block_2 .about_stat_label {
  color: #6B7280;
}
.block_2 .about_stat_value {
  font-size: 3.5rem;
  line-height: 1;
  margin-top: auto;
}

@media (max-width: 1023px) {
  .block_2 {
    padding: 3.5rem 0;
  }
  .block_2 .content_block {
    gap: 2rem;
  }
  .block_2 .about_head {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    gap: 1.5rem;
  }
  .block_2 .about_head_text {
    max-width: 100%;
  }
  .block_2 .about_head_action {
    padding-bottom: 0;
  }
  .block_2 .about_body {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .block_2 .about_image img {
    height: auto;
    aspect-ratio: 4/3;
  }
  .block_2 .about_stat {
    min-height: 11rem;
    padding: 1.25rem;
  }
  .block_2 .about_stat_value {
    font-size: 2.5rem;
  }
}
@media (max-width: 560px) {
  .block_2 .about_stats {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }
}
/**
 * Block 3 — Обери напрям.
 * Шаблон: block_3.php (поруч)
 */
.block_3 {
  padding: 5rem 0;
  background: #F5F6F8;
}
.block_3 .content_block {
  gap: 3rem;
}
.block_3 {
  /* --- Шапка ----------------------------------------------------------- */
}
.block_3 .fields_eyebrow {
  color: #E0A800;
}
.block_3 .fields_subtitle {
  max-width: 38em;
  color: #6B7280;
}
.block_3 {
  /* --- Сітка карток ---------------------------------------------------- */
}
.block_3 .fields_grid {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 1.5rem 1fr 1.5rem 1fr 1.5rem 1fr;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  width: 100%;
}
.block_3 .fields_card {
  position: relative;
  display: block;
  aspect-ratio: 3/4;
  border-radius: 20px;
  overflow: hidden;
  background: #111111;
}
.block_3 .fields_card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: -webkit-gradient(linear, left top, left bottom, color-stop(45%, rgba(0, 0, 0, 0)), to(rgba(0, 0, 0, 0.75)));
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 45%, rgba(0, 0, 0, 0.75) 100%);
}
.block_3 .fields_card:hover .fields_card_img {
  -webkit-transform: scale(1.04);
      -ms-transform: scale(1.04);
          transform: scale(1.04);
}
.block_3 .fields_card_img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-transition: -webkit-transform 0.5s;
  transition: -webkit-transform 0.5s;
  transition: transform 0.5s;
  transition: transform 0.5s, -webkit-transform 0.5s;
}
.block_3 .fields_card_title {
  position: absolute;
  z-index: 2;
  left: 1.5rem;
  right: 1.5rem;
  bottom: 1.5rem;
  color: #FFFFFF;
}

@media (max-width: 1023px) {
  .block_3 {
    padding: 3.5rem 0;
  }
  .block_3 .content_block {
    gap: 2rem;
  }
  .block_3 .fields_grid {
    -ms-grid-columns: 1fr 1rem 1fr;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }
  .block_3 .fields_card_title {
    left: 1rem;
    right: 1rem;
    bottom: 1rem;
  }
}
@media (max-width: 560px) {
  .block_3 .fields_grid {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }
}
/**
 * Block 4 — Слайдер навчальних умов.
 * Шаблон: block_4.php (поруч)
 */
.block_4 {
  padding: 5rem 0;
  --slider-content: min(90rem, 90%);
  --slider-gap: 1.5rem;
}
.block_4 .conditions_head {
  margin-bottom: 2.5rem;
}
.block_4 .conditions_eyebrow {
  color: #E0A800;
}
.block_4 .conditions_head_text {
  max-width: 52%;
}
.block_4 {
  /* --- Стрілки --------------------------------------------------------- */
}
.block_4 .conditions_nav {
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.block_4 .conditions_arrow {
  width: 3rem;
  height: 3rem;
  border: 1px solid #E5E7EB;
  border-radius: 50%;
  background: #FFFFFF;
  color: #111111;
  -webkit-transition: all 0.25s;
  transition: all 0.25s;
}
.block_4 .conditions_arrow:hover {
  border-color: #111111;
}
.block_4 .conditions_arrow.swiper-button-disabled {
  opacity: 0.35;
  cursor: default;
  border-color: #E5E7EB;
}
.block_4 {
  /* --- Слайдер --------------------------------------------------------- */
}
.block_4 .conditions_slider {
  width: 100%;
}
.block_4 .conditions_slide {
  width: calc((var(--slider-content) - 3 * var(--slider-gap)) / 4);
  height: auto;
}
.block_4 .conditions_slide_img {
  aspect-ratio: 3/4;
  border-radius: 16px;
  overflow: hidden;
  background: #F5F6F8;
}
.block_4 .conditions_slide_img img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.block_4 .conditions_slide_text {
  color: #6B7280;
}
.block_4 {
  /* --- Кнопки ---------------------------------------------------------- */
}
.block_4 .conditions_buttons {
  margin-top: 3rem;
}

@media (max-width: 1023px) {
  .block_4 {
    padding: 3.5rem 0;
    --slider-gap: 1rem;
  }
  .block_4 .conditions_head {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    gap: 1.5rem;
    margin-bottom: 2rem;
  }
  .block_4 .conditions_head_text {
    max-width: 100%;
  }
  .block_4 .conditions_slide {
    width: calc((90% - var(--slider-gap)) / 2);
  }
  .block_4 .conditions_buttons {
    margin-top: 2rem;
  }
}
@media (max-width: 560px) {
  .block_4 .conditions_slide {
    width: 74vw;
  }
}
/**
 * Block 5 — Партнери.
 * Шаблон: block_5.php (поруч)
 */
.block_5 {
  padding: 5rem 0;
}
.block_5 .partners_eyebrow {
  color: #E0A800;
}
.block_5 .partners_subtitle {
  max-width: 46em;
  color: #6B7280;
}
.block_5 {
  /* --- Безперервна стрічка --------------------------------------------- */
}
.block_5 .partners_marquee {
  margin-top: 3.5rem;
  overflow: hidden;
}
.block_5 .partners_track {
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  -webkit-animation: vpu29_marquee var(--marquee-duration, 40s) linear infinite;
          animation: vpu29_marquee var(--marquee-duration, 40s) linear infinite;
}
@-webkit-keyframes vpu29_marquee {
  from {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  to {
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
}
@keyframes vpu29_marquee {
  from {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  to {
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
}
.block_5 .partners_marquee:hover .partners_track,
.block_5 .partners_marquee:focus-within .partners_track {
  -webkit-animation-play-state: paused;
          animation-play-state: paused;
}
.block_5 .partners_set {
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.block_5 .partners_item {
  width: 15rem;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  padding: 0 1rem;
}
.block_5 .partners_logo {
  display: block;
  max-width: 100%;
  height: 3rem;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: center;
     object-position: center;
}
.block_5 .partners_name {
  color: #6B7280;
  text-align: center;
}
.block_5 .partners_link {
  -webkit-transition: opacity 0.25s;
  transition: opacity 0.25s;
}
.block_5 .partners_link:hover {
  opacity: 0.65;
}
.block_5 .partners_button {
  margin-top: 3.5rem;
}

@media (prefers-reduced-motion: reduce) {
  .block_5 .partners_track {
    -webkit-animation: none;
            animation: none;
  }
  .block_5 .partners_marquee {
    overflow-x: auto;
  }
}
@media (max-width: 1023px) {
  .block_5 {
    padding: 3.5rem 0;
  }
  .block_5 .partners_marquee {
    margin-top: 2.5rem;
  }
  .block_5 .partners_button {
    margin-top: 2.5rem;
  }
  .block_5 .partners_item {
    width: 11rem;
    padding: 0 0.75rem;
  }
  .block_5 .partners_logo {
    height: 2.25rem;
  }
}
/**
 * Block 6 — CTA-картка.
 * Шаблон: block_6.php (поруч)
 */
.block_6 {
  padding: 2.5rem 0 5rem;
}
.block_6 .cta_card {
  position: relative;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  border-radius: 24px;
  overflow: hidden;
  color: #FFFFFF;
  background: #262626;
  background-image: radial-gradient(60% 80% at 30% 55%, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0) 100%);
}
.block_6 .cta_card--has_media {
  min-height: 32rem;
}
.block_6 .cta_card_media {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 46%;
          flex: 0 0 46%;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  min-width: 0;
}
.block_6 .cta_card_media img {
  display: block;
  max-width: 100%;
  max-height: 100%;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: bottom center;
     object-position: bottom center;
}
.block_6 .cta_card_body {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  min-width: 0;
  padding: 4rem 4.5rem 4rem 2rem;
}
.block_6 .cta_card_title {
  color: #FFFFFF;
}
.block_6 .cta_card_text {
  max-width: 32em;
  color: rgba(255, 255, 255, 0.78);
}
.block_6 .cta_card_action {
  margin-top: 0.5rem;
}
.block_6 .button_color, .block_6 .button_color_sm {
  background: #FFFFFF;
  border-color: #FFFFFF;
  color: #111111;
}
.block_6 .button_color:hover, .block_6 .button_color_sm:hover {
  background: rgba(255, 255, 255, 0.88);
  border-color: rgba(255, 255, 255, 0.88);
}
.block_6 .cta_card:not(.cta_card--has_media) .cta_card_body {
  padding: 3.5rem 4.5rem 3.5rem 2rem;
}

@media (max-width: 1023px) {
  .block_6 {
    padding: 2rem 0 3.5rem;
  }
  .block_6 .cta_card {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    min-height: 0;
    border-radius: 20px;
  }
  .block_6 .cta_card_media {
    -webkit-box-flex: 0;
        -ms-flex: none;
            flex: none;
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
  }
  .block_6 .cta_card_media img {
    max-height: 22rem;
  }
  .block_6 .cta_card_body {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
    padding: 2.5rem 2rem 2rem;
  }
  .block_6 .cta_card:not(.cta_card--has_media) .cta_card_body {
    padding: 2.5rem 2rem;
  }
  .block_6 .cta_card:not(.cta_card--has_media) .cta_card_media {
    display: none;
  }
}
/**
 * Block 7 — Переваги.
 * Шаблон: block_7.php (поруч)
 */
.block_7 {
  padding: 5rem 0;
}
.block_7 .content_block {
  gap: 3.5rem;
}
.block_7 .advantages_eyebrow {
  color: #E0A800;
}
.block_7 .advantages_subtitle {
  max-width: 42em;
  color: #6B7280;
}
.block_7 {
  /* --- Сітка ------------------------------------------------------------ */
}
.block_7 .advantages_grid {
  display: -ms-grid;
  display: grid;
  gap: 1.5rem;
  width: 100%;
}
.block_7 .advantages_grid--3 {
  -ms-grid-columns: (1fr)[3];
  grid-template-columns: repeat(3, 1fr);
}
.block_7 .advantages_grid--4 {
  -ms-grid-columns: (1fr)[4];
  grid-template-columns: repeat(4, 1fr);
}
.block_7 .advantages_button {
  margin-top: 1rem;
}
.block_7 .advantage_card {
  padding: 2.5rem;
  border-radius: 20px;
  background: #F5F6F8;
}
.block_7 .advantage_icon {
  width: 4rem;
  height: 4rem;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  border-radius: 18px;
  background: #111111;
  color: #FFFFFF;
  margin-bottom: 2.5rem;
}
.block_7 .advantage_icon img {
  width: 1.75rem;
  height: 1.75rem;
  -o-object-fit: contain;
     object-fit: contain;
}
.block_7 .advantage_body {
  margin-top: auto;
}
.block_7 .advantage_text {
  color: #6B7280;
}

@media (max-width: 1023px) {
  .block_7 {
    padding: 3.5rem 0;
  }
  .block_7 .content_block {
    gap: 2.5rem;
  }
  .block_7 .advantages_grid--3,
  .block_7 .advantages_grid--4 {
    -ms-grid-columns: 1fr 1rem 1fr;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }
  .block_7 .advantage_card {
    padding: 1.75rem;
  }
  .block_7 .advantage_icon {
    width: 3.25rem;
    height: 3.25rem;
    border-radius: 14px;
    margin-bottom: 1.75rem;
  }
  .block_7 .advantage_icon img {
    width: 1.5rem;
    height: 1.5rem;
  }
}
@media (max-width: 1200px) {
  .block_7 .advantages_grid--4 {
    -ms-grid-columns: (1fr)[2];
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 560px) {
  .block_7 .advantages_grid--3,
  .block_7 .advantages_grid--4 {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }
}
/**
 * Block 8 — Історії студентів.
 * Шаблон: block_8.php (поруч)
 */
.block_8 {
  padding: 5rem 0;
  --slider-content: min(90rem, 90%);
  --slider-gap: 1.5rem;
}
.block_8 .stories_head {
  margin-bottom: 2.5rem;
}
.block_8 .stories_eyebrow {
  color: #E0A800;
}
.block_8 {
  /* --- Стрілки ---------------------------------------------------------- */
}
.block_8 .stories_nav {
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.block_8 .stories_arrow {
  width: 3rem;
  height: 3rem;
  border: 1px solid #E5E7EB;
  border-radius: 50%;
  background: #FFFFFF;
  color: #111111;
  -webkit-transition: all 0.25s;
  transition: all 0.25s;
}
.block_8 .stories_arrow:hover {
  border-color: #111111;
}
.block_8 .stories_arrow.swiper-button-disabled {
  opacity: 0.35;
  cursor: default;
  border-color: #E5E7EB;
}
.block_8 {
  /* --- Слайдер ---------------------------------------------------------- */
}
.block_8 .stories_slider {
  width: 100%;
}
.block_8 .swiper-wrapper {
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
.block_8 .stories_slide {
  width: calc((var(--slider-content) - 2 * var(--slider-gap)) / 3);
  height: auto;
}
.block_8 .story_card {
  height: 100%;
  padding: 2rem;
  border-radius: 20px;
  background: #F5F6F8;
}
.block_8 .story_quote {
  color: #E0A800;
  line-height: 0;
}
.block_8 .story_text {
  margin: 0;
}
.block_8 .story_text p {
  margin: 0;
}
.block_8 .story_text p + p {
  margin-top: 1rem;
}
.block_8 .story_author {
  margin-top: auto;
  padding-top: 0.5rem;
}
.block_8 .story_photo {
  width: 3.5rem;
  height: 3.5rem;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  border-radius: 50%;
  -o-object-fit: cover;
     object-fit: cover;
}
.block_8 .story_role {
  color: #6B7280;
}

@media (max-width: 1023px) {
  .block_8 {
    padding: 3.5rem 0;
    --slider-gap: 1rem;
  }
  .block_8 .stories_head {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    gap: 1.5rem;
    margin-bottom: 2rem;
  }
  .block_8 .stories_slide {
    width: calc((90% - var(--slider-gap)) / 2);
  }
  .block_8 .story_card {
    padding: 1.5rem;
  }
}
@media (max-width: 560px) {
  .block_8 .stories_slide {
    width: 82vw;
  }
}
/**
 * Block 9 — Новини на головній.
 * Шаблон: block_9.php (поруч)
 *
 * Сітка й картки успадковані з розділу новин (.news_grid / .news_card),
 * тут лише шапка блоку.
 */
.block_9 {
  padding: 5rem 0;
}
.block_9 .news_block_head {
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}
.block_9 .news_block_eyebrow {
  color: #E0A800;
}
.block_9 .news_block_head_text {
  max-width: 60%;
}
.block_9 .button_xl, .block_9 .button_sm {
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

@media (max-width: 1023px) {
  .block_9 {
    padding: 3.5rem 0;
  }
  .block_9 .news_block_head {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    gap: 1.5rem;
  }
  .block_9 .news_block_head_text {
    max-width: 100%;
  }
}
/**
 * Block 10 — Контакти.
 * Шаблон: block_10.php (поруч)
 */
.block_10 {
  padding: 5rem 0;
}
.block_10 .contacts_eyebrow {
  color: #E0A800;
}
.block_10 .contacts_subtitle {
  max-width: 42em;
  color: #6B7280;
}
.block_10 {
  /* --- Картка + мапа ---------------------------------------------------- */
}
.block_10 .contacts_body {
  margin-top: 3.5rem;
}
.block_10 .contacts_card {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 34rem;
          flex: 0 0 34rem;
  max-width: 34rem;
  position: relative;
  z-index: 2;
}
.block_10 .contacts_map {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  min-width: 0;
  -ms-flex-item-align: stretch;
      -ms-grid-row-align: stretch;
      align-self: stretch;
  margin-left: -2rem;
  border-radius: 24px;
  overflow: hidden;
}
.block_10 .contacts_map iframe {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 30rem;
  border: 0;
}

@media (max-width: 1200px) {
  .block_10 .contacts_card {
    -ms-flex-preferred-size: 28rem;
        flex-basis: 28rem;
    padding: 2.5rem;
  }
}
@media (max-width: 1023px) {
  .block_10 {
    padding: 3.5rem 0;
  }
  .block_10 .contacts_body {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 1.5rem;
  }
  .block_10 .contacts_card {
    -webkit-box-flex: 0;
        -ms-flex: none;
            flex: none;
    max-width: 100%;
    width: 100%;
    padding: 2rem;
  }
  .block_10 .contacts_map {
    margin-left: 0;
    width: 100%;
    border-radius: 20px;
  }
  .block_10 .contacts_map iframe {
    min-height: 22rem;
  }
}
/**
 * Block 11 — Шапка сторінки з банером.
 * Шаблон: block_11.php (поруч)
 */
.block_11 {
  padding-top: 3.5rem;
}
.block_11 .page_head {
  padding-bottom: 2.5rem;
}
.block_11 .page_head_subtitle {
  max-width: 46em;
  color: #6B7280;
}
.block_11 .page_head_banner img {
  display: block;
  width: 100%;
  height: clamp(16rem, 30vw, 26rem);
  -o-object-fit: cover;
     object-fit: cover;
}

@media (max-width: 1023px) {
  .block_11 {
    padding-top: 2.5rem;
  }
  .block_11 .page_head {
    padding-bottom: 2rem;
  }
  .block_11 .page_head_banner img {
    height: clamp(12rem, 38vw, 18rem);
  }
}
/**
 * Block 12 — Кроки вступу.
 * Шаблон: block_12.php (поруч)
 */
.block_12 {
  padding: 5rem 0;
}
.block_12 .content_block {
  gap: 3.5rem;
}
.block_12 .steps_subtitle {
  color: #6B7280;
}
.block_12 {
  /* --- Сітка кроків ----------------------------------------------------- */
}
.block_12 .steps_grid {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 1.5rem 1fr 1.5rem 1fr;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  width: 100%;
}
.block_12 .step_card {
  padding: 2.5rem;
  border-radius: 20px;
  background: #F5F6F8;
}
.block_12 .step_number {
  width: 4rem;
  height: 4rem;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  border-radius: 18px;
  background: #111111;
  color: #FFFFFF;
  font-size: 1.5rem;
  line-height: 1;
  margin-bottom: 2.5rem;
}
.block_12 .step_text {
  color: #6B7280;
}
.block_12 .step_text p {
  margin: 0;
}
.block_12 .step_text p + p {
  margin-top: 0.75rem;
}
.block_12 .step_text a {
  color: inherit;
  text-decoration: underline;
}
.block_12 .step_text a:hover {
  color: #111111;
}

@media (max-width: 1023px) {
  .block_12 {
    padding: 3.5rem 0;
  }
  .block_12 .content_block {
    gap: 2.5rem;
  }
  .block_12 .steps_grid {
    -ms-grid-columns: 1fr 1rem 1fr;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }
  .block_12 .step_card {
    padding: 1.75rem;
  }
  .block_12 .step_number {
    width: 3.25rem;
    height: 3.25rem;
    border-radius: 14px;
    font-size: 1.25rem;
    margin-bottom: 1.75rem;
  }
}
@media (max-width: 560px) {
  .block_12 .steps_grid {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }
}
/**
 * Block 13 — Правила прийому.
 * Шаблон: block_13.php (поруч)
 */
.block_13 {
  padding: 5rem 0;
  /* --- Верхній ряд: текст + фото ---------------------------------------- */
}
.block_13 .rules_top {
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.block_13 .rules_text {
  -webkit-box-flex: 0;
      -ms-flex: 0 1 46%;
          flex: 0 1 46%;
  max-width: 46%;
}
.block_13 .rules_intro {
  color: #6B7280;
}
.block_13 .rules_check {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  color: #FFC629;
}
.block_13 .rules_note {
  margin-top: 1rem;
  color: #6B7280;
}
.block_13 .rules_image {
  -webkit-box-flex: 0;
      -ms-flex: 0 1 46%;
          flex: 0 1 46%;
  max-width: 46%;
}
.block_13 .rules_image img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 20px;
}
.block_13 {
  /* --- Картка документів ------------------------------------------------ */
}
.block_13 .rules_docs {
  padding: 2.5rem;
  border-radius: 20px;
  background: #F5F6F8;
}
.block_13 .rules_docs_title {
  margin-bottom: 1rem;
}

@media (max-width: 1023px) {
  .block_13 {
    padding: 3.5rem 0;
  }
  .block_13 .rules_top {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .block_13 .rules_text,
  .block_13 .rules_image {
    -webkit-box-flex: 0;
        -ms-flex: none;
            flex: none;
    max-width: 100%;
    width: 100%;
  }
  .block_13 .rules_image img {
    height: auto;
    aspect-ratio: 4/3;
  }
  .block_13 .rules_docs {
    padding: 1.5rem;
  }
}
/**
 * Block 14 — Документи для вступу.
 * Шаблон: block_14.php (поруч)
 */
.block_14 {
  padding: 5rem 0;
}
.block_14 .docs_columns > .docs_card {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  min-width: 0;
}
.block_14 .docs_card {
  padding: 3rem 2.5rem;
  border-radius: 20px;
  background: #F5F6F8;
}
.block_14 .docs_group + .docs_group {
  padding-top: 2rem;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
}
.block_14 .docs_items {
  padding-left: 1.25rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 0.75rem;
}
.block_14 .docs_item {
  list-style: disc;
}
.block_14 .docs_item::marker {
  color: #6B7280;
}
.block_14 .docs_item_note {
  display: block;
  color: #6B7280;
}

@media (max-width: 1023px) {
  .block_14 {
    padding: 3.5rem 0;
  }
  .block_14 .docs_columns {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .block_14 .docs_card {
    padding: 2rem 1.5rem;
  }
}
/**
 * Block 15 — Питання та відповіді.
 * Шаблон: block_15.php (поруч)
 */
.block_15 {
  padding: 5rem 0;
}
.block_15 .faq_layout {
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.block_15 .faq_intro {
  -webkit-box-flex: 0;
      -ms-flex: 0 1 38%;
          flex: 0 1 38%;
  max-width: 38%;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
.block_15 .faq_subtitle {
  color: #6B7280;
}
.block_15 .faq_list {
  -webkit-box-flex: 0;
      -ms-flex: 0 1 56%;
          flex: 0 1 56%;
  max-width: 56%;
  min-width: 0;
}
.block_15 {
  /* --- Акордеон --------------------------------------------------------- */
}
.block_15 .faq_item {
  border-radius: 16px;
  background: #F5F6F8;
  overflow: hidden;
}
.block_15 .faq_question {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 1.5rem;
  padding: 1.25rem 1.5rem;
  cursor: pointer;
  list-style: none;
}
.block_15 .faq_question::-webkit-details-marker {
  display: none;
}
.block_15 .faq_question:focus-visible {
  outline: 2px solid #1F5FD6;
  outline-offset: -2px;
}
.block_15 .faq_chevron {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  color: #6B7280;
  -webkit-transition: -webkit-transform 0.25s;
  transition: -webkit-transform 0.25s;
  transition: transform 0.25s;
  transition: transform 0.25s, -webkit-transform 0.25s;
}
.block_15 .faq_item[open] .faq_chevron {
  -webkit-transform: rotate(180deg);
      -ms-transform: rotate(180deg);
          transform: rotate(180deg);
}
.block_15 .faq_answer {
  padding: 0 1.5rem 1.5rem;
  color: #6B7280;
}
.block_15 .faq_answer p {
  margin: 0;
}
.block_15 .faq_answer p + p {
  margin-top: 1rem;
}
.block_15 .faq_answer a {
  color: inherit;
  text-decoration: underline;
}
.block_15 .faq_answer a:hover {
  color: #111111;
}

@media (max-width: 1023px) {
  .block_15 {
    padding: 3.5rem 0;
  }
  .block_15 .faq_layout {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 2rem;
  }
  .block_15 .faq_intro,
  .block_15 .faq_list {
    -webkit-box-flex: 0;
        -ms-flex: none;
            flex: none;
    max-width: 100%;
    width: 100%;
  }
  .block_15 .faq_question {
    padding: 1rem 1.25rem;
  }
  .block_15 .faq_answer {
    padding: 0 1.25rem 1.25rem;
  }
}
/**
 * Block 16 — Розділи з документами і бічною навігацією.
 * Шаблон: block_16.php (поруч)
 */
.block_16 {
  padding: 3.5rem 0 5rem;
}
.block_16 .results_layout {
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.block_16 {
  /* --- Бічна навігація --------------------------------------------------- */
}
.block_16 .results_nav {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 26%;
          flex: 0 0 26%;
  max-width: 26%;
  position: sticky;
  top: calc(var(--header-height, 5rem) + 2rem);
  -ms-flex-item-align: start;
      align-self: flex-start;
}
.block_16 .results_nav_link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.75rem;
  color: #6B7280;
  -webkit-transition: color 0.2s;
  transition: color 0.2s;
}
.block_16 .results_nav_link:hover {
  color: #111111;
}
.block_16 .results_nav_link.is-active {
  color: #111111;
}
.block_16 .results_nav_dot {
  width: 0.5rem;
  height: 0.5rem;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  border-radius: 50%;
  background: #FFC629;
  opacity: 0;
  -webkit-transition: opacity 0.2s;
  transition: opacity 0.2s;
}
.block_16 .results_nav_link.is-active .results_nav_dot {
  opacity: 1;
}
.block_16 {
  /* --- Розділи ----------------------------------------------------------- */
}
.block_16 .results_sections {
  -webkit-box-flex: 0;
      -ms-flex: 0 1 68%;
          flex: 0 1 68%;
  max-width: 68%;
  min-width: 0;
}
.block_16 .results_section {
  scroll-margin-top: calc(var(--header-height, 5rem) + 2rem);
}
.block_16 .results_section_title {
  margin-bottom: 1.5rem;
}

@media (max-width: 1023px) {
  .block_16 {
    padding: 2.5rem 0 3.5rem;
  }
  .block_16 .results_layout {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 2rem;
  }
  .block_16 .results_nav {
    -webkit-box-flex: 0;
        -ms-flex: none;
            flex: none;
    max-width: 100%;
    width: 100%;
    position: static;
  }
  .block_16 .results_sections {
    -webkit-box-flex: 0;
        -ms-flex: none;
            flex: none;
    max-width: 100%;
    width: 100%;
  }
}
/**
 * Block 17 — Контакти з формою.
 * Шаблон: block_17.php (поруч)
 *
 * Картка контактів стилізується глобальними .contacts_* (спільними з блоком 10),
 * тут — розкладка й перефарбування форми Fluent Forms під тему.
 */
.block_17 {
  padding: 5rem 0;
}
.block_17 .contactform_subtitle {
  max-width: 46em;
  color: #6B7280;
}
.block_17 .contactform_layout {
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.block_17 .contactform_side {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 40%;
          flex: 0 0 40%;
  max-width: 40%;
}
.block_17 .contactform_form {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  min-width: 0;
}
.block_17 {
  /* --- Fluent Forms під тему -------------------------------------------- */
}
.block_17 .fluentform .ff-el-group {
  margin-bottom: 1.5rem;
}
.block_17 .fluentform .ff-el-input--label label {
  font-weight: 400;
  color: #111111;
  margin-bottom: 0.5rem;
}
.block_17 .fluentform input[type=text],
.block_17 .fluentform input[type=email],
.block_17 .fluentform input[type=tel],
.block_17 .fluentform textarea {
  width: 100%;
  padding: 0.875rem 1.25rem;
  border: 1px solid #E5E7EB;
  border-radius: 12px;
  background: #FFFFFF;
  color: #111111;
  font: inherit;
  -webkit-box-shadow: none;
          box-shadow: none;
  -webkit-transition: border-color 0.2s;
  transition: border-color 0.2s;
}
.block_17 .fluentform input[type=text]::-webkit-input-placeholder, .block_17 .fluentform input[type=email]::-webkit-input-placeholder, .block_17 .fluentform input[type=tel]::-webkit-input-placeholder, .block_17 .fluentform textarea::-webkit-input-placeholder {
  color: #6B7280;
}
.block_17 .fluentform input[type=text]::-moz-placeholder, .block_17 .fluentform input[type=email]::-moz-placeholder, .block_17 .fluentform input[type=tel]::-moz-placeholder, .block_17 .fluentform textarea::-moz-placeholder {
  color: #6B7280;
}
.block_17 .fluentform input[type=text]:-ms-input-placeholder, .block_17 .fluentform input[type=email]:-ms-input-placeholder, .block_17 .fluentform input[type=tel]:-ms-input-placeholder, .block_17 .fluentform textarea:-ms-input-placeholder {
  color: #6B7280;
}
.block_17 .fluentform input[type=text]::-ms-input-placeholder, .block_17 .fluentform input[type=email]::-ms-input-placeholder, .block_17 .fluentform input[type=tel]::-ms-input-placeholder, .block_17 .fluentform textarea::-ms-input-placeholder {
  color: #6B7280;
}
.block_17 .fluentform input[type=text]::placeholder,
.block_17 .fluentform input[type=email]::placeholder,
.block_17 .fluentform input[type=tel]::placeholder,
.block_17 .fluentform textarea::placeholder {
  color: #6B7280;
}
.block_17 .fluentform input[type=text]:focus,
.block_17 .fluentform input[type=email]:focus,
.block_17 .fluentform input[type=tel]:focus,
.block_17 .fluentform textarea:focus {
  outline: none;
  border-color: #1F5FD6;
  -webkit-box-shadow: none;
          box-shadow: none;
}
.block_17 .fluentform textarea {
  min-height: 14rem;
  resize: vertical;
}
.block_17 .fluentform .ff-btn-submit {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  height: 3.125rem;
  padding: 0 2rem;
  border: 1px solid #111111;
  border-radius: 12px;
  background: #111111;
  color: #FFFFFF;
  -webkit-transition: opacity 0.25s;
  transition: opacity 0.25s;
}
.block_17 .fluentform .ff-btn-submit:hover {
  opacity: 0.85;
}
.block_17 .fluentform .ff-el-group.ff_submit_btn_wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  margin-bottom: 0;
}
.block_17 .fluentform .ff-el-is-error input,
.block_17 .fluentform .ff-el-is-error textarea {
  border-color: #DC2626;
}
.block_17 .fluentform .error.text-danger {
  color: #DC2626;
}

@media (max-width: 1023px) {
  .block_17 {
    padding: 3.5rem 0;
  }
  .block_17 .contactform_layout {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 2rem;
  }
  .block_17 .contactform_side,
  .block_17 .contactform_form {
    -webkit-box-flex: 0;
        -ms-flex: none;
            flex: none;
    max-width: 100%;
    width: 100%;
  }
}
/**
 * Block 18 — Історія закладу.
 * Шаблон: block_18.php (поруч)
 */
.block_18 {
  padding: 6.5rem 0;
}
.block_18 .history_layout {
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 4.5rem;
}
.block_18 .history_intro {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 41%;
          flex: 0 0 41%;
  gap: 2.5rem;
}
.block_18 .history_text {
  color: #6B7280;
}
.block_18 {
  /* --- Таймлайн --------------------------------------------------------- */
}
.block_18 .history_timeline {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 49.4%;
          flex: 0 0 49.4%;
  min-width: 0;
}
.block_18 .history_item {
  position: relative;
  gap: 1.5rem;
  padding: 1rem 0 1rem 3.5625rem;
}
.block_18 .history_item::before, .block_18 .history_item::after {
  content: "";
  position: absolute;
}
.block_18 .history_item::before {
  top: 0;
  bottom: 0;
  left: 0;
  width: 1px;
  background: #E5E7EB;
}
.block_18 .history_item::after {
  top: 1.5rem;
  left: -4.5px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #6B7280;
}
.block_18 .history_item_period,
.block_18 .history_item_text {
  color: #6B7280;
}
.block_18 .history_item_photo {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 591/280;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 16px;
}

@media (max-width: 1023px) {
  .block_18 {
    padding: 3.5rem 0;
  }
  .block_18 .history_layout {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 2.5rem;
  }
  .block_18 .history_intro,
  .block_18 .history_timeline {
    -webkit-box-flex: 0;
        -ms-flex: none;
            flex: none;
    width: 100%;
  }
  .block_18 .history_intro {
    gap: 1.5rem;
  }
}
@media (max-width: 560px) {
  .block_18 .history_item {
    padding-left: 2rem;
  }
}
/**
 * Block 19 — Наші цінності.
 * Шаблон: block_19.php (поруч)
 */
.block_19 {
  padding: 6.5rem 0;
}
.block_19 .content_block {
  gap: 4.5rem;
}
.block_19 .values_subtitle {
  max-width: 42em;
  color: #6B7280;
}
.block_19 {
  /* --- Розкладка: картки · фото · картки -------------------------------- */
}
.block_19 .values_layout {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 1rem 1fr 1rem 1fr;
  grid-template-columns: repeat(3, 1fr);
  -ms-grid-rows: auto 1rem auto;
  grid-template-rows: auto auto;
  gap: 1rem;
  width: 100%;
}
.block_19 .values_layout > *:nth-child(1) {
  -ms-grid-row: 1;
  -ms-grid-column: 1;
}
.block_19 .values_layout > *:nth-child(2) {
  -ms-grid-row: 1;
  -ms-grid-column: 3;
}
.block_19 .values_layout > *:nth-child(3) {
  -ms-grid-row: 1;
  -ms-grid-column: 5;
}
.block_19 .values_layout > *:nth-child(4) {
  -ms-grid-row: 3;
  -ms-grid-column: 1;
}
.block_19 .values_layout > *:nth-child(5) {
  -ms-grid-row: 3;
  -ms-grid-column: 3;
}
.block_19 .values_layout > *:nth-child(6) {
  -ms-grid-row: 3;
  -ms-grid-column: 5;
}
.block_19 .values_col {
  display: -ms-grid;
  display: grid;
  -ms-grid-row-span: 2;
  grid-row: span 2;
  -ms-grid-rows: subgrid;
  grid-template-rows: subgrid;
  gap: 1rem;
}
.block_19 .values_card {
  padding: 2rem;
  border-radius: 16px;
  background: #F5F6F8;
}
.block_19 .values_icon {
  width: 3.5rem;
  height: 3.5rem;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  border-radius: 16px;
  background: #111111;
  margin-bottom: 2.5rem;
}
.block_19 .values_icon img {
  width: 1.5rem;
  height: 1.5rem;
  -o-object-fit: contain;
     object-fit: contain;
}
.block_19 .values_card_text {
  color: #6B7280;
}
.block_19 .values_photo {
  -ms-grid-row-span: 2;
  grid-row: span 2;
  position: relative;
  overflow: hidden;
  border-radius: 20px;
  background: #E5E7EB;
}
.block_19 .values_photo img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

@media (max-width: 1023px) {
  .block_19 {
    padding: 3.5rem 0;
  }
  .block_19 .content_block {
    gap: 2.5rem;
  }
  .block_19 .values_layout {
    -ms-grid-columns: (1fr)[2];
    grid-template-columns: repeat(2, 1fr);
    -ms-grid-rows: auto auto auto;
    grid-template-rows: auto auto auto;
  }
  .block_19 .values_layout > *:nth-child(1) {
    -ms-grid-row: 1;
    -ms-grid-column: 1;
  }
  .block_19 .values_layout > *:nth-child(2) {
    -ms-grid-row: 1;
    -ms-grid-column: 2;
  }
  .block_19 .values_layout > *:nth-child(3) {
    -ms-grid-row: 2;
    -ms-grid-column: 1;
  }
  .block_19 .values_layout > *:nth-child(4) {
    -ms-grid-row: 2;
    -ms-grid-column: 2;
  }
  .block_19 .values_layout > *:nth-child(5) {
    -ms-grid-row: 3;
    -ms-grid-column: 1;
  }
  .block_19 .values_layout > *:nth-child(6) {
    -ms-grid-row: 3;
    -ms-grid-column: 2;
  }
  .block_19 .values_photo {
    grid-column: 1/-1;
    -ms-grid-row: 1;
    grid-row: 1;
    aspect-ratio: 16/9;
  }
  .block_19 .values_card {
    padding: 1.75rem;
  }
  .block_19 .values_icon {
    width: 3.25rem;
    height: 3.25rem;
    border-radius: 14px;
    margin-bottom: 1.75rem;
  }
}
@media (max-width: 560px) {
  .block_19 .values_layout {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    -ms-grid-rows: none;
    grid-template-rows: none;
  }
  .block_19 .values_layout > *:nth-child(1) {
    -ms-grid-row: 1;
    -ms-grid-column: 1;
  }
  .block_19 .values_col {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    grid-row: auto;
  }
  .block_19 .values_photo {
    aspect-ratio: 4/3;
  }
}
/**
 * Block 20 — Умови навчання.
 * Шаблон: block_20.php (поруч)
 */
.block_20 {
  padding: 6.5rem 0;
}
.block_20 .content_block {
  gap: 4.5rem;
}
.block_20 {
  /* --- Картки ----------------------------------------------------------- */
}
.block_20 .conditions_list {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 1rem 1fr 1rem 1fr 1rem 1fr;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}
.block_20 .conditions_item {
  gap: 1.5rem;
}
.block_20 .conditions_photo {
  aspect-ratio: 316/384;
  overflow: hidden;
  border-radius: 20px;
  background: #E5E7EB;
  -webkit-box-shadow: 4px 4px 16px rgba(0, 0, 0, 0.16);
          box-shadow: 4px 4px 16px rgba(0, 0, 0, 0.16);
}
.block_20 .conditions_photo img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.block_20 .conditions_text {
  padding-right: 0.75rem;
}
.block_20 .conditions_item_text {
  color: #6B7280;
}
.block_20 {
  /* --- Кнопки ----------------------------------------------------------- */
}
.block_20 .conditions_buttons {
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 0.5rem;
}
.block_20 .conditions_dark {
  height: 3.125rem;
  border: 1px solid #111111;
  background: #111111;
  color: #FFFFFF;
}
.block_20 .conditions_dark:hover {
  opacity: 0.85;
}

@media (max-width: 1023px) {
  .block_20 {
    padding: 3.5rem 0;
  }
  .block_20 .content_block {
    gap: 2.5rem;
  }
  .block_20 .conditions_list {
    -ms-grid-columns: (1fr)[2];
    grid-template-columns: repeat(2, 1fr);
    row-gap: 2rem;
  }
}
@media (max-width: 560px) {
  .block_20 .conditions_list {
    -ms-grid-columns: none;
    grid-template-columns: none;
    grid-auto-flow: column;
    grid-auto-columns: 75%;
    overflow-x: auto;
    -ms-scroll-snap-type: x mandatory;
        scroll-snap-type: x mandatory;
    padding: 0 0.5rem 1rem 0;
  }
  .block_20 .conditions_item {
    scroll-snap-align: start;
  }
}
/**
 * Block 21 — Міжнародна співпраця.
 * Шаблон: block_21.php (поруч)
 */
.block_21 {
  padding: 6.5rem 0;
}
.block_21 .cooperation_layout {
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 5rem;
}
.block_21 .cooperation_info {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 41%;
          flex: 0 0 41%;
  gap: 2.5rem;
}
.block_21 .cooperation_subtitle,
.block_21 .cooperation_text {
  color: #6B7280;
}
.block_21 .cooperation_photo {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 49.4%;
          flex: 0 0 49.4%;
  aspect-ratio: 648/412;
  overflow: hidden;
  border-radius: 20px;
  background: #E5E7EB;
}
.block_21 .cooperation_photo img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

@media (max-width: 1023px) {
  .block_21 {
    padding: 3.5rem 0;
  }
  .block_21 .cooperation_layout {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: stretch;
        -ms-flex-align: stretch;
            align-items: stretch;
    gap: 2.5rem;
  }
  .block_21 .cooperation_info,
  .block_21 .cooperation_photo {
    -webkit-box-flex: 0;
        -ms-flex: none;
            flex: none;
    width: 100%;
  }
  .block_21 .cooperation_info {
    gap: 1.5rem;
  }
}
/**
 * Block 22 — Шапка сторінки з 3D-туром.
 * Шаблон: block_22.php (поруч)
 */
.block_22 {
  padding-top: 4.5rem;
}
.block_22 .tour_head {
  max-width: 54.375rem;
  padding-bottom: 4.5rem;
}
.block_22 .tour_head_subtitle {
  color: #6B7280;
}
.block_22 {
  /* --- Банер ------------------------------------------------------------ */
}
.block_22 .tour_banner {
  position: relative;
  height: 25rem;
  gap: 2rem;
  padding: 3rem 4rem;
  overflow: hidden;
  color: #FFFFFF;
}
.block_22 .tour_banner::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: rgba(0, 0, 0, 0.2);
  -webkit-transition: background 0.3s;
  transition: background 0.3s;
}
.block_22 a.tour_banner:hover::before {
  background: rgba(0, 0, 0, 0.35);
}
.block_22 a.tour_banner:focus-visible {
  outline: 3px solid #FFFFFF;
  outline-offset: -6px;
}
.block_22 .tour_banner_bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.block_22 .tour_play,
.block_22 .tour_caption {
  position: relative;
  z-index: 2;
}
.block_22 .tour_play {
  width: 5rem;
  height: 5rem;
  border: 1px solid rgba(255, 255, 255, 0.9);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(12px);
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
}
.block_22 .tour_play svg {
  width: 1.75rem;
  height: 2.25rem;
  margin-left: 0.25rem;
}
.block_22 a.tour_banner:hover .tour_play {
  -webkit-transform: scale(1.08);
      -ms-transform: scale(1.08);
          transform: scale(1.08);
}
.block_22 .tour_caption_title {
  font-weight: 400;
}

@media (max-width: 1023px) {
  .block_22 {
    padding-top: 2.5rem;
  }
  .block_22 .tour_head {
    padding-bottom: 2rem;
  }
  .block_22 .tour_banner {
    height: clamp(16rem, 60vw, 22rem);
    padding: 2rem 1.25rem;
    gap: 1.25rem;
  }
  .block_22 .tour_play {
    width: 4rem;
    height: 4rem;
  }
  .block_22 .tour_play svg {
    width: 1.375rem;
    height: 1.75rem;
  }
}
/**
 * Block 23 — Розділи з галереями.
 * Шаблон: block_23.php, скрипт: block_23.js (поруч)
 */
.block_23 {
  padding: 6.5rem 0;
}
.block_23 .living_layout {
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 5rem;
}
.block_23 {
  /* --- Навігація -------------------------------------------------------- */
}
.block_23 .living_nav {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 24%;
          flex: 0 0 24%;
  position: sticky;
  top: calc(var(--header-height, 5rem) + 2rem);
}
.block_23 .living_nav_link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1rem;
  color: #6B7280;
  -webkit-transition: color 0.2s;
  transition: color 0.2s;
}
.block_23 .living_nav_link:hover {
  color: #111111;
}
.block_23 .living_nav_link.is-active {
  color: #111111;
}
.block_23 .living_nav_dot {
  display: none;
  width: 0.5rem;
  height: 0.5rem;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  border-radius: 50%;
  background: #FFC629;
}
.block_23 .living_nav_link.is-active .living_nav_dot {
  display: block;
}
.block_23 {
  /* --- Розділи ---------------------------------------------------------- */
}
.block_23 .living_sections {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 66.2%;
          flex: 0 0 66.2%;
  min-width: 0;
  gap: 6.5rem;
}
.block_23 .living_section {
  gap: 3.5rem;
  scroll-margin-top: calc(var(--header-height, 5rem) + 2rem);
}
.block_23 .living_title {
  font-weight: 400;
}
.block_23 .living_text {
  color: #6B7280;
}
.block_23 .living_check {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  color: #FFC629;
}
.block_23 .living_button {
  -ms-flex-item-align: start;
      align-self: flex-start;
}
.block_23 {
  /* --- Слайдер ---------------------------------------------------------- */
}
.block_23 .living_slider {
  width: 100%;
  aspect-ratio: 869/492;
  border-radius: 20px;
  background: #E5E7EB;
}
.block_23 .living_slider .swiper-slide img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.block_23 .living_slider_nav {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 1.5rem;
  z-index: 2;
  color: #FFFFFF;
  pointer-events: none;
}
.block_23 .living_arrow {
  width: 3rem;
  height: 3rem;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.9);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(12px);
  color: inherit;
  cursor: pointer;
  pointer-events: auto;
  -webkit-transition: background 0.2s;
  transition: background 0.2s;
}
.block_23 .living_arrow:hover {
  background: rgba(255, 255, 255, 0.25);
}
.block_23 .living_arrow:focus-visible {
  outline: 2px solid #FFFFFF;
  outline-offset: 2px;
}
.block_23 .living_counter {
  min-width: 2.5rem;
  text-align: center;
  font-variant-numeric: tabular-nums;
}

@media (max-width: 1023px) {
  .block_23 {
    padding: 3.5rem 0;
  }
  .block_23 .living_layout {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 2.5rem;
  }
  .block_23 .living_nav {
    position: static;
    -webkit-box-flex: 0;
        -ms-flex: none;
            flex: none;
    width: 100%;
  }
  .block_23 .living_sections {
    -webkit-box-flex: 0;
        -ms-flex: none;
            flex: none;
    width: 100%;
    gap: 4rem;
  }
  .block_23 .living_section {
    gap: 2rem;
  }
  .block_23 .living_slider {
    border-radius: 16px;
  }
  .block_23 .living_slider_nav {
    bottom: 1rem;
  }
  .block_23 .living_arrow {
    width: 2.5rem;
    height: 2.5rem;
  }
  .block_23 .living_arrow svg {
    width: 1.25rem;
    height: 1.25rem;
  }
}
/**
 * Block 24 — Команда.
 * Шаблон: block_24.php (поруч)
 */
.block_24 {
  padding: 4.5rem 0;
}
.block_24 .content_block {
  gap: 4.5rem;
}
.block_24 .team_head {
  max-width: 54.375rem;
}
.block_24 .team_subtitle {
  color: #6B7280;
}
.block_24 {
  /* --- Вкладки ---------------------------------------------------------- */
}
.block_24 .team_tabs {
  -webkit-box-shadow: inset 0 -1px 0 #E5E7EB;
          box-shadow: inset 0 -1px 0 #E5E7EB;
  overflow-x: auto;
  scrollbar-width: none;
}
.block_24 .team_tabs::-webkit-scrollbar {
  display: none;
}
.block_24 .team_tabs ul {
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
}
.block_24 .team_tab {
  display: block;
  padding: 0.5rem 1rem;
  border-bottom: 1px solid transparent;
  color: #6B7280;
  white-space: nowrap;
  -webkit-transition: color 0.2s, border-color 0.2s;
  transition: color 0.2s, border-color 0.2s;
}
.block_24 .team_tab:hover {
  color: #111111;
}
.block_24 .team_tab.is-active {
  border-bottom-color: #111111;
  color: #111111;
}
.block_24 {
  /* --- Сітка людей ------------------------------------------------------ */
}
.block_24 .team_grid {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 1rem 1fr 1rem 1fr 1rem 1fr;
  grid-template-columns: repeat(4, 1fr);
  gap: 2.5rem 1rem;
}
.block_24 .team_card {
  gap: 2rem;
}
.block_24 .team_photo {
  aspect-ratio: 1;
  overflow: hidden;
  border-radius: 20px;
  background: #E5E7EB;
}
.block_24 .team_photo img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center top;
     object-position: center top;
}
.block_24 .team_position {
  color: #6B7280;
}

@media (max-width: 1023px) {
  .block_24 {
    padding: 3rem 0;
  }
  .block_24 .content_block {
    gap: 2.5rem;
  }
  .block_24 .team_grid {
    -ms-grid-columns: 1fr 1rem 1fr;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem 1rem;
  }
  .block_24 .team_card {
    gap: 1rem;
  }
}
/**
 * Block 25 — Зображення по центру.
 * Шаблон: block_25.php (поруч)
 */
.block_25 {
  padding: 0 0 4.5rem;
}
.block_25 .figure_link {
  display: block;
  max-width: 72.1875rem;
  margin: 0 auto;
  cursor: -webkit-zoom-in;
  cursor: zoom-in;
}
.block_25 .figure_link:focus-visible {
  outline: 2px solid #111111;
  outline-offset: 4px;
}
.block_25 .figure_image {
  display: block;
  width: 100%;
  height: auto;
}

@media (max-width: 1023px) {
  .block_25 {
    padding-bottom: 3rem;
  }
}
/**
 * Block 26 — Список вакансій.
 * Шаблон: block_26.php (поруч). Картка стилізується глобальними .vacancy_* у style.scss —
 * вона спільна зі сторінкою вакансії.
 */
.block_26 {
  padding: 0 0 4.5rem;
}
.block_26 .vacancy_empty {
  color: #6B7280;
}

@media (max-width: 1023px) {
  .block_26 {
    padding-bottom: 3rem;
  }
}
/**
 * Block 27 — Документи й посилання по розділах.
 * Шаблон: block_27.php, скрипт: block_27.js (поруч).
 * Рядки — глобальні .doc_* (style.scss), тут лише розміри з макета «Публічна інформація».
 */
.block_27 {
  padding: 4.5rem 0;
}
.block_27 > .content_block {
  gap: 4.5rem;
}
.block_27 .papers_layout {
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 5rem;
}
.block_27 {
  /* --- Навігація -------------------------------------------------------- */
}
.block_27 .papers_nav {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 24%;
          flex: 0 0 24%;
  position: sticky;
  top: calc(var(--header-height, 5rem) + 2rem);
}
.block_27 .papers_nav_link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1rem;
  color: #6B7280;
  -webkit-transition: color 0.2s;
  transition: color 0.2s;
}
.block_27 .papers_nav_link:hover {
  color: #111111;
}
.block_27 .papers_nav_link.is-active {
  color: #111111;
}
.block_27 .papers_nav_dot {
  display: none;
  width: 0.5rem;
  height: 0.5rem;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  border-radius: 50%;
  background: #FFC629;
}
.block_27 .papers_nav_link.is-active .papers_nav_dot {
  display: block;
}
.block_27 {
  /* --- Розділи ---------------------------------------------------------- */
}
.block_27 .papers_sections {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 66.2%;
          flex: 0 0 66.2%;
  min-width: 0;
  gap: 4.5rem;
}
.block_27 .papers_section {
  gap: 2rem;
  scroll-margin-top: calc(var(--header-height, 5rem) + 2rem);
}
.block_27 .papers_list .doc_link {
  padding: 0.5rem;
  border-radius: 8px;
}
.block_27 .papers_link_icon {
  color: #6B7280;
}
.block_27 .papers_heading {
  padding: 1.5rem 0.5rem 0.5rem;
  color: #111111;
}
.block_27 .papers_heading:first-child {
  padding-top: 0;
}
.block_27 .papers_heading + .doc_item {
  border-top: 0;
}
.block_27 .screen-reader-text {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

@media (max-width: 1023px) {
  .block_27 {
    padding: 3rem 0;
  }
  .block_27 > .content_block {
    gap: 2rem;
  }
  .block_27 .papers_layout {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 2.5rem;
  }
  .block_27 .papers_nav {
    position: static;
    -webkit-box-flex: 0;
        -ms-flex: none;
            flex: none;
    width: 100%;
  }
  .block_27 .papers_sections {
    -webkit-box-flex: 0;
        -ms-flex: none;
            flex: none;
    width: 100%;
    gap: 3rem;
  }
}
/**
 * Block 28 — Шапка сторінки з кнопкою.
 * Шаблон: block_28.php (поруч)
 */
.block_28 {
  padding-top: 4.5rem;
}
.block_28 .headbtn_row {
  gap: 4rem;
  padding-bottom: 4.5rem;
}
.block_28 .headbtn_text {
  max-width: 47.4375rem;
}
.block_28 .headbtn_title {
  font-weight: 400;
}
.block_28 .headbtn_subtitle {
  color: #6B7280;
}
.block_28 .headbtn_button {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  height: 3.75rem;
  padding: 0 2.5rem;
  border-radius: 12px;
  background: #111111;
  color: #FFFFFF;
  white-space: nowrap;
  -webkit-transition: opacity 0.2s;
  transition: opacity 0.2s;
}
.block_28 .headbtn_button:hover {
  opacity: 0.85;
}
.block_28 .headbtn_banner img {
  display: block;
  width: 100%;
  height: 25rem;
  -o-object-fit: cover;
     object-fit: cover;
}

@media (max-width: 1023px) {
  .block_28 {
    padding-top: 2.5rem;
  }
  .block_28 .headbtn_row {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    gap: 1.5rem;
    padding-bottom: 2rem;
  }
  .block_28 .headbtn_banner img {
    height: clamp(12rem, 45vw, 18rem);
  }
}
/**
 * Block 29 — Сітка партнерів.
 * Шаблон: block_29.php (поруч)
 */
.block_29 {
  padding: 6.5rem 0;
}
.block_29 .content_block {
  gap: 5rem;
}
.block_29 .pgrid_list {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 1rem 1fr 1rem 1fr 1rem 1fr 1rem 1fr;
  grid-template-columns: repeat(5, 1fr);
  gap: 4.5rem 1rem;
  width: 100%;
}
.block_29 .pgrid_item {
  color: #6B7280;
}
.block_29 a.pgrid_item:hover .pgrid_logo img {
  -webkit-filter: none;
          filter: none;
  opacity: 1;
}
.block_29 a.pgrid_item:hover .pgrid_name {
  color: #111111;
}
.block_29 .pgrid_logo {
  width: 100%;
  max-width: 12.5rem;
  height: 6.5rem;
  padding: 0 1rem;
}
.block_29 .pgrid_logo img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
  -webkit-filter: grayscale(1);
          filter: grayscale(1);
  opacity: 0.8;
  -webkit-transition: opacity 0.3s, -webkit-filter 0.3s;
  transition: opacity 0.3s, -webkit-filter 0.3s;
  transition: filter 0.3s, opacity 0.3s;
  transition: filter 0.3s, opacity 0.3s, -webkit-filter 0.3s;
}
.block_29 .pgrid_logo_empty {
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 12px;
  background: #F5F6F8;
}
.block_29 .pgrid_name {
  -webkit-transition: color 0.2s;
  transition: color 0.2s;
}

@media (max-width: 1023px) {
  .block_29 {
    padding: 3.5rem 0;
  }
  .block_29 .content_block {
    gap: 2.5rem;
  }
  .block_29 .pgrid_list {
    -ms-grid-columns: 1fr 1rem 1fr 1rem 1fr;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem 1rem;
  }
}
@media (max-width: 560px) {
  .block_29 .pgrid_list {
    -ms-grid-columns: (1fr)[2];
    grid-template-columns: repeat(2, 1fr);
  }
}
/**
 * Block 30 — Список переваг із фото.
 * Шаблон: block_30.php (поруч)
 */
.block_30 {
  padding: 6.5rem 0;
}
.block_30 .gains_layout {
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 5rem;
}
.block_30 .gains_text {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 41%;
          flex: 0 0 41%;
  gap: 2.5rem;
}
.block_30 .gains_point {
  min-height: 2.5rem;
}
.block_30 .gains_check {
  width: 2.5rem;
  height: 2.5rem;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  color: #FFC629;
}
.block_30 .gains_photo {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 49.4%;
          flex: 0 0 49.4%;
  aspect-ratio: 648/400;
  overflow: hidden;
  border-radius: 20px;
  background: #E5E7EB;
}
.block_30 .gains_photo img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

@media (max-width: 1023px) {
  .block_30 {
    padding: 3.5rem 0;
  }
  .block_30 .gains_layout {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: stretch;
        -ms-flex-align: stretch;
            align-items: stretch;
    gap: 2.5rem;
  }
  .block_30 .gains_text,
  .block_30 .gains_photo {
    -webkit-box-flex: 0;
        -ms-flex: none;
            flex: none;
    width: 100%;
  }
  .block_30 .gains_text {
    gap: 1.5rem;
  }
}
/**
 * Block 31 — Текст зі списком і фото.
 * Шаблон: block_31.php (поруч)
 */
.block_31 {
  padding: 6.5rem 0;
}
.block_31 .centers_layout {
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  gap: 5rem;
}
.block_31 .centers_text {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 41%;
          flex: 0 0 41%;
  gap: 2.5rem;
}
.block_31 .centers_desc {
  color: #6B7280;
}
.block_31 .centers_check {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  color: #FFC629;
}
.block_31 .centers_photo {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 49.4%;
          flex: 0 0 49.4%;
  min-height: 20rem;
  overflow: hidden;
  border-radius: 20px;
  background: #E5E7EB;
}
.block_31 .centers_photo img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

@media (max-width: 1023px) {
  .block_31 {
    padding: 3.5rem 0;
  }
  .block_31 .centers_layout {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 2.5rem;
  }
  .block_31 .centers_text,
  .block_31 .centers_photo {
    -webkit-box-flex: 0;
        -ms-flex: none;
            flex: none;
    width: 100%;
  }
  .block_31 .centers_text {
    gap: 1.5rem;
  }
  .block_31 .centers_photo {
    min-height: 0;
    aspect-ratio: 648/544;
  }
}
/**
 * Block 32 — Картки напрямів зі списком прикладів.
 * Шаблон: block_32.php (поруч)
 */
.block_32 {
  padding: 6.5rem 0;
}
.block_32 .content_block {
  gap: 4.5rem;
}
.block_32 .svc_grid {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 1rem 1fr 1rem 1fr;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  width: 100%;
}
.block_32 .svc_card {
  gap: 2.5rem;
  padding: 2rem;
  border-radius: 16px;
  background: #F5F6F8;
}
.block_32 .svc_card--link {
  position: relative;
  -webkit-transition: background 0.2s, -webkit-box-shadow 0.2s;
  transition: background 0.2s, -webkit-box-shadow 0.2s;
  transition: background 0.2s, box-shadow 0.2s;
  transition: background 0.2s, box-shadow 0.2s, -webkit-box-shadow 0.2s;
}
.block_32 .svc_card--link:hover, .block_32 .svc_card--link:focus-within {
  background: rgb(236, 237.9, 241.7);
  -webkit-box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
          box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}
.block_32 .svc_card--link:hover .svc_card_link {
  text-decoration: underline;
}
.block_32 .svc_card_link {
  color: inherit;
}
.block_32 .svc_card_link::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
}
.block_32 .svc_card_link:focus-visible {
  outline: none;
}
.block_32 .svc_card_link:focus-visible::after {
  outline: 2px solid #111111;
  outline-offset: 2px;
}
.block_32 .svc_icon {
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 16px;
  background: #111111;
}
.block_32 .svc_icon img {
  width: 1.5rem;
  height: 1.5rem;
  -o-object-fit: contain;
     object-fit: contain;
}
.block_32 .svc_card_text {
  color: #6B7280;
}
.block_32 .svc_examples {
  padding-left: 1.25rem;
  color: #6B7280;
}
.block_32 .svc_examples li {
  list-style: disc;
}

@media (max-width: 1023px) {
  .block_32 {
    padding: 3.5rem 0;
  }
  .block_32 .content_block {
    gap: 2.5rem;
  }
  .block_32 .svc_grid {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }
  .block_32 .svc_card {
    gap: 1.5rem;
    padding: 1.75rem;
  }
}
/**
 * Block 33 — Документ із кнопками і фото.
 * Шаблон: block_33.php (поруч)
 */
.block_33 {
  padding: 6.5rem 0;
}
.block_33 .docbox_layout {
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 5rem;
}
.block_33 .docbox_text {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 41%;
          flex: 0 0 41%;
  gap: 2.5rem;
}
.block_33 .docbox_desc {
  color: #6B7280;
}
.block_33 .docbox_btn {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  height: 3.75rem;
  padding: 0 2.5rem;
  border-radius: 12px;
  white-space: nowrap;
  -webkit-transition: opacity 0.2s, border-color 0.2s;
  transition: opacity 0.2s, border-color 0.2s;
}
.block_33 .docbox_btn--dark {
  background: #111111;
  color: #FFFFFF;
}
.block_33 .docbox_btn--dark:hover {
  opacity: 0.85;
}
.block_33 .docbox_btn--outline {
  border: 1px solid #E5E7EB;
  color: #111111;
}
.block_33 .docbox_btn--outline:hover {
  border-color: #111111;
}
.block_33 .docbox_photo {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 49.4%;
          flex: 0 0 49.4%;
  aspect-ratio: 648/400;
  overflow: hidden;
  border-radius: 20px;
  background: #E5E7EB;
}
.block_33 .docbox_photo img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

@media (max-width: 1023px) {
  .block_33 {
    padding: 3.5rem 0;
  }
  .block_33 .docbox_layout {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: stretch;
        -ms-flex-align: stretch;
            align-items: stretch;
    gap: 2.5rem;
  }
  .block_33 .docbox_text,
  .block_33 .docbox_photo {
    -webkit-box-flex: 0;
        -ms-flex: none;
            flex: none;
    width: 100%;
  }
  .block_33 .docbox_text {
    gap: 1.5rem;
  }
}
@media (max-width: 560px) {
  .block_33 .docbox_btn {
    -webkit-box-flex: 1;
        -ms-flex: 1 1 100%;
            flex: 1 1 100%;
  }
}
/**
 * Block 34 — Текст і фото.
 * Шаблон: block_34.php (поруч)
 */
.block_34 {
  padding: 6.5rem 0;
}
.block_34 .tm_layout {
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 5rem;
}
.block_34 .tm_layout--left {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}
.block_34 .tm_layout--center {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.block_34 .tm_layout--center .tm_text {
  -webkit-box-flex: 0;
      -ms-flex: 0 1 50rem;
          flex: 0 1 50rem;
}
.block_34 .tm_layout--center .tm_head {
  text-align: center;
}
.block_34 .tm_text {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 41%;
          flex: 0 0 41%;
  min-width: 0;
  gap: 2.5rem;
}
.block_34 .tm_title.h4 {
  font-weight: 400;
}
.block_34 .tm_subtitle,
.block_34 .tm_note {
  color: #6B7280;
}
.block_34 .tm_content {
  color: #6B7280;
}
.block_34 .tm_content > * + * {
  margin-top: 1rem;
}
.block_34 .tm_content a {
  color: #111111;
  text-decoration: underline;
}
.block_34 .tm_content strong {
  color: #111111;
}
.block_34 .tm_check {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  color: #FFC629;
}
.block_34 .tm_link {
  color: #111111;
}
.block_34 .tm_link svg {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  color: #6B7280;
}
.block_34 .tm_link span {
  text-decoration: underline;
  word-break: break-word;
}
.block_34 .tm_link:hover span {
  text-decoration-thickness: 2px;
}
.block_34 .tm_photo {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 49.4%;
          flex: 0 0 49.4%;
  aspect-ratio: 648/400;
  overflow: hidden;
  border-radius: 20px;
  background: #E5E7EB;
}
.block_34 .tm_photo img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

@media (max-width: 1023px) {
  .block_34 {
    padding: 3.5rem 0;
  }
  .block_34 .tm_layout,
  .block_34 .tm_layout--left {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: stretch;
        -ms-flex-align: stretch;
            align-items: stretch;
    gap: 2.5rem;
  }
  .block_34 .tm_text,
  .block_34 .tm_photo {
    -webkit-box-flex: 0;
        -ms-flex: none;
            flex: none;
    width: 100%;
  }
  .block_34 .tm_text {
    gap: 1.5rem;
  }
}
/**
 * Block 35 — Файли та матеріали.
 * Шаблон: block_35.php, рядок — template-parts/doc-link-row.php (глобальні .doc_*).
 */
.block_35 {
  padding: 6.5rem 0;
}
.block_35 .files_wrap {
  gap: 4.5rem;
}
.block_35 .files_wrap--narrow .files_body {
  width: 100%;
  max-width: 50rem;
  margin: 0 auto;
}
.block_35 .files_body {
  gap: 1rem;
}
.block_35 {
  /* --- Картки з превʼю -------------------------------------------------- */
}
.block_35 .files_previews {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: minmax(0, 1fr) 1rem minmax(0, 1fr) 1rem minmax(0, 1fr);
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}
.block_35 .files_preview {
  gap: 1rem;
  height: 100%;
  padding: 1rem;
  border: 1px solid #E5E7EB;
  border-radius: 16px;
  background: #F5F6F8;
  color: #111111;
  -webkit-transition: -webkit-box-shadow 0.2s;
  transition: -webkit-box-shadow 0.2s;
  transition: box-shadow 0.2s;
  transition: box-shadow 0.2s, -webkit-box-shadow 0.2s;
}
.block_35 .files_preview:hover {
  -webkit-box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
          box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}
.block_35 .files_preview:hover .files_preview_img img {
  -webkit-transform: scale(1.03);
      -ms-transform: scale(1.03);
          transform: scale(1.03);
}
.block_35 .files_preview_img {
  display: block;
  height: 13.1875rem;
  overflow: hidden;
  border: 1px solid #E5E7EB;
  border-radius: 16px;
  background: #FFFFFF;
}
.block_35 .files_preview_img img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: top;
     object-position: top;
  -webkit-transition: -webkit-transform 0.4s;
  transition: -webkit-transform 0.4s;
  transition: transform 0.4s;
  transition: transform 0.4s, -webkit-transform 0.4s;
}
.block_35 .files_preview_foot {
  padding: 0.5rem;
}
.block_35 .doc_icon--image {
  color: #2f9e5b;
}
.block_35 .files_preview_label {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.block_35 .files_preview_zoom {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  color: #6B7280;
}
.block_35 {
  /* --- Групи документів ------------------------------------------------- */
}
.block_35 .files_group {
  gap: 2rem;
}
.block_35 .files_group:not(.files_group--boxed) + .files_group {
  margin-top: 3.5rem;
}
.block_35 .files_group--boxed {
  padding: 2.5rem;
  border: 1px solid #E5E7EB;
  border-radius: 16px;
  background: #F5F6F8;
}
.block_35 .files_list .doc_link {
  padding: 0.5rem;
  border-radius: 8px;
}
.block_35 .doc_link_icon {
  color: #6B7280;
}
.block_35 .doc_heading {
  padding: 1.5rem 0.5rem 0.5rem;
}
.block_35 .doc_heading:first-child {
  padding-top: 0;
}
.block_35 .doc_heading + .doc_item {
  border-top: 0;
}
.block_35 .visually_hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

.block_11 + .block_35 {
  padding-top: 1.5rem;
}

.block_34 + .block_35:has(.files_wrap--narrow) {
  padding-top: 0;
}

.block_34:has(+ .block_35 .files_wrap--narrow) {
  padding-bottom: 2.5rem;
}

@media (max-width: 1023px) {
  .block_35 {
    padding: 3.5rem 0;
  }
  .block_35 .files_wrap {
    gap: 2.5rem;
  }
  .block_35 .files_previews {
    -ms-grid-columns: (minmax(0, 1fr))[2];
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .block_35 .files_group--boxed {
    padding: 1.5rem 1rem;
  }
  .block_11 + .block_35 {
    padding-top: 0.5rem;
  }
}
@media (max-width: 560px) {
  .block_35 .files_previews {
    -ms-grid-columns: minmax(0, 1fr);
    grid-template-columns: minmax(0, 1fr);
  }
}
/**
 * Block 36 — Список посилань з описом.
 * Шаблон: block_36.php (поруч)
 */
.block_36 {
  padding: 6.5rem 0;
}
.block_36 .links_row {
  position: relative;
  gap: 1.5rem;
  padding: 1rem;
  border-radius: 16px;
  background: #F5F6F8;
  -webkit-transition: -webkit-box-shadow 0.2s;
  transition: -webkit-box-shadow 0.2s;
  transition: box-shadow 0.2s;
  transition: box-shadow 0.2s, -webkit-box-shadow 0.2s;
}
.block_36 .links_row:hover {
  -webkit-box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
          box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}
.block_36 .links_row:hover .links_title {
  text-decoration-thickness: 2px;
}
.block_36 .links_icon {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 16px;
  background: #FFFFFF;
  color: #6B7280;
}
.block_36 .links_text {
  min-width: 0;
}
.block_36 .links_title {
  color: #111111;
  font-weight: 500;
  text-decoration: underline;
  text-underline-offset: 0.2em;
}
.block_36 .links_title::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
}
.block_36 .links_title:focus-visible {
  outline: none;
}
.block_36 .links_title:focus-visible::after {
  outline: 2px solid #1F5FD6;
}
.block_36 .links_desc {
  color: #6B7280;
}

.block_11 + .block_36 {
  padding-top: 1.5rem;
}

@media (max-width: 1023px) {
  .block_36 {
    padding: 3.5rem 0;
  }
  .block_36 .links_row {
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    gap: 1rem;
  }
  .block_36 .links_icon {
    width: 2.75rem;
    height: 2.75rem;
    border-radius: 12px;
  }
  .block_11 + .block_36 {
    padding-top: 0.5rem;
  }
}
/**
 * Block 37 — Картки-посилання з превʼю.
 * Шаблон: block_37.php (поруч)
 */
.block_37 {
  padding: 6.5rem 0;
}
.block_37 .lcards_grid {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: minmax(0, 1fr) 1rem minmax(0, 1fr) 1rem minmax(0, 1fr);
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}
.block_37 .lcard {
  position: relative;
  gap: 1rem;
  padding: 1rem;
  border: 1px solid #E5E7EB;
  border-radius: 16px;
  background: #F5F6F8;
  -webkit-transition: -webkit-box-shadow 0.2s;
  transition: -webkit-box-shadow 0.2s;
  transition: box-shadow 0.2s;
  transition: box-shadow 0.2s, -webkit-box-shadow 0.2s;
}
.block_37 .lcard:hover {
  -webkit-box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
          box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}
.block_37 .lcard:hover .lcard_img img {
  -webkit-transform: scale(1.03);
      -ms-transform: scale(1.03);
          transform: scale(1.03);
}
.block_37 .lcard:hover .lcard_title {
  text-decoration-thickness: 2px;
}
.block_37 .lcard_img {
  display: block;
  aspect-ratio: 395/211;
  overflow: hidden;
  border: 1px solid #E5E7EB;
  border-radius: 16px;
  background: #FFFFFF;
}
.block_37 .lcard_img img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: top;
     object-position: top;
  -webkit-transition: -webkit-transform 0.4s;
  transition: -webkit-transform 0.4s;
  transition: transform 0.4s;
  transition: transform 0.4s, -webkit-transform 0.4s;
}
.block_37 .lcard_foot {
  padding: 0 0.5rem 0.25rem;
  color: #6B7280;
}
.block_37 .lcard_title {
  min-width: 0;
  color: #111111;
  text-decoration: underline;
  text-underline-offset: 0.2em;
}
.block_37 .lcard_title::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 16px;
}
.block_37 .lcard_title:focus-visible {
  outline: none;
}
.block_37 .lcard_title:focus-visible::after {
  outline: 2px solid #1F5FD6;
}

.block_11 + .block_37 {
  padding-top: 1.5rem;
}

@media (max-width: 1023px) {
  .block_37 {
    padding: 3.5rem 0;
  }
  .block_37 .lcards_grid {
    -ms-grid-columns: (minmax(0, 1fr))[2];
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .block_11 + .block_37 {
    padding-top: 0.5rem;
  }
}
@media (max-width: 560px) {
  .block_37 .lcards_grid {
    -ms-grid-columns: minmax(0, 1fr);
    grid-template-columns: minmax(0, 1fr);
  }
}
/**
 * Block 38 — Шапка сторінки з кнопками.
 * Шаблон: block_38.php (поруч)
 */
.block_38 {
  padding-top: 4.5rem;
}
.block_38 .headbtns_row {
  gap: 2.5rem 4rem;
  padding-bottom: 4rem;
}
.block_38 .headbtns_text {
  max-width: 47.4375rem;
}
.block_38 .headbtns_subtitle {
  color: #6B7280;
}
.block_38 .headbtns_actions {
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.block_38 .headbtns_btn {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  height: 3.75rem;
  padding: 0 2.5rem;
  border-radius: 12px;
  white-space: nowrap;
  -webkit-transition: opacity 0.2s, border-color 0.2s;
  transition: opacity 0.2s, border-color 0.2s;
}
.block_38 .headbtns_btn--dark {
  background: #111111;
  color: #FFFFFF;
}
.block_38 .headbtns_btn--dark:hover {
  opacity: 0.85;
}
.block_38 .headbtns_btn--outline {
  border: 1px solid #E5E7EB;
  color: #111111;
}
.block_38 .headbtns_btn--outline:hover {
  border-color: #111111;
}
.block_38 .headbtns_banner img {
  display: block;
  width: 100%;
  height: 25rem;
  -o-object-fit: cover;
     object-fit: cover;
}

@media (max-width: 1023px) {
  .block_38 {
    padding-top: 2.5rem;
  }
  .block_38 .headbtns_row {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    gap: 1.5rem;
    padding-bottom: 2rem;
  }
  .block_38 .headbtns_banner img {
    height: clamp(12rem, 45vw, 18rem);
  }
}
@media (max-width: 560px) {
  .block_38 .headbtns_actions,
  .block_38 .headbtns_btn {
    width: 100%;
  }
}
/**
 * Block 39 — Потрібна допомога.
 * Шаблон: block_39.php (поруч)
 */
.block_39 {
  padding: 6.5rem 0;
}
.block_39 .help_layout {
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 5rem;
}
.block_39 .help_text {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 41%;
          flex: 0 0 41%;
  gap: 3rem;
}
.block_39 .help_desc {
  color: #6B7280;
}
.block_39 .help_btn {
  -ms-flex-item-align: start;
      align-self: flex-start;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  height: 3.75rem;
  padding: 0 2.5rem;
  border-radius: 12px;
  background: #111111;
  color: #FFFFFF;
  white-space: nowrap;
  -webkit-transition: opacity 0.2s;
  transition: opacity 0.2s;
}
.block_39 .help_btn:hover {
  opacity: 0.85;
}
.block_39 .help_cards {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 49.4%;
          flex: 0 0 49.4%;
}
.block_39 .help_card {
  gap: 2rem;
  padding: 2rem;
  border-radius: 20px;
  background: #F5F6F8;
}
.block_39 .help_card_title {
  font-weight: 500;
}
.block_39 .help_card_text {
  font-weight: 300;
}
.block_39 .help_phone {
  -ms-flex-item-align: start;
      align-self: flex-start;
  color: #111111;
}
.block_39 .help_phone:hover .help_phone_number {
  text-decoration: underline;
}
.block_39 .help_phone_icon {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 14px;
  background: #111111;
  color: #FFFFFF;
}
.block_39 .help_phone_label {
  color: #6B7280;
}

@media (max-width: 1023px) {
  .block_39 {
    padding: 3.5rem 0;
  }
  .block_39 .help_layout {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: stretch;
        -ms-flex-align: stretch;
            align-items: stretch;
    gap: 2.5rem;
  }
  .block_39 .help_text,
  .block_39 .help_cards {
    -webkit-box-flex: 0;
        -ms-flex: none;
            flex: none;
    width: 100%;
  }
  .block_39 .help_text {
    gap: 2rem;
  }
  .block_39 .help_card {
    padding: 1.5rem;
  }
}
/**
 * Block 40 — Список конкурсів.
 * Шаблон: block_40.php. Вкладки, картки й пагінація — глобальні стилі новин (.news_*).
 */
.block_40 {
  padding: 6.5rem 0;
}
.block_40 .contests_wrap {
  gap: 3.5rem;
}
.block_40 .contests_archive_link {
  color: #111111;
  text-decoration: underline;
}

.block_11 + .block_40 {
  padding-top: 1.5rem;
}

@media (max-width: 1023px) {
  .block_40 {
    padding: 3.5rem 0;
  }
  .block_40 .contests_wrap {
    gap: 2rem;
  }
  .block_11 + .block_40 {
    padding-top: 0.5rem;
  }
}
@media (max-width: 1023px) {
  header.top_header_site .logo_lockup .logo_title {
    font-size: 1.25rem;
  }
  header.top_header_site .logo_lockup .logo_mark {
    height: 2.5rem;
  }
  header.top_header_site .menu-icon.show_mob {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}
/* ==========================================================================
   Сторінка професії
   Розміри — з макета «Професія» у Figma. Секції після «Про професію» — блоки 4, 34, 29, 6, 8
   ========================================================================== */
.profession_head {
  padding: 4.5rem 0;
}
.profession_head > .content_block {
  gap: 4.5rem;
}

.profession_breadcrumbs {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: baseline;
      -ms-flex-align: baseline;
          align-items: baseline;
  color: #6B7280;
}
.profession_breadcrumbs a {
  color: #6B7280;
  white-space: nowrap;
}
.profession_breadcrumbs a:hover {
  color: #111111;
}
.profession_breadcrumbs .separator {
  margin: 0 0.5rem;
}

.profession_breadcrumbs_current {
  max-width: 20rem;
  overflow: hidden;
  color: #111111;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.profession_head_row {
  gap: 2.5rem 4rem;
}

.profession_head_text {
  max-width: 47.4375rem;
}

.profession_subtitle {
  color: #6B7280;
}

.profession_actions {
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

.profession_btn {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  height: 3.75rem;
  padding: 0 2.5rem;
  border-radius: 12px;
  white-space: nowrap;
  -webkit-transition: opacity 0.2s, border-color 0.2s;
  transition: opacity 0.2s, border-color 0.2s;
}
.profession_btn--dark {
  background: #111111;
  color: #FFFFFF;
}
.profession_btn--dark:hover {
  opacity: 0.85;
}
.profession_btn--outline {
  border: 1px solid #E5E7EB;
  color: #111111;
}
.profession_btn--outline:hover {
  border-color: #111111;
}

.profession_banner img {
  display: block;
  width: 100%;
  height: 25rem;
  -o-object-fit: cover;
     object-fit: cover;
}

.profession_banner--top img {
  -o-object-position: center 25%;
     object-position: center 25%;
}

.profession_banner--bottom img {
  -o-object-position: center 75%;
     object-position: center 75%;
}

.profession_about {
  padding: 6.5rem 0;
}

.profession_about_row {
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 5rem;
}

.profession_about_text {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 40.5rem;
          flex: 1 1 40.5rem;
  max-width: 40.5rem;
  gap: 2.5rem;
}

.profession_about_title {
  font-weight: 400;
}

.profession_about_content {
  color: #6B7280;
}
.profession_about_content > * + * {
  margin-top: 1rem;
}
.profession_about_content a {
  color: #111111;
  text-decoration: underline;
}

.profession_facts {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 41%;
          flex: 0 0 41%;
  margin-left: auto;
  gap: 2rem;
  padding: 2.5rem;
  border-radius: 20px;
  background: #262626;
  -webkit-box-shadow: 4px 4px 16px rgba(0, 0, 0, 0.16);
          box-shadow: 4px 4px 16px rgba(0, 0, 0, 0.16);
}

.profession_fact {
  gap: 1.5rem;
}

.profession_fact_icon {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 14px;
  background: #FFFFFF;
  color: #111111;
}

.profession_fact_label {
  color: #919191;
}

.profession_fact_value {
  color: #FFFFFF;
}

@media (max-width: 1023px) {
  .profession_head {
    padding: 2.5rem 0 2rem;
  }
  .profession_head > .content_block {
    gap: 2rem;
  }
  .profession_head_row {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    gap: 1.5rem;
  }
  .profession_breadcrumbs_current {
    max-width: 12rem;
  }
  .profession_banner img {
    height: clamp(12rem, 45vw, 18rem);
  }
  .profession_about {
    padding: 3.5rem 0;
  }
  .profession_about_row {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 2.5rem;
  }
  .profession_about_text {
    -webkit-box-flex: 0;
        -ms-flex: none;
            flex: none;
    max-width: none;
    gap: 1.5rem;
  }
  .profession_facts {
    -webkit-box-flex: 0;
        -ms-flex: none;
            flex: none;
    width: 100%;
    margin-left: 0;
    gap: 1.5rem;
    padding: 1.5rem;
  }
}
@media (max-width: 560px) {
  .profession_actions,
  .profession_btn {
    width: 100%;
  }
}