@charset "UTF-8";
/**
* Подключение шрифтов локально из папки "./src/fonts"
*/
@font-face {
  font-family: Inter;
  font-display: swap;
  src: url(../fonts/Inter-VariableFont_slnt,wght.woff2) format("woff2");
  font-weight: undefined;
  font-style: normal;
}
@font-face {
  font-family: InterTight;
  font-display: swap;
  src: url(../fonts/InterTight-VariableFont_wght.woff2) format("woff2");
  font-weight: undefined;
  font-style: normal;
}
/** Подключение переменных */
:root {
  --bs-font-family: Inter;
  --title-ff: InterTight;
  --bs-font-size: rem(16);
  --bs-font-weight: 400;
  --bs-line-height: 24px;
  --bs-font-color: #141414;
  --bs-transition: .3s ease-in-out;
  --bs-radius: 10px;
  --primary-color: #E5392C;
  --primary-hover-color: #E5392C;
  --secondary-color: #FFDF00;
  --secondary-hover-color: #AF0084;
  --white-color: #fff;
  --black-color: #000000;
  --primary-disabled-background-color: #9d9da0;
  --dark-gray-color: #686868;
  --timestamp-color: #6d6d6d;
  --inactive-color: #9B9B9B;
  --light-bg-color: #D4D5DB;
  --main-page-bg-color: #F3F5FC;
  --share-icons-color: #A8AEC2;
  --tooltip-border-color: #F4F7F7;
  --tag-promo-color: #E5392C;
  --tag-blue-color: #AFC5FF;
  --tag-yellow-color: #FFF4AA;
  --tag-exclusive-color: #FFDF00;
  --tag-special-color: #d6d4ff;
  --tag-gray-color: #DCDEE5;
  --tag-partner-color: #141414;
  --main-bg-color: #CED5D6;
  --bs-shadow: 0px 2px 3px rgba(#000, 10%), 0px 8px 3px rgba(#000, 10%);
  --hover-shadow: 0 0 5px 0 rgba(#000, 10%),
                  0 0 10px 0 rgba(#000, 10%),
                  0 0 15px 0 rgba(#000, 10%);
  --mobile-header-height: 116px;
  --desktop-header-height: 168px;
}

/**
* Подключение sass function и mixins и extends стилей
*/
.support-bn {
  margin-bottom: 24px;
}
.support-bn--text1 {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 15px;
  background-color: var(--primary-color);
  color: #fff;
  padding: 24px 40px;
  flex-direction: column;
}
@media (min-width: 641px) {
  .support-bn--text1 {
    flex-direction: row;
  }
}
.support-bn--text1__header {
  display: flex;
  flex-direction: column;
}
.support-bn--text1__header svg {
  width: 52px;
  height: 15px;
  display: block;
}
.support-bn--text1__header p {
  padding: 0;
  margin: 0;
}
.support-bn--text1__btn {
  border-radius: 4px;
  padding: 10px 33px;
  border: 2px solid #fff !important;
  background-color: #fff;
  color: var(--primary-color);
  font-weight: 600;
  color: #000;
}
.support-bn--text1__btn:hover {
  color: var(--primary-color);
  background-color: #fff;
}
.support-bn--text2 {
  width: 100%;
  height: 100%;
  padding: 16px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  border-top: 1px solid #D4D5DB;
  border-bottom: 1px solid #D4D5DB;
  background-color: #F4F7F7;
  position: relative;
}
.support-bn--text2 p {
  font-size: 24px;
  font-weight: 400;
  line-height: 24px;
  margin: 0 !important;
  padding: 0;
  position: relative;
  z-index: 10;
}
.support-bn--text2__btns {
  position: relative;
  z-index: 10;
  display: flex;
  gap: 20px;
  justify-content: center;
  align-items: center;
  margin-top: 24px;
}
.support-bn--text2__btns a {
  text-decoration: none;
}
.support-bn--text2__btn {
  background-color: var(--primary-color);
  border: 2px solid var(--primary-color);
  border-radius: 4px;
  color: #fff;
  font-weight: 500;
  font-size: 16px;
  padding: 10px 35px;
  border-bottom: none !important;
}
.support-bn--text2__btn:hover {
  background-color: #fff;
  color: var(--primary-color);
}
.support-bn--text2__btn2 {
  color: var(--primary-color);
  font-weight: 500;
  font-size: 16px;
  line-height: 1;
  border-bottom: none !important;
  padding: 0;
}
.support-bn--text2__btn2:hover {
  color: #000;
  text-decoration: underline;
}
.support-bn--text2:after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  display: block;
  height: 100%;
  width: 59px;
  background-size: cover;
  background-repeat: no-repeat;
  z-index: 1;
  background-image: url(../img/identity-icons/title-identity.svg);
}

.post__content .support-bn--image a.support-bn__link {
  padding: 0;
}
.post__content .support-bn--text1 p {
  padding: 0;
  margin: 0;
  font-size: 24px;
  font-weight: 400;
  line-height: 34px;
  font-family: "Inter", sans-serif;
}
.post__content .support-bn--text2__btns a {
  text-decoration: none;
  border-bottom: none;
}

/* Шаблоны (заготовки)
* @extend %имя шаблона;
*/
/** Обнуление */
* {
  padding: 0;
  margin: 0;
  border: 0;
  -webkit-tap-highlight-color: transparent;
}
*, *:before, *:after {
  box-sizing: border-box;
}
*:focus, *:active {
  outline: none;
}

nav,
footer,
header,
aside {
  display: block;
}

html {
  scroll-behavior: smooth;
}
html.lock {
  overflow: hidden;
  touch-action: none;
}

html.main-page {
  opacity: 0;
  scroll-behavior: smooth;
  transition: opacity 0.5s ease-in-out;
}
html.main-page.loaded {
  opacity: 1;
}

html {
  width: 100%;
  height: 100%;
  min-width: 320px;
}

body {
  width: 100%;
  min-width: 320px;
}

body {
  overscroll-behavior: none;
  font-size: var(--bs-font-size);
  font-family: var(--bs-font-family);
  font-weight: var(--bs-font-weight);
  line-height: var(--bs-line-height);
  text-rendering: optimizelegibility;
  -webkit-text-size-adjust: 100%;
     -moz-text-size-adjust: 100%;
          text-size-adjust: 100%;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  background-color: #fff;
}

input,
button,
textarea {
  font-family: inherit;
}

input::-ms-clear {
  display: none;
}

input[type=number] {
  -moz-appearance: textfield;
}
input[type=number]::-webkit-outer-spin-button, input[type=number]::-webkit-inner-spin-button {
  -webkit-appearance: none;
}

button {
  cursor: pointer;
  -webkit-user-select: none;
          user-select: none;
}
button::-moz-focus-inner {
  padding: 0;
  border: 0;
}

a {
  text-decoration: none;
}
a:focus, a:active {
  outline: none;
}
a:visited {
  text-decoration: none;
}
a:hover {
  text-decoration: none;
}

ul,
li {
  list-style: none;
}

img {
  vertical-align: top;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: inherit;
  font-weight: 400;
}

sup {
  color: inherit;
}

strong {
  font-weight: 600;
}

/**
* Libs
*/
.splide__container {
  box-sizing: border-box;
  position: relative;
}

.splide__list {
  backface-visibility: hidden;
  display: flex;
  height: 100%;
  margin: 0 !important;
  padding: 0 !important;
}

.splide.is-initialized:not(.is-active) .splide__list {
  display: block;
}

.splide__pagination {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin: 0;
  pointer-events: none;
}

.splide__pagination li {
  display: inline-block;
  line-height: 1;
  list-style-type: none;
  margin: 0;
  pointer-events: auto;
}

.splide:not(.is-overflow) .splide__pagination {
  display: none;
}

.splide__progress__bar {
  width: 0;
}

.splide {
  position: relative;
  visibility: hidden;
}

.splide.is-initialized, .splide.is-rendered {
  visibility: visible;
}

.splide__slide {
  backface-visibility: hidden;
  box-sizing: border-box;
  flex-shrink: 0;
  list-style-type: none !important;
  margin: 0;
  position: relative;
}

.splide__slide img {
  vertical-align: bottom;
}

.splide__spinner {
  animation: splide-loading 1s linear infinite;
  border: 2px solid #999;
  border-left-color: transparent;
  border-radius: 50%;
  bottom: 0;
  contain: strict;
  display: inline-block;
  height: 20px;
  left: 0;
  margin: auto;
  position: absolute;
  right: 0;
  top: 0;
  width: 20px;
}

.splide__sr {
  clip: rect(0 0 0 0);
  border: 0;
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
}

.splide__toggle.is-active .splide__toggle__play, .splide__toggle__pause {
  display: none;
}

.splide__toggle.is-active .splide__toggle__pause {
  display: inline;
}

.splide__track {
  overflow: hidden;
  position: relative;
  z-index: 0;
}

@keyframes splide-loading {
  0% {
    transform: rotate(0);
  }
  to {
    transform: rotate(1turn);
  }
}
.splide__track--draggable {
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  user-select: none;
}

.splide__track--fade > .splide__list > .splide__slide {
  margin: 0 !important;
  opacity: 0;
  z-index: 0;
}

.splide__track--fade > .splide__list > .splide__slide.is-active {
  opacity: 1;
  z-index: 1;
}

.splide--rtl {
  direction: rtl;
}

.splide__track--ttb > .splide__list {
  display: block;
}

.splide__arrow {
  align-items: center;
  background: #ccc;
  border: 0;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  height: 2em;
  justify-content: center;
  opacity: 0.7;
  padding: 0;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 2em;
  z-index: 1;
}

.splide__arrow svg {
  fill: #000;
  height: 1.2em;
  width: 1.2em;
}

.splide__arrow:hover:not(:disabled) {
  opacity: 0.9;
}

.splide__arrow:disabled {
  opacity: 0.3;
}

.splide__arrow:focus-visible {
  outline: 3px solid #0bf;
  outline-offset: 3px;
}

.splide__arrow--prev {
  left: 1em;
}

.splide__arrow--prev svg {
  transform: scaleX(-1);
}

.splide__arrow--next {
  right: 1em;
}

.splide.is-focus-in .splide__arrow:focus {
  outline: 3px solid #0bf;
  outline-offset: 3px;
}

.splide__pagination {
  bottom: 0.5em;
  left: 0;
  padding: 0 1em;
  position: absolute;
  right: 0;
  z-index: 1;
}

.splide__pagination__page {
  background: #ccc;
  border: 0;
  border-radius: 50%;
  display: inline-block;
  height: 8px;
  margin: 3px;
  opacity: 0.7;
  padding: 0;
  position: relative;
  transition: transform 0.2s linear;
  width: 8px;
}

.splide__pagination__page.is-active {
  background: #fff;
  transform: scale(1.4);
  z-index: 1;
}

.splide__pagination__page:hover {
  cursor: pointer;
  opacity: 0.9;
}

.splide__pagination__page:focus-visible {
  outline: 3px solid #0bf;
  outline-offset: 3px;
}

.splide.is-focus-in .splide__pagination__page:focus {
  outline: 3px solid #0bf;
  outline-offset: 3px;
}

.splide__progress__bar {
  background: #ccc;
  height: 3px;
}

.splide__slide {
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

.splide__slide:focus {
  outline: 0;
}

@supports (outline-offset: -3px) {
  .splide__slide:focus-visible {
    outline: 3px solid #0bf;
    outline-offset: -3px;
  }
}
@media screen and (-ms-high-contrast: none) {
  .splide__slide:focus-visible {
    border: 3px solid #0bf;
  }
}
@supports (outline-offset: -3px) {
  .splide.is-focus-in .splide__slide:focus {
    outline: 3px solid #0bf;
    outline-offset: -3px;
  }
}
@media screen and (-ms-high-contrast: none) {
  .splide.is-focus-in .splide__slide:focus {
    border: 3px solid #0bf;
  }
  .splide.is-focus-in .splide__track > .splide__list > .splide__slide:focus {
    border-color: #0bf;
  }
}
.splide__toggle {
  cursor: pointer;
}

.splide__toggle:focus-visible {
  outline: 3px solid #0bf;
  outline-offset: 3px;
}

.splide.is-focus-in .splide__toggle:focus {
  outline: 3px solid #0bf;
  outline-offset: 3px;
}

.splide__track--nav > .splide__list > .splide__slide {
  border: 3px solid transparent;
  cursor: pointer;
}

.splide__track--nav > .splide__list > .splide__slide.is-active {
  border: 3px solid #000;
}

.splide__arrows--rtl .splide__arrow--prev {
  left: auto;
  right: 1em;
}

.splide__arrows--rtl .splide__arrow--prev svg {
  transform: scaleX(1);
}

.splide__arrows--rtl .splide__arrow--next {
  left: 1em;
  right: auto;
}

.splide__arrows--rtl .splide__arrow--next svg {
  transform: scaleX(-1);
}

.splide__arrows--ttb .splide__arrow {
  left: 50%;
  transform: translate(-50%);
}

.splide__arrows--ttb .splide__arrow--prev {
  top: 1em;
}

.splide__arrows--ttb .splide__arrow--prev svg {
  transform: rotate(-90deg);
}

.splide__arrows--ttb .splide__arrow--next {
  bottom: 1em;
  top: auto;
}

.splide__arrows--ttb .splide__arrow--next svg {
  transform: rotate(90deg);
}

.splide__pagination--ttb {
  bottom: 0;
  display: flex;
  flex-direction: column;
  left: auto;
  padding: 1em 0;
  right: 0.5em;
  top: 0;
}

/** Підключення іконок */
.icon {
  display: inline-block;
  width: 24px;
  height: 24px;
  background-color: var(--black-color);
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-size: 100%;
          mask-size: 100%;
  -webkit-mask-position: center;
          mask-position: center;
  position: relative;
  transition: background-color var(--bs-transition);
}
.icon:hover, .icon:focus, .icon:active {
  background-color: var(--primary-hover-color);
}
.icon-child:hover {
  background-color: var(--black-color);
}
.icon-tag {
  width: 16px;
  height: 16px;
  background-color: var(--primary-color);
  color: var(--primary-color);
}
.icon-updated {
  -webkit-mask-image: url(../img/tags/updated.svg);
  mask-image: url(../img/tags/updated.svg);
}
.icon-updating {
  -webkit-mask-image: url(../img/tags/updating.svg);
  mask-image: url(../img/tags/updating.svg);
}
.icon-edited {
  -webkit-mask-image: url(../img/tags/edited.svg);
  mask-image: url(../img/tags/edited.svg);
}
.icon-video {
  -webkit-mask-image: url(../img/tags/video.svg);
  mask-image: url(../img/tags/video.svg);
}
.icon-photo {
  -webkit-mask-image: url(../img/tags/photo.svg);
  mask-image: url(../img/tags/photo.svg);
}
.icon-search {
  -webkit-mask-image: url(../img/icons/search.svg);
  mask-image: url(../img/icons/search.svg);
}
.icon-close {
  -webkit-mask-image: url(../img/icons/close.svg);
  mask-image: url(../img/icons/close.svg);
}
.icon-arrow-left {
  -webkit-mask-image: url(../img/icons/arrow-left.svg);
  mask-image: url(../img/icons/arrow-left.svg);
}
.icon-arrow-right {
  -webkit-mask-image: url(../img/icons/arrow-right.svg);
  mask-image: url(../img/icons/arrow-right.svg);
}
.icon-arrow-lang {
  width: 20px;
  height: 20px;
  background-color: var(--primary-color);
  -webkit-mask-image: url(../img/icons/arrow-lang.svg);
  mask-image: url(../img/icons/arrow-lang.svg);
}
.icon-arrow-down {
  -webkit-mask-image: url(../img/icons/arrow-down.svg);
  mask-image: url(../img/icons/arrow-down.svg);
}
.icon-copy {
  -webkit-mask-image: url(../img/icons/copy.svg);
  mask-image: url(../img/icons/copy.svg);
}
.icon-facebook {
  -webkit-mask-image: url(../img/icons/facebook.svg);
  mask-image: url(../img/icons/facebook.svg);
}
.icon-linkedin {
  -webkit-mask-image: url(../img/icons/linkedin.svg);
  mask-image: url(../img/icons/linkedin.svg);
}
.icon-telegram {
  -webkit-mask-image: url(../img/icons/telegram.svg);
  mask-image: url(../img/icons/telegram.svg);
}
.icon-tiktok {
  -webkit-mask-image: url(../img/icons/tiktok.svg);
  mask-image: url(../img/icons/tiktok.svg);
}
.icon-instagram {
  -webkit-mask-image: url(../img/icons/instagram.svg);
  mask-image: url(../img/icons/instagram.svg);
}
.icon-twitter {
  -webkit-mask-image: url(../img/icons/twitter.svg);
  mask-image: url(../img/icons/twitter.svg);
}
.icon-viber {
  -webkit-mask-image: url(../img/icons/viber.svg);
  mask-image: url(../img/icons/viber.svg);
}
.icon-whatsapp {
  -webkit-mask-image: url(../img/icons/whatsapp.svg);
  mask-image: url(../img/icons/whatsapp.svg);
}
.icon-youtube {
  -webkit-mask-image: url(../img/icons/youtube.svg);
  mask-image: url(../img/icons/youtube.svg);
}

/**
* Подключение custom scrollbar для всего сайта
*/
* {
  scrollbar-width: 0.5rem;
  scrollbar-color: var(--primary-color) #d6d6d6;
}
*::-webkit-scrollbar {
  width: 0.5rem;
  background-color: var(--white-color);
}
*::-webkit-scrollbar-track {
  box-shadow: inset 0 0 0.375rem rgba(0, 0, 0, 0.2);
  border-radius: 0.25rem;
  background: #eee;
}
*::-webkit-scrollbar-thumb {
  border-radius: 0.25rem;
  border: 0 none #fff;
  background-color: var(--primary-color);
}
*::-webkit-scrollbar-thumb:hover {
  background-color: var(--primary-hover-color);
}

/**
* Общие параметры, шаблоны(заготовки) и вспомогательные классы
*/
/** Базовые анимации: */
@keyframes show-header {
  0% {
    top: -100%;
  }
  100% {
    top: 0;
  }
}
@keyframes fade-up-big {
  0% {
    transform: translateY(1rem);
    opacity: 0;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}
@keyframes rotation {
  from {
    transform: rotate(0);
  }
  to {
    transform: rotate(359deg);
  }
}
/** Стили для полноэкранного блока: */
/*
* (i) Стили будут применяться ко
* всем классам содержащим *__container
* Например header__container, main__container и т.д.
*/
[class*=__container] {
  max-width: 81.875rem;
  margin: 0 auto;
  padding: 0 0.9375rem;
}

[class*=-ibg] {
  position: relative;
}
[class*=-ibg] img {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  object-fit: cover;
}

[class*=-ibg_contain] img {
  object-fit: contain;
}

.wrapper {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  /** Поменять на clip - если используется в проекте position: sticky */
  overflow: hidden;
}

.page {
  position: relative;
  flex: 1 1 auto;
  z-index: 10;
}
.page [data-observ] {
  margin: 0;
  padding: 0;
  width: 100%;
  background: transparent;
  pointer-events: none;
  transition: height 0.5s ease-out;
}
.container {
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
}

@media (min-width: 576px) {
  .container {
    max-width: calc(100% - 20px);
  }
}
@media (min-width: 768px) {
  .container {
    max-width: calc(100% - 20px);
  }
}
@media (min-width: 1200px) {
  .container {
    max-width: 80rem;
  }
}
.d-none {
  display: none;
}

#poststuff .wpml_acf_original_value {
  display: none;
}

/**
* БЕМ блоки используемые во всё проекте
*/
.page__header {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-direction: row;
  margin-bottom: 40px;
  gap: 8px;
}
@media (max-width: 48em) {
  .page__header {
    margin: 16px 0;
  }
}
.page__heading {
  font-family: var(--title-ff);
  font-size: 2.5rem;
  line-height: 3rem;
  font-weight: 500;
}
.page__content hr {
  margin: 40px 0;
}
.page__content h2,
.page__content h3,
.page__content h4,
.page__content h5,
.page__content h6 {
  margin-bottom: 16px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
  gap: 8px;
  border-radius: 4px;
  font-family: var(--title-ff);
  font-size: 1rem;
  line-height: 1.25rem;
  font-weight: 500;
  color: var(--primary-color);
  transition: color var(--bs-transition), border var(--bs-transition), background-color var(--bs-transition);
}
.button .icon {
  width: 24px;
  height: 24px;
}
.button--icon-prepend .icon {
  margin-right: 10px;
}
.button--icon-append .icon {
  margin-left: 10px;
}
.button--donation {
  font-size: 1rem;
  line-height: 125%;
  font-weight: 500;
  color: var(--white-color);
  background-color: var(--primary-color);
  border: 1px solid transparent;
}
.button--donation:hover, .button--donation:active, .button--donation:focus {
  border-color: var(--primary-hover-color);
  color: var(--primary-hover-color);
  background-color: var(--white-color);
}
.button--donation:disabled, .button--donation[disabled] {
  background-color: var(--primary-disabled-background-color);
}
.button--primary {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row;
  max-width: 300px;
  width: 100%;
  margin: 0 auto;
  background-color: transparent;
  color: var(--primary-hover-color);
}
.button--primary:hover, .button--primary:focus, .button--primary:active {
  color: var(--white-color);
  background-color: var(--primary-hover-color);
}
.button--primary:disabled, .button--primary[disabled] {
  background-color: var(--primary-disabled-background-color);
}
.button--secondary {
  width: 100%;
  color: var(--white-color);
  background-color: var(--primary-hover-color);
  border: 1px solid transparent;
}
.button--secondary:hover, .button--secondary:focus {
  color: var(--primary-color);
  border-color: var(--primary-color);
  background-color: var(--white-color);
}
.button--secondary:active {
  color: var(--white-color);
  background-color: var(--primary-hover-color);
}
.button--secondary:disabled, .button--secondary[disabled] {
  color: var(--secondary-disabled-background-color);
}
.button--banner {
  width: 248px;
  height: 48px;
  padding: 10px;
  font-family: var(--bs-font-family);
  font-size: var(--bs-font-size);
  line-height: var(--bs-line-height);
  font-weight: 600;
  background-color: var(--white-color);
  color: var(--bs-font-color);
  border: 2px solid var(--black-color);
}
.button--banner:hover, .button--banner:active, .button--banner:focus {
  background-color: var(--primary-hover-color);
  color: var(--white-color);
}
.button--banner:disabled, .button--banner[disabled] {
  background-color: var(--secondary-disabled-background-color);
}

a {
  color: var(--bs-font-color);
  transition: color var(--bs-transition);
}
a.link {
  display: inline-block;
  padding: 5px 10px;
  position: relative;
}
a.link--underline:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 10px;
  width: calc(100% - 20px);
  height: 2px;
  border-radius: 0 0 1px 1px;
  background-color: var(--primary-color);
  opacity: 1;
  transform: translate3d(0, 0.2em, 0);
}
a:hover, a:focus {
  color: var(--primary-hover-color);
}

.like-h1 {
  font-weight: 500;
}
@media (min-width: 80em) {
  .like-h1 {
    font-size: 2rem;
  }
}
@media (min-width: 20em) and (max-width: 80em) {
  @supports (font-size: clamp( 1.5rem , 1.3333333333rem  +  0.8333333333vw , 2rem )) {
    .like-h1 {
      font-size: clamp( 1.5rem , 1.3333333333rem  +  0.8333333333vw , 2rem );
    }
  }
  @supports not (font-size: clamp( 1.5rem , 1.3333333333rem  +  0.8333333333vw , 2rem )) {
    .like-h1 {
      font-size: calc(1.5rem + 0.5 * (100vw - 20rem) / 60);
    }
  }
}
@media (max-width: 20em) {
  .like-h1 {
    font-size: 1.5rem;
  }
}
@media (min-width: 80em) {
  .like-h1 {
    line-height: 2.5rem;
  }
}
@media (min-width: 20em) and (max-width: 80em) {
  @supports (line-height: clamp( 2rem , 1.8333333333rem  +  0.8333333333vw , 2.5rem )) {
    .like-h1 {
      line-height: clamp( 2rem , 1.8333333333rem  +  0.8333333333vw , 2.5rem );
    }
  }
  @supports not (line-height: clamp( 2rem , 1.8333333333rem  +  0.8333333333vw , 2.5rem )) {
    .like-h1 {
      line-height: calc(2rem + 0.5 * (100vw - 20rem) / 60);
    }
  }
}
@media (max-width: 20em) {
  .like-h1 {
    line-height: 2rem;
  }
}

.like-h3 {
  font-size: 1.125rem;
  line-height: 1.5rem;
}

h1 {
  font-family: var(--title-ff);
  font-size: 2rem;
  font-weight: 700;
  line-height: 2.4rem;
}

@media (max-width: 48em) {
  h1 {
    font-size: 1.25rem;
    line-height: 1.5rem;
  }
}
h2 {
  font-weight: 700;
}
@media (min-width: 80em) {
  h2 {
    font-size: 1.25rem;
  }
}
@media (min-width: 20em) and (max-width: 80em) {
  @supports (font-size: clamp( 1.125rem , 1.0833333333rem  +  0.2083333333vw , 1.25rem )) {
    h2 {
      font-size: clamp( 1.125rem , 1.0833333333rem  +  0.2083333333vw , 1.25rem );
    }
  }
  @supports not (font-size: clamp( 1.125rem , 1.0833333333rem  +  0.2083333333vw , 1.25rem )) {
    h2 {
      font-size: calc(1.125rem + 0.125 * (100vw - 20rem) / 60);
    }
  }
}
@media (max-width: 20em) {
  h2 {
    font-size: 1.125rem;
  }
}
@media (min-width: 80em) {
  h2 {
    line-height: 1.75rem;
  }
}
@media (min-width: 20em) and (max-width: 80em) {
  @supports (line-height: clamp( 1.5rem , 1.4166666667rem  +  0.4166666667vw , 1.75rem )) {
    h2 {
      line-height: clamp( 1.5rem , 1.4166666667rem  +  0.4166666667vw , 1.75rem );
    }
  }
  @supports not (line-height: clamp( 1.5rem , 1.4166666667rem  +  0.4166666667vw , 1.75rem )) {
    h2 {
      line-height: calc(1.5rem + 0.25 * (100vw - 20rem) / 60);
    }
  }
}
@media (max-width: 20em) {
  h2 {
    line-height: 1.5rem;
  }
}

h3 {
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.5rem;
}

h4 {
  font-size: 0.875rem;
  font-weight: 600;
  line-height: 1.25rem;
}

h5 {
  font-size: 0.75rem;
  font-weight: 600;
  line-height: 1.125rem;
}

h6 {
  font-size: 0.6875rem;
  font-weight: 600;
  line-height: 0.875rem;
}

time,
.reading-time,
.authors-name,
.authors-link {
  font-family: var(--title-ff);
  font-size: 0.75rem;
  line-height: 1.75rem;
  font-weight: 400;
  color: var(--timestamp-color);
  white-space: nowrap;
}

.authors-name,
.authors-link {
  transition: none;
  text-transform: uppercase;
}
.authors-name::before,
.authors-link::before {
  content: "●";
  display: inline-block;
  transform: scale(0.5);
  margin-right: 8px;
}
.authors-name:hover::before, .authors-name:focus::before, .authors-name:active::before,
.authors-link:hover::before,
.authors-link:focus::before,
.authors-link:active::before {
  color: var(--timestamp-color);
}

.language {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-direction: row;
  gap: 8px;
  color: var(--primary-color);
  font-size: var(--bs-font-size);
  line-height: 1rem;
  font-weight: 0.75rem;
  text-transform: uppercase;
}
.language:hover, .language:focus, .language:active {
  text-decoration: underline;
}

.timestamps {
  width: 100%;
  text-transform: uppercase;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-direction: row;
  flex-wrap: wrap;
  column-gap: 8px;
}

.category-title {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-direction: row;
  gap: 8px;
}
.category-title__image-box {
  height: auto;
}
@media (min-width: 80em) {
  .category-title__image-box {
    width: 2rem;
  }
}
@media (min-width: 20em) and (max-width: 80em) {
  @supports (width: clamp( 1.5rem , 1.3333333333rem  +  0.8333333333vw , 2rem )) {
    .category-title__image-box {
      width: clamp( 1.5rem , 1.3333333333rem  +  0.8333333333vw , 2rem );
    }
  }
  @supports not (width: clamp( 1.5rem , 1.3333333333rem  +  0.8333333333vw , 2rem )) {
    .category-title__image-box {
      width: calc(1.5rem + 0.5 * (100vw - 20rem) / 60);
    }
  }
}
@media (max-width: 20em) {
  .category-title__image-box {
    width: 1.5rem;
  }
}
.category-title__image {
  width: 100%;
}

.sep-v {
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
}

section.articles, section.articles-category-main, section.subscription {
  padding: 48px 0;
}
@media (max-width: 48em) {
  section.articles {
    padding: 0 0 24px;
    margin-top: -22px;
  }
  section.articles-category-main {
    padding: 24px 0;
  }
  section.articles-category--page {
    margin: 16px 0 32px;
  }
}
@media (max-width: 48em) {
  section.banner .banner-primary {
    display: none;
  }
  section.banner .banner-secondary {
    margin: 0 auto;
  }
}
@media (min-width: 48.06125em) {
  section.banner .banner-secondary {
    display: none;
  }
}

.menu-dropdown, .menu-item-has-children {
  position: relative;
  display: inline-block;
}
.menu-dropdown__button, .menu-dropdown > a.menu__link, .menu-item-has-children__button, .menu-item-has-children > a.menu__link {
  display: inline-flex;
  align-items: center;
  padding: 14px 0;
  font-size: var(--bs-font-size);
  line-height: var(--bs-line-height);
  font-weight: var(--bs-font-weight);
  border: none;
  cursor: pointer;
}
.menu-dropdown__button .icon, .menu-dropdown > a.menu__link .icon, .menu-item-has-children__button .icon, .menu-item-has-children > a.menu__link .icon {
  display: none;
  width: 15px;
  height: 15px;
  background-color: var(--bs-font-color);
}
.menu-dropdown__button--icon-prepend .icon, .menu-dropdown > a.menu__link--icon-prepend .icon, .menu-item-has-children__button--icon-prepend .icon, .menu-item-has-children > a.menu__link--icon-prepend .icon {
  margin-right: 8px;
}
.menu-dropdown__button--icon-append, .menu-dropdown > a.menu__link--icon-append, .menu-item-has-children__button--icon-append, .menu-item-has-children > a.menu__link--icon-append {
  margin-left: 8px;
}
.menu-dropdown .sub-menu, .menu-item-has-children .sub-menu {
  display: none;
  position: absolute;
  flex-direction: column;
  background-color: var(--white-color);
  min-width: 160px;
  padding: 0 16px 16px;
  left: -16px;
  box-shadow: 0 8px 16px 0 rgba(0, 0, 0, 0.2);
  z-index: 1;
}
.menu-dropdown .sub-menu .menu__item .menu__link, .menu-dropdown .sub-menu .menu-item .menu__link, .menu-item-has-children .sub-menu .menu__item .menu__link, .menu-item-has-children .sub-menu .menu-item .menu__link {
  padding: 8px 0 !important;
  text-decoration: none;
  white-space: nowrap;
}
.menu-dropdown .sub-menu .menu__item.current-menu-item::before, .menu-dropdown .sub-menu .menu-item.current-menu-item::before, .menu-item-has-children .sub-menu .menu__item.current-menu-item::before, .menu-item-has-children .sub-menu .menu-item.current-menu-item::before {
  content: "";
  position: absolute;
  left: -10px !important;
}
.menu-dropdown .sub-menu a:hover, .menu-dropdown .sub-menu a:focus, .menu-dropdown .sub-menu a:active, .menu-item-has-children .sub-menu a:hover, .menu-item-has-children .sub-menu a:focus, .menu-item-has-children .sub-menu a:active {
  color: var(--primary-hover-color);
}
.menu-dropdown:hover .menu-dropdown__button, .menu-dropdown:focus .menu-dropdown__button, .menu-dropdown:active .menu-dropdown__button, .menu-item-has-children:hover .menu-dropdown__button, .menu-item-has-children:focus .menu-dropdown__button, .menu-item-has-children:active .menu-dropdown__button {
  color: var(--primary-hover-color);
}
.menu-dropdown:hover .menu-dropdown__button .icon, .menu-dropdown:focus .menu-dropdown__button .icon, .menu-dropdown:active .menu-dropdown__button .icon, .menu-item-has-children:hover .menu-dropdown__button .icon, .menu-item-has-children:focus .menu-dropdown__button .icon, .menu-item-has-children:active .menu-dropdown__button .icon {
  background-color: var(--primary-hover-color);
}
.menu-dropdown:hover .sub-menu, .menu-dropdown:focus .sub-menu, .menu-dropdown:active .sub-menu, .menu-item-has-children:hover .sub-menu, .menu-item-has-children:focus .sub-menu, .menu-item-has-children:active .sub-menu {
  display: flex;
}

.breadcrumbs {
  padding: 24px 0;
}
@media (max-width: 48em) {
  .breadcrumbs {
    padding: 12px 0 16px;
  }
}
.breadcrumbs__list {
  display: block;
  white-space: nowrap;
  overflow: hidden;
}
.breadcrumbs__item {
  display: inline-block;
  padding-right: 8px;
  font-size: 12px;
  line-height: 16px;
  font-weight: 400;
  color: var(--timestamp-color);
}
.breadcrumbs__item a {
  color: var(--timestamp-color);
}
.breadcrumbs__item a:hover, .breadcrumbs__item a:focus, .breadcrumbs__item a:active {
  border-bottom: 1px solid var(--timestamp-color);
}
.breadcrumbs__item:not(:first-child) {
  padding-left: 8px;
  border-left: 1px solid var(--inactive-color);
}
.breadcrumbs__item.li-autor {
  border-left: none;
  padding-left: 0;
}
.breadcrumbs__item--active {
  cursor: default;
}

.text-underline {
  border-bottom: 1px solid var(--white-color);
}
.text-underline:hover, .text-underline:focus, .text-underline:active {
  border-color: inherit;
}

.no-wrap {
  white-space: nowrap;
}

.social-media-list {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-direction: row;
  gap: 24px;
}
.social-media-list__link {
  display: flex;
}
.social-media-list__link:focus .icon, .social-media-list__link:active .icon {
  background-color: var(--primary-hover-color);
}

/**
* Подключение стилей отдельных блоков и секций
*/
.header {
  position: sticky;
  width: 100%;
  top: 0;
  transition: top var(--bs-transition);
  z-index: 50;
  padding: 24px 0;
  background-color: var(--white-color);
  font-family: var(--bs-font-family);
}
@media (max-width: 62em) {
  .header__logo img {
    height: 40px;
  }
}
.header .container {
  height: 100%;
}
.header__row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-direction: row;
}
.header__row:first-of-type {
  padding-bottom: 8px;
  margin-bottom: 8px;
  border-bottom: 1px solid var(--light-bg-color);
}
@media (max-width: 62em) {
  .header__row:first-of-type {
    padding-bottom: 12px;
  }
}
.header__row--nav {
  justify-content: center;
}
.header hr {
  margin: 12px 0 0 0;
}
.header__buttons {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.header__language {
  position: relative;
  width: 28px;
}
.header__language--switch {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row;
  gap: 8px;
  cursor: pointer;
}
.header__language:hover .header__language--switch {
  display: block;
  height: initial;
  padding: 4px 3px;
  box-shadow: 0 8px 16px 0 rgba(0, 0, 0, 0.2);
  color: var(--white-color);
}
.header__language:hover .header__language--switch:hover {
  color: var(--primary-color);
  background-color: var(--white-color);
}
@media (max-width: 62em) {
  .header .main-navigation {
    display: none;
  }
}
.header .main-navigation .menu__list {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-direction: row;
  gap: 32px;
  margin: 0 auto;
}
@media (min-width: 56.93625em) {
  .header .main-navigation .menu__list#menu-header-menu .menu__link, .header .main-navigation .menu__list#menu-header-menu-ru .menu__link {
    font-weight: 600;
  }
}
@media (max-width: 56.875em) {
  .header .main-navigation .menu__list#menu-header-mobile-main .menu__link, .header .main-navigation .menu__list#menu-header-mobile-main-ru .menu__link {
    font-weight: 600;
  }
}
.header .main-navigation .menu__list .menu__item.current-menu-item, .header .main-navigation .menu__list .menu-item.current-menu-item {
  position: relative;
  opacity: 1;
}
.header .main-navigation .menu__list .menu__item.current-menu-item > .menu__link, .header .main-navigation .menu__list .menu-item.current-menu-item > .menu__link {
  color: var(--primary-color);
}
.header .main-navigation .menu__list .menu__item.current-menu-item::before, .header .main-navigation .menu__list .menu-item.current-menu-item::before {
  content: "";
  position: absolute;
  width: 6px;
  height: 6px;
  background-image: url(../img/icons/dot.svg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  top: 50%;
  transform: translateY(-50%);
  left: -14px;
}
.header .main-navigation .menu__list .menu__link {
  display: block;
  position: relative;
  padding: 10px 0;
  font-family: var(--title-ff);
  font-size: var(--bs-font-size);
  line-height: var(--bs-line-height);
  font-weight: var(--bs-font-weight);
}
.header .main-navigation .menu__list .menu__link:hover, .header .main-navigation .menu__list .menu__link:focus, .header .main-navigation .menu__list .menu__link:active {
  color: var(--primary-hover-color);
}
.header .main-navigation--second-row .menu__list .menu__link {
  font-family: var(--bs-font-family);
  font-size: 0.875rem;
}
@media (min-width: 62.06125em) {
  .header .main-navigation--mobile-list {
    display: none;
  }
}
.header .button--donation {
  padding: 8px 16px;
}
.header .button--donation__mobile {
  width: 100%;
  margin-bottom: 8px;
  border-radius: 0;
}
@media (min-width: 62.06125em) {
  .header .button--donation__mobile {
    display: none;
  }
}
@media (max-width: 62em) {
  .header {
    padding: 0 0 12px;
    border-radius: 0px 0px 28px 28px;
    box-shadow: 0px 1px 0px 0px #CED5D6, 0px 1px 4px 0px rgba(206, 213, 214, 0.16), 0px 3px 4px 0px rgba(206, 213, 214, 0.16);
  }
  .header .container {
    position: relative;
  }
}
@media (max-width: 62em) and (max-width: 52.5em) {
  .header .container::after {
    content: "";
    position: absolute;
    right: 15px;
    bottom: 16px;
    width: 16px;
    height: 30%;
    pointer-events: none;
    background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgb(255, 255, 255) 100%);
    z-index: 1;
  }
  .header .container::before {
    content: "";
    position: absolute;
    left: 15px;
    bottom: 16px;
    width: 16px;
    height: 30%;
    pointer-events: none;
    background: linear-gradient(to left, rgba(255, 255, 255, 0) 0%, rgb(255, 255, 255) 100%);
    z-index: 1;
  }
}
@media (max-width: 62em) {
  .header .container .button--donation {
    display: none;
  }
  .header__row:first-of-type {
    border-bottom: none;
  }
  .header__row--nav .main-navigation--mobile-list {
    overflow-x: auto;
  }
  .header__row--nav .main-navigation--mobile-list .main-navigation {
    display: block;
    margin-left: 16px;
  }
}
@media (max-width: 62em) and (max-width: 52.5em) {
  .header__row--nav .main-navigation--mobile-list .main-navigation {
    margin-left: 24px;
  }
}
@media (max-width: 62em) {
  .header__row--nav .main-navigation--mobile-list .main-navigation .menu__link {
    white-space: nowrap;
  }
  .header__row--nav .main-navigation--mobile-list .main-navigation .menu__item:last-of-type {
    padding-right: 12px;
  }
  .header .search-bar {
    display: none;
  }
}

.home-title {
  opacity: 0;
  position: absolute;
  z-index: -1;
  width: 0;
  height: 0;
}

#hidden-field {
  position: absolute;
  height: 0;
  width: 0;
  z-index: -1;
  overflow: hidden !important;
  opacity: 0;
}

.noclick > a {
  cursor: default !important;
}

@media (max-width: 48em) {
  .home-hero {
    margin-top: 30px;
    margin-bottom: 50px;
  }
  .home-hero .container {
    padding: 0;
    margin: 0;
    max-width: 100%;
  }
  .home-hero .home-hero__desktop {
    display: none;
  }
}
.home-hero .home-hero__mobile {
  display: none;
}
@media (max-width: 48em) {
  .home-hero .home-hero__mobile {
    display: block;
    width: 100%;
    height: 100%;
    object-position: center;
    object-fit: cover;
  }
}
.home-hero__img {
  width: 100%;
  height: auto;
  object-fit: contain;
}
@media (max-width: 48em) {
  .home-hero__link {
    width: 100%;
    display: block;
  }
}
.home-hero__linkZ {
  min-height: 68px;
  display: block;
}

.search-bar {
  display: flex;
  align-items: center;
  justify-content: left;
  height: 48px;
  position: relative;
}
.search-bar .icon:hover, .search-bar .icon:focus, .search-bar .icon:active {
  background-color: var(--primary-hover-color);
}
.search-bar__btn-open {
  height: 48px;
  width: 48px;
  background: none;
}
.search-bar__btn-close {
  height: 48px;
  width: 48px;
  font-size: 32px;
  color: var(--black-color);
  background: none;
  z-index: 9;
  position: absolute;
  right: 0;
  top: -2px;
}
.search-bar__input {
  display: none;
  height: 100%;
  width: 400px;
  border: 1px solid var(--main-bg-color);
  border-radius: 4px;
  padding: 5px 50px 5px 50px;
}
.search-bar__input input[type=text] {
  width: 100%;
  height: 100%;
  font-size: 1rem;
}
.search-bar__input__submit {
  position: absolute;
  background-color: transparent;
  left: 12px;
  top: 11px;
}
.search-bar--active .search-bar__input {
  display: block;
}
.search-bar--active .search-bar__btn-close:hover, .search-bar--active .search-bar__btn-close:focus, .search-bar--active .search-bar__btn-close:active {
  color: var(--primary-hover-color);
}

.mobile-search-bar {
  display: flex;
  align-items: center;
  justify-content: left;
  height: 50px;
  width: 100%;
}
.mobile-search-bar__input {
  height: 48px;
  width: 100%;
  border: 1px solid var(--main-bg-color);
  border-radius: 16px;
  padding: 5px 50px 5px 50px;
  position: relative;
}
.mobile-search-bar__input .icon.icon-search {
  height: 24px;
  width: 24px;
  position: absolute;
  top: 50%;
  left: 12px;
  transform: translate(0, -50%);
}
.mobile-search-bar__input input[type=text] {
  width: 100%;
  height: 100%;
  font-size: var(--bs-font-size);
  line-height: var(--bs-line-height);
  font-weight: var(--bs-font-weight);
}

.menu-hamburger {
  cursor: pointer;
  padding: 22px 12px;
}
.menu-hamburger__line {
  background: var(--black-color);
  display: block;
  height: 2px;
  position: relative;
  width: 24px;
}
.menu-hamburger__line::before, .menu-hamburger__line::after {
  background: var(--black-color);
  content: "";
  display: block;
  height: 100%;
  position: absolute;
  transition: all 0.2s ease-out;
  left: 0;
}
.menu-hamburger__line::before {
  width: 50%;
  top: 7px;
}
.menu-hamburger__line::after {
  width: 75%;
  top: -7px;
}

/* Toggle menu icon */
input#mobile-menu {
  display: none;
}
input#mobile-menu:checked ~ .mobile-menu {
  max-height: 100%;
}
input#mobile-menu:checked ~ .menu-hamburger .menu-hamburger__line {
  background: transparent;
}
input#mobile-menu:checked ~ .menu-hamburger .menu-hamburger__line::before {
  width: 100%;
  transform: rotate(-45deg);
  top: 0;
}
input#mobile-menu:checked ~ .menu-hamburger .menu-hamburger__line::after {
  width: 100%;
  transform: rotate(45deg);
  top: 0;
}

/* Nav menu */
.header-whithout-support .mobile-menu {
  top: 80px;
}

.mobile-menu {
  display: flex;
  justify-content: unset;
  align-items: flex-start;
  flex-direction: column;
  width: 100%;
  height: calc(100% - var(--mobile-header-height));
  margin-left: -25px;
  background-color: var(--white-color);
  overflow: hidden;
  max-height: 0;
  position: fixed;
  z-index: 99;
  top: var(--mobile-header-height);
  transition: max-height 0.5s ease-out;
}
.mobile-menu .wrapper {
  width: 100%;
  padding: 24px 16px;
}
@media (max-width: 36em) {
  .mobile-menu {
    margin-left: -15px;
  }
  .mobile-menu .wrapper {
    padding: 8px 16px;
  }
}
.mobile-menu .mobile-search-bar {
  margin-bottom: 16px;
}
.mobile-menu__footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-direction: row;
  margin-top: auto;
}
.mobile-menu__footer .vl {
  display: inline-block;
  height: 12px;
  margin: 0 8px;
  border-left: 1px solid var(--black-color);
}
@media (min-width: 22.06125em) {
  .mobile-menu__footer .social-media-list {
    margin-bottom: 16px;
  }
}

@media (min-width: 62.06125em) {
  .menu-hamburger,
  .mobile-menu {
    display: none;
  }
}
.mobile-navigation .menu__list {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (orientation: landscape) {
  .mobile-navigation .menu__list {
    justify-content: start;
    column-gap: 16px;
  }
}
.mobile-navigation .menu__item, .mobile-navigation .menu-item {
  display: flex;
  flex: 0 0 47%;
}
@media (orientation: landscape) {
  .mobile-navigation .menu__item, .mobile-navigation .menu-item {
    flex: initial;
  }
}
@media (max-width: 61.9375em) {
  .mobile-navigation .menu__item, .mobile-navigation .menu-item {
    flex: 0 0 47%;
  }
}
.mobile-navigation .menu__item.current-menu-item, .mobile-navigation .menu-item.current-menu-item {
  position: relative;
}
.mobile-navigation .menu__item.current-menu-item > .menu__link, .mobile-navigation .menu-item.current-menu-item > .menu__link {
  color: var(--primary-color);
}
.mobile-navigation .menu__item.current-menu-item::before, .mobile-navigation .menu-item.current-menu-item::before {
  content: "";
  position: absolute;
  width: 6px;
  height: 6px;
  background-image: url(../img/icons/dot.svg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  top: 42%;
  transform: translateY(-50%);
  left: -10px;
}
.mobile-navigation .menu__link {
  font-size: var(--bs-font-size);
  line-height: var(--bs-line-height);
  font-weight: var(--bs-font-weight);
  padding: 4px 0;
}
@media (min-width: 22.06125em) {
  .mobile-navigation .menu__link {
    font-size: 1.125rem;
    line-height: var(--bs-line-height);
    font-weight: 500;
    padding: 8px 0;
  }
}

.subscription .container {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-direction: row;
  gap: 16px;
}
@media (max-width: 48em) {
  .subscription .container {
    align-items: center;
    flex-direction: column;
    gap: 40px;
  }
}
@media (max-width: 48em) {
  .subscription__icon {
    margin: 0 auto;
  }
}
.subscription__heading {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-direction: column;
  gap: 16px;
}
.subscription__title {
  font-family: var(--title-ff);
  font-weight: 500;
}
@media (min-width: 80em) {
  .subscription__title {
    font-size: 2.5rem;
  }
}
@media (min-width: 20em) and (max-width: 80em) {
  @supports (font-size: clamp( 1.5rem , 1.1666666667rem  +  1.6666666667vw , 2.5rem )) {
    .subscription__title {
      font-size: clamp( 1.5rem , 1.1666666667rem  +  1.6666666667vw , 2.5rem );
    }
  }
  @supports not (font-size: clamp( 1.5rem , 1.1666666667rem  +  1.6666666667vw , 2.5rem )) {
    .subscription__title {
      font-size: calc(1.5rem + 1 * (100vw - 20rem) / 60);
    }
  }
}
@media (max-width: 20em) {
  .subscription__title {
    font-size: 1.5rem;
  }
}
@media (min-width: 80em) {
  .subscription__title {
    line-height: 3rem;
  }
}
@media (min-width: 20em) and (max-width: 80em) {
  @supports (line-height: clamp( 2rem , 1.6666666667rem  +  1.6666666667vw , 3rem )) {
    .subscription__title {
      line-height: clamp( 2rem , 1.6666666667rem  +  1.6666666667vw , 3rem );
    }
  }
  @supports not (line-height: clamp( 2rem , 1.6666666667rem  +  1.6666666667vw , 3rem )) {
    .subscription__title {
      line-height: calc(2rem + 1 * (100vw - 20rem) / 60);
    }
  }
}
@media (max-width: 20em) {
  .subscription__title {
    line-height: 2rem;
  }
}
.subscription__form, .subscription .pcf7-form {
  max-width: 480px;
  width: 100%;
  display: flex;
  justify-content: initial;
  align-items: flex-start;
  flex-direction: column;
  gap: 16px;
  margin-left: auto;
}
.subscription__form p, .subscription .pcf7-form p {
  width: 100%;
}
.subscription input,
.subscription textarea {
  width: 100%;
  padding: 16px;
  font-size: var(--bs-font-size);
  line-height: var(--bs-line-height);
  font-weight: var(--bs-font-weight);
  color: var(--bs-font-color);
  border: 1px solid var(--main-bg-color);
  border-radius: 4px;
}
.subscription input:hover, .subscription input:focus, .subscription input:active,
.subscription textarea:hover,
.subscription textarea:focus,
.subscription textarea:active {
  border-color: var(--primary-color);
}
.subscription textarea {
  height: 128px;
  resize: none;
}
.subscription input[type=submit] {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
  gap: 8px;
  border-radius: 4px;
  font-family: var(--title-ff);
  font-size: 1rem;
  line-height: 1.25rem;
  font-weight: 500;
  color: var(--primary-color);
  transition: color var(--bs-transition), border var(--bs-transition), background-color var(--bs-transition);
}
.subscription input[type=submit] {
  cursor: pointer;
  width: 100%;
  color: var(--white-color);
  background-color: var(--primary-hover-color);
  border: 1px solid transparent;
}
.subscription input[type=submit]:hover, .subscription input[type=submit]:focus {
  color: var(--primary-color);
  border-color: var(--primary-color);
  background-color: var(--white-color);
}

.footer {
  position: relative;
  color: var(--bs-font-color);
  padding: 88px 0 16px;
  border-top: 1px solid var(--light-bg-color);
  background: var(--main-bg-color);
}
.footer__pseudo {
  position: absolute;
  width: 100%;
  height: 60px;
  background-color: var(--white-color);
  border-bottom-left-radius: 30px;
  border-bottom-right-radius: 36px;
  top: -30px;
}
.footer h6 {
  font-size: var(--bs-font-size);
  line-height: var(--bs-line-height);
  font-weight: var(--bs-font-weight);
}
.footer .creator h6 {
  margin-bottom: 8px;
}
.footer__row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-direction: row;
  margin-bottom: 40px;
}
.footer__logo-box {
  margin-bottom: 24px;
}
.footer .social-media-list {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-direction: row;
  gap: 32px;
}
.footer .social-media-list__link {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row;
}
.footer .social-media-list__link .icon {
  height: 28px;
  width: 28px;
}
.footer__navigation {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-direction: row;
  width: 45%;
  padding: 0 20px;
}
.footer__navigation .menu__list {
  width: 50%;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-direction: column;
}
@media (min-width: 36.06125em) {
  .footer__navigation .menu__list {
    margin-left: 60px;
  }
}
.footer__navigation .menu__item:not(:last-child) {
  margin-bottom: 5px;
}
.footer__navigation .menu__link {
  display: block;
  font-family: var(--title-ff);
  padding: 0 0 16px;
  position: relative;
}
.footer__info--end {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-direction: column;
  gap: 24px;
}
@media (min-width: 70.06125em) {
  .footer__info--end {
    max-width: 328px;
    width: 100%;
  }
}
.footer .button {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row;
  max-width: 328px;
  width: 100%;
}
@media (max-width: 48em) {
  .footer .mobile-button-spot {
    width: 100%;
  }
  .footer .mobile-button-spot .button {
    margin: 0 auto;
  }
}
@media (max-width: 48em) {
  .footer__rights {
    padding: 30px 0 0;
    margin-bottom: 40px;
    border-top: 1px solid #898989;
    border-bottom: 1px solid #141414;
  }
}
.footer__rights p {
  width: 40%;
  margin: 0 auto 40px;
  font-size: 0.75rem;
  line-height: 1rem;
  font-weight: 400;
  text-align: center;
  color: var(--bs-font-color);
}
.footer__rights a {
  border-bottom: 1px solid var(--bs-font-color);
}
@media (max-width: 48em) {
  .footer__row {
    flex-direction: column;
    margin-bottom: 0;
    gap: 40px;
  }
  .footer hr {
    margin: 40px 0;
    border: 1px solid var(--timestamp-color);
  }
  .footer hr:first-of-type {
    margin-top: 0;
  }
  .footer__navigation {
    width: 100%;
    padding: 0;
  }
  .footer__rights p {
    width: 100%;
  }
}

.grecaptcha-logo, .otgs-development-site-front-end, .grecaptcha-badge {
  opacity: 0;
  height: 0;
  padding: 0;
  margin: -20px 0 0px;
  width: 0;
  overflow: hidden;
  box-shadow: none;
  border: none;
  position: absolute;
  z-index: -1;
}

.popup {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  overflow-y: auto;
  pointer-events: none;
  /** Установить свои значения */
  padding: 1.875rem 0.625rem;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 2000;
  transition: opacity 0.4s ease-in-out;
}
@media (max-width: 36em) {
  .popup {
    padding: 1.875rem 0;
  }
}
.popup.is-open {
  opacity: 1;
  pointer-events: auto;
}
.popup.is-open .popup__content {
  transform: translateY(0);
  opacity: 1;
}
.popup__wrapper {
  display: flex;
  align-items: center;
  min-height: 100%;
}
.popup__content {
  position: relative;
  width: 100%;
  margin: 0 auto;
  /** Установить свои значения */
  padding: 1.875rem 3.125rem;
  max-width: 43.125rem;
  background-color: rgba(108, 122, 137, 0.5);
  transform: translateY(-12.5rem);
  opacity: 0;
  transition: transform 0.2s ease-in-out, opacity 0.2s ease-in-out;
}
.popup__close {
  position: absolute;
  /** Установить свои значения */
  top: -2.75rem;
  right: 0.25rem;
  width: 2.5rem;
  height: 2.5rem;
  display: flex;
  justify-content: center;
  align-items: center;
  color: var(--white-color);
  background-color: var(--dark-gray-color);
  opacity: 0.8;
  border-radius: 0.5rem;
  font-size: 1rem;
}
.popup--figure.popup .popup__content {
  max-width: max-content;
  padding: 0;
}
.popup--figure.popup .popup__body {
  vertical-align: auto;
}
.popup--figure.popup .popup__body figure .picture {
  width: initial;
  margin-left: 0;
}
.popup--figure.popup .popup__body figure .picture img {
  max-height: 70vh;
  height: 100%;
  border-radius: 0;
  object-fit: contain;
}
.popup--figure.popup .popup__body figure figcaption {
  position: static;
  width: initial;
  margin-left: initial;
  padding: 4px 8px;
  color: var(--white-color);
  background-color: transparent;
}

.banner-primary {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-direction: row;
  height: 278px;
  padding: 0 59px;
  background-color: var(--primary-color);
}
@media (min-width: 80em) {
  .banner-primary {
    gap: 2.5rem;
  }
}
@media (min-width: 48em) and (max-width: 80em) {
  @supports (gap: clamp( 0.5rem , -2.5rem  +  6.25vw , 2.5rem )) {
    .banner-primary {
      gap: clamp( 0.5rem , -2.5rem  +  6.25vw , 2.5rem );
    }
  }
  @supports not (gap: clamp( 0.5rem , -2.5rem  +  6.25vw , 2.5rem )) {
    .banner-primary {
      gap: calc(0.5rem + 2 * (100vw - 48rem) / 32);
    }
  }
}
.banner-primary p {
  font-family: var(--title-ff);
  color: var(--white-color);
  text-align: start;
}
.banner-primary__title {
  font-weight: 500;
}
@media (min-width: 80em) {
  .banner-primary__title {
    font-size: 2.75rem;
  }
}
@media (min-width: 48em) and (max-width: 80em) {
  @supports (font-size: clamp( 1.75rem , 0.25rem  +  3.125vw , 2.75rem )) {
    .banner-primary__title {
      font-size: clamp( 1.75rem , 0.25rem  +  3.125vw , 2.75rem );
    }
  }
  @supports not (font-size: clamp( 1.75rem , 0.25rem  +  3.125vw , 2.75rem )) {
    .banner-primary__title {
      font-size: calc(1.75rem + 1 * (100vw - 48rem) / 32);
    }
  }
}
@media (min-width: 80em) {
  .banner-primary__title {
    line-height: 3.5rem;
  }
}
@media (min-width: 48em) and (max-width: 80em) {
  @supports (line-height: clamp( 2.25rem , 0.375rem  +  3.90625vw , 3.5rem )) {
    .banner-primary__title {
      line-height: clamp( 2.25rem , 0.375rem  +  3.90625vw , 3.5rem );
    }
  }
  @supports not (line-height: clamp( 2.25rem , 0.375rem  +  3.90625vw , 3.5rem )) {
    .banner-primary__title {
      line-height: calc(2.25rem + 1.25 * (100vw - 48rem) / 32);
    }
  }
}
.banner-primary__text {
  font-weight: 400;
}
@media (min-width: 80em) {
  .banner-primary__text {
    font-size: 1.75rem;
  }
}
@media (min-width: 48em) and (max-width: 80em) {
  @supports (font-size: clamp( 1rem , -0.125rem  +  2.34375vw , 1.75rem )) {
    .banner-primary__text {
      font-size: clamp( 1rem , -0.125rem  +  2.34375vw , 1.75rem );
    }
  }
  @supports not (font-size: clamp( 1rem , -0.125rem  +  2.34375vw , 1.75rem )) {
    .banner-primary__text {
      font-size: calc(1rem + 0.75 * (100vw - 48rem) / 32);
    }
  }
}
@media (min-width: 80em) {
  .banner-primary__text {
    line-height: 2.25rem;
  }
}
@media (min-width: 48em) and (max-width: 80em) {
  @supports (line-height: clamp( 1.5rem , 0.375rem  +  2.34375vw , 2.25rem )) {
    .banner-primary__text {
      line-height: clamp( 1.5rem , 0.375rem  +  2.34375vw , 2.25rem );
    }
  }
  @supports not (line-height: clamp( 1.5rem , 0.375rem  +  2.34375vw , 2.25rem )) {
    .banner-primary__text {
      line-height: calc(1.5rem + 0.75 * (100vw - 48rem) / 32);
    }
  }
}
.banner-primary__identity svg {
  width: 104px;
  height: 30px;
}

.banner-secondary {
  --inner-container-width: 296px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-direction: column;
  width: 100%;
  height: 328px;
  padding: 16px;
  background-color: var(--primary-color);
}
.banner-secondary__text-container {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-direction: row;
  width: var(--inner-container-width);
}
.banner-secondary__text {
  margin-right: 24px;
  margin-bottom: 50px;
  font-family: var(--title-ff);
  text-align: left;
  font-size: 1.5rem;
  line-height: 120%;
  font-weight: 500;
  text-transform: uppercase;
  color: var(--white-color);
}
.banner-secondary__description-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-direction: row;
  gap: 8px;
  width: var(--inner-container-width);
}
@media (max-width: 22.5em) {
  .banner-secondary__description-container {
    width: 100%;
  }
}
@media (max-width: 22.5em) {
  .banner-secondary__identity svg {
    width: 100%;
  }
}
.banner-secondary span {
  color: var(--white-color);
}

.articles {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-direction: column;
}
@media (max-width: 48em) {
  .articles {
    display: block;
  }
}
.articles .container {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-direction: row;
  gap: 20px;
}
@media (max-width: 48em) {
  .articles .container {
    display: block;
  }
}
@media (max-width: 48em) {
  .articles .main-articles {
    background-color: var(--main-page-bg-color);
    margin-bottom: 48px;
  }
}

.main-article {
  width: 100%;
  flex: 0 0 60%;
  margin-bottom: 24px;
}
@media (max-width: 48em) {
  .main-article {
    margin-bottom: 0;
  }
}
.main-article__card {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-direction: column;
}
@media (max-width: 48em) {
  .main-article__card {
    gap: 28px;
  }
}
.main-article__image-box {
  width: 100%;
  height: 144px;
  overflow: hidden;
}
@media (min-width: 62em) and (max-width: 81.25em) {
  @supports (height: clamp( 6.75rem , -0.4967532468rem  +  11.6883116883vw , 9rem )) {
    .main-article__image-box {
      height: clamp( 6.75rem , -0.4967532468rem  +  11.6883116883vw , 9rem );
    }
  }
  @supports not (height: clamp( 6.75rem , -0.4967532468rem  +  11.6883116883vw , 9rem )) {
    .main-article__image-box {
      height: calc(6.75rem + 2.25 * (100vw - 62rem) / 19.25);
    }
  }
}
@media (min-width: 48em) and (max-width: 62em) {
  @supports (height: clamp( 7.5625rem , -1.2232142857rem  +  18.3035714286vw , 10.125rem )) {
    .main-article__image-box {
      height: clamp( 7.5625rem , -1.2232142857rem  +  18.3035714286vw , 10.125rem );
    }
  }
  @supports not (height: clamp( 7.5625rem , -1.2232142857rem  +  18.3035714286vw , 10.125rem )) {
    .main-article__image-box {
      height: calc(7.5625rem + 2.5625 * (100vw - 48rem) / 14);
    }
  }
}
@media (min-width: 20em) and (max-width: 48em) {
  @supports (height: clamp( 12.375rem , 2.3303571429rem  +  50.2232142857vw , 26.4375rem )) {
    .main-article__image-box {
      height: clamp( 12.375rem , 2.3303571429rem  +  50.2232142857vw , 26.4375rem );
    }
  }
  @supports not (height: clamp( 12.375rem , 2.3303571429rem  +  50.2232142857vw , 26.4375rem )) {
    .main-article__image-box {
      height: calc(12.375rem + 14.0625 * (100vw - 20rem) / 28);
    }
  }
}
@media (max-width: 20em) {
  .main-article__image-box {
    height: 12.375rem;
  }
}
@media (max-width: 48em) {
  .main-article__image-box {
    margin-bottom: 32px;
  }
}
.main-article__image-box .main-article__image {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.main-article__timestamps {
  align-items: baseline;
}
@media (max-width: 48em) {
  .main-article__timestamps {
    padding: 0 25px;
  }
}
@media (max-width: 36em) {
  .main-article__timestamps {
    padding: 0 15px;
  }
}
@media (min-width: 48.12375em) {
  .main-article__timestamps {
    min-height: 36px;
  }
}
.main-article__header {
  width: 100%;
}
@media (max-width: 48em) {
  .main-article__header {
    padding: 0 25px;
  }
}
@media (max-width: 36em) {
  .main-article__header {
    padding: 0 15px;
  }
}
@media (max-width: 48em) {
  .main-article__heading {
    display: flex;
    justify-content: space-between;
    margin-bottom: 32px;
    overflow: hidden;
  }
}
.main-article__title {
  font-family: var(--title-ff);
  font-size: 1.75rem;
  line-height: 2.5rem;
  font-weight: 500;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
  overflow: initial !important;
  -webkit-line-clamp: inherit;
}
@media (min-width: 48.06125em) {
  .main-article__title {
    font-size: 1.125rem;
    line-height: 1.5rem;
    font-weight: 500;
  }
}
.main-article__identity {
  display: flex;
  margin-right: -25px;
}
@media (min-width: 48.06125em) {
  .main-article__identity {
    display: none;
  }
}
@media (max-width: 36em) {
  .main-article__identity {
    margin-right: -15px;
  }
}
.main-article__context {
  font-size: var(--bs-font-size);
  line-height: 1.625rem;
  font-weight: var(--bs-font-weight);
  display: -webkit-box;
  -webkit-line-clamp: 6;
  -webkit-box-orient: vertical;
  overflow: hidden;
  color: var(--bs-font-color);
  transition: none;
}
@media (min-width: 48.06125em) {
  .main-article__context {
    display: none;
  }
}
@media (max-width: 48em) {
  .main-article__context {
    margin-left: 64px;
    display: -webkit-box;
    -webkit-line-clamp: 5;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }
}

.latest-articles {
  display: flex;
  justify-content: space-between;
  align-items: start;
  flex-direction: column;
  gap: 40px;
  flex: 0 0 33%;
}
.latest-articles__list {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-direction: column;
  gap: inherit;
}
@media (max-width: 48em) {
  .latest-articles__list {
    gap: 40px;
    margin-bottom: 30px;
  }
}
.latest-articles__list li {
  width: 100%;
}
.latest-articles .latest-article__card {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-direction: row;
  gap: 12px;
}
.latest-articles .latest-article__card time {
  font-family: var(--title-ff);
  font-size: 1rem;
  line-height: 1.5rem;
  font-weight: 400;
  color: var(--timestamp-color);
  flex: 41px;
  min-width: 41px;
}
.latest-articles .latest-article__card time.search-page-time-format {
  display: none;
}
.latest-articles .latest-article__card .latest-article__timestamps {
  flex: 41px;
  min-width: 41px;
}
.latest-articles .latest-article__heading {
  width: 100%;
}
.latest-articles .latest-article__heading .tags--latest-article {
  position: static;
}
.latest-articles .latest-article[data-tag=true] .latest-article__heading .tags {
  display: inline-flex;
  gap: 16px;
  margin-right: 8px;
}
.latest-articles .latest-article__title {
  font-family: var(--title-ff);
  display: -webkit-box;
  -webkit-line-clamp: 6;
  -webkit-box-orient: vertical;
  overflow: hidden;
  font-weight: 400;
}
@media (min-width: 80em) {
  .latest-articles .latest-article__title {
    font-size: 1.125rem;
  }
}
@media (min-width: 20em) and (max-width: 80em) {
  @supports (font-size: clamp( 1rem , 0.9583333333rem  +  0.2083333333vw , 1.125rem )) {
    .latest-articles .latest-article__title {
      font-size: clamp( 1rem , 0.9583333333rem  +  0.2083333333vw , 1.125rem );
    }
  }
  @supports not (font-size: clamp( 1rem , 0.9583333333rem  +  0.2083333333vw , 1.125rem )) {
    .latest-articles .latest-article__title {
      font-size: calc(1rem + 0.125 * (100vw - 20rem) / 60);
    }
  }
}
@media (max-width: 20em) {
  .latest-articles .latest-article__title {
    font-size: 1rem;
  }
}
@media (min-width: 80em) {
  .latest-articles .latest-article__title {
    line-height: 1.625rem;
  }
}
@media (min-width: 20em) and (max-width: 80em) {
  @supports (line-height: clamp( 1.5rem , 1.4583333333rem  +  0.2083333333vw , 1.625rem )) {
    .latest-articles .latest-article__title {
      line-height: clamp( 1.5rem , 1.4583333333rem  +  0.2083333333vw , 1.625rem );
    }
  }
  @supports not (line-height: clamp( 1.5rem , 1.4583333333rem  +  0.2083333333vw , 1.625rem )) {
    .latest-articles .latest-article__title {
      line-height: calc(1.5rem + 0.125 * (100vw - 20rem) / 60);
    }
  }
}
@media (max-width: 20em) {
  .latest-articles .latest-article__title {
    line-height: 1.5rem;
  }
}
.latest-articles .latest-article__title[data-important=true] {
  font-weight: 600;
}
.latest-articles__date-divider {
  width: 100%;
  display: block;
  font-family: var(--title-ff);
  font-size: 1.125rem;
  line-height: 120%;
  font-weight: var(--bs-font-weight);
  text-align: center;
  color: var(--bs-font-color);
}

.tags {
  display: inline-flex;
  gap: 12px;
  margin-left: 10px;
}
.tags .tag {
  display: inline-block;
  padding: 1px 4px 0;
  border-radius: 2px;
  font-size: 0.75rem;
  line-height: 1.25rem;
  font-weight: 500;
  text-transform: uppercase;
  text-align: center;
  color: var(--white-color);
}
.tags .tag[data-tag=gray] {
  background-color: var(--tag-gray-color);
}
.tags .tag[data-tag=promo] {
  background-color: var(--tag-promo-color);
}
.tags .tag[data-tag=special] {
  background-color: var(--tag-special-color);
}
.tags .tag[data-tag=yellow] {
  min-width: 40px;
  background-color: var(--tag-yellow-color);
}
.tags .tag[data-tag=exclusive] {
  background-color: var(--tag-exclusive-color);
}
.tags .tag[data-tag=partner] {
  background-color: var(--tag-partner-color);
}
.tags .tag[data-tag=blue] {
  background-color: var(--tag-blue-color);
}
.tags--with-partner-logo {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-direction: row;
  gap: 8px;
  flex-wrap: wrap;
}
.tags--with-partner-logo .tags--logo-side {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  flex-direction: row;
  gap: 8px;
}
.tags .partner-logo {
  display: inline-block;
}
@media (min-width: 80em) {
  .tags .partner-logo img {
    height: 1.5rem;
  }
}
@media (min-width: 20em) and (max-width: 80em) {
  @supports (height: clamp( 0.875rem , 0.6666666667rem  +  1.0416666667vw , 1.5rem )) {
    .tags .partner-logo img {
      height: clamp( 0.875rem , 0.6666666667rem  +  1.0416666667vw , 1.5rem );
    }
  }
  @supports not (height: clamp( 0.875rem , 0.6666666667rem  +  1.0416666667vw , 1.5rem )) {
    .tags .partner-logo img {
      height: calc(0.875rem + 0.625 * (100vw - 20rem) / 60);
    }
  }
}
@media (max-width: 20em) {
  .tags .partner-logo img {
    height: 0.875rem;
  }
}

.post__result .tags img {
  display: none;
}
.post__result .tags .tag[data-tag=promo] {
  background-color: #000;
}
.post .tags {
  margin-left: 0;
}

.main-articles-slider__list {
  display: block;
}
@media (min-width: 48.06125em) {
  .main-articles-slider__list {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-direction: row;
    row-gap: 80px;
    column-gap: 12px;
    flex-wrap: wrap;
  }
  .main-articles-slider__list .splide__slide {
    flex-shrink: 1;
  }
  .main-articles-slider__list .splide__slide:not(:first-child) {
    width: 48%;
  }
}
@media (min-width: 62.06125em) {
  .main-articles-slider__list .splide__slide:not(:first-child) {
    width: 32%;
  }
}
@media (max-width: 48em) {
  .main-articles-slider__list {
    display: flex;
  }
}
@media (min-width: 48.06125em) {
  .main-articles-slider__list li.splide__slide:first-of-type .main-article__card {
    gap: 20px;
  }
  .main-articles-slider__list li.splide__slide:first-of-type .main-article__image-box {
    height: auto;
    max-height: 500px;
  }
}
@media (min-width: 48.06125em) and (min-width: 48em) and (max-width: 81.25em) {
  @supports (height: clamp( 15.625rem , -1.4276315789rem  +  35.5263157895vw , 27.4375rem )) {
    .main-articles-slider__list li.splide__slide:first-of-type .main-article__image-box {
      height: clamp( 15.625rem , -1.4276315789rem  +  35.5263157895vw , 27.4375rem );
    }
  }
  @supports not (height: clamp( 15.625rem , -1.4276315789rem  +  35.5263157895vw , 27.4375rem )) {
    .main-articles-slider__list li.splide__slide:first-of-type .main-article__image-box {
      height: calc(15.625rem + 11.8125 * (100vw - 48rem) / 33.25);
    }
  }
}
@media (min-width: 48.06125em) and (min-width: 20em) and (max-width: 48em) {
  @supports (height: clamp( 12.375rem , 2.3303571429rem  +  50.2232142857vw , 26.4375rem )) {
    .main-articles-slider__list li.splide__slide:first-of-type .main-article__image-box {
      height: clamp( 12.375rem , 2.3303571429rem  +  50.2232142857vw , 26.4375rem );
    }
  }
  @supports not (height: clamp( 12.375rem , 2.3303571429rem  +  50.2232142857vw , 26.4375rem )) {
    .main-articles-slider__list li.splide__slide:first-of-type .main-article__image-box {
      height: calc(12.375rem + 14.0625 * (100vw - 20rem) / 28);
    }
  }
}
@media (min-width: 48.06125em) and (max-width: 20em) {
  .main-articles-slider__list li.splide__slide:first-of-type .main-article__image-box {
    height: 12.375rem;
  }
}
@media (min-width: 48.06125em) {
  .main-articles-slider__list li.splide__slide:first-of-type .main-article__header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-direction: row;
    gap: 20px;
  }
  .main-articles-slider__list li.splide__slide:first-of-type .main-article__heading {
    flex: 1;
  }
  .main-articles-slider__list li.splide__slide:first-of-type .main-article__title {
    font-size: 2rem;
    line-height: 2.5rem;
    font-weight: 500;
    display: -webkit-box;
    -webkit-line-clamp: 6;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }
  .main-articles-slider__list li.splide__slide:first-of-type .main-article__context {
    display: block;
    flex: 1;
    font-size: var(--bs-font-size);
    line-height: 1.625rem;
    font-weight: var(--bs-font-weight);
    display: -webkit-box;
    -webkit-line-clamp: 5;
    -webkit-box-orient: vertical;
    overflow: hidden;
    color: var(--bs-font-color);
    transition: none;
  }
}
.main-articles-slider .splide__pagination {
  bottom: initial;
}
@media (min-width: 20em) and (max-width: 48em) {
  @supports (top: clamp( 13.75rem , 3.7053571429rem  +  50.2232142857vw , 27.8125rem )) {
    .main-articles-slider .splide__pagination {
      top: clamp( 13.75rem , 3.7053571429rem  +  50.2232142857vw , 27.8125rem );
    }
  }
  @supports not (top: clamp( 13.75rem , 3.7053571429rem  +  50.2232142857vw , 27.8125rem )) {
    .main-articles-slider .splide__pagination {
      top: calc(13.75rem + 14.0625 * (100vw - 20rem) / 28);
    }
  }
}
@media (max-width: 20em) {
  .main-articles-slider .splide__pagination {
    top: 13.75rem;
  }
}
.main-articles-slider .splide__pagination__page {
  width: 6px;
  height: 6px;
  margin: 11px;
  opacity: 1;
}
.main-articles-slider .splide__pagination__page.is-active {
  width: 8px;
  height: 8px;
  background-color: var(--primary-color);
  transform: scale(1);
}

@media (max-width: 48em) {
  .articles-category--page .articles-category__list.articles-category__flex {
    row-gap: 16px;
  }
}
.articles-category--page .articles-category__list .article__title {
  line-height: 24px;
  font-weight: 600;
}
@media (min-width: 80em) {
  .articles-category--page .articles-category__list .article__title {
    font-size: 1.25rem;
  }
}
@media (min-width: 20em) and (max-width: 80em) {
  @supports (font-size: clamp( 1rem , 0.9166666667rem  +  0.4166666667vw , 1.25rem )) {
    .articles-category--page .articles-category__list .article__title {
      font-size: clamp( 1rem , 0.9166666667rem  +  0.4166666667vw , 1.25rem );
    }
  }
  @supports not (font-size: clamp( 1rem , 0.9166666667rem  +  0.4166666667vw , 1.25rem )) {
    .articles-category--page .articles-category__list .article__title {
      font-size: calc(1rem + 0.25 * (100vw - 20rem) / 60);
    }
  }
}
@media (max-width: 20em) {
  .articles-category--page .articles-category__list .article__title {
    font-size: 1rem;
  }
}
@media (max-width: 48em) {
  .articles-category--page.page-rubriku .pagination {
    display: block;
  }
}
@media (min-width: 48.06125em) {
  .articles-category--page .button--primary {
    display: none;
  }
  .articles-category--page .articles-category__first-article {
    margin-bottom: 40px;
  }
  .articles-category--page .articles-category__first-article .article__card {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-direction: row-reverse;
    gap: 20px;
  }
  .articles-category--page .articles-category__first-article .article__image-box {
    display: block;
    width: 100%;
    overflow: hidden;
  }
}
@media (min-width: 48.06125em) and (min-width: 80em) {
  .articles-category--page .articles-category__first-article .article__image-box {
    height: 25rem;
  }
}
@media (min-width: 48.06125em) and (min-width: 48em) and (max-width: 80em) {
  @supports (height: clamp( 16.5625rem , 3.90625rem  +  26.3671875vw , 25rem )) {
    .articles-category--page .articles-category__first-article .article__image-box {
      height: clamp( 16.5625rem , 3.90625rem  +  26.3671875vw , 25rem );
    }
  }
  @supports not (height: clamp( 16.5625rem , 3.90625rem  +  26.3671875vw , 25rem )) {
    .articles-category--page .articles-category__first-article .article__image-box {
      height: calc(16.5625rem + 8.4375 * (100vw - 48rem) / 32);
    }
  }
}
@media (min-width: 48.06125em) {
  .articles-category--page .articles-category__first-article .article__image {
    height: 100%;
    width: 100%;
    object-fit: cover;
  }
  .articles-category--page .articles-category__first-article .article__description {
    flex: 0 0 49%;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-direction: column;
  }
}
@media (min-width: 48.06125em) and (min-width: 80em) {
  .articles-category--page .articles-category__first-article .article__description {
    gap: 1.75rem;
  }
}
@media (min-width: 48.06125em) and (min-width: 20em) and (max-width: 80em) {
  @supports (gap: clamp( 1.5rem , 1.4166666667rem  +  0.4166666667vw , 1.75rem )) {
    .articles-category--page .articles-category__first-article .article__description {
      gap: clamp( 1.5rem , 1.4166666667rem  +  0.4166666667vw , 1.75rem );
    }
  }
  @supports not (gap: clamp( 1.5rem , 1.4166666667rem  +  0.4166666667vw , 1.75rem )) {
    .articles-category--page .articles-category__first-article .article__description {
      gap: calc(1.5rem + 0.25 * (100vw - 20rem) / 60);
    }
  }
}
@media (min-width: 48.06125em) and (max-width: 20em) {
  .articles-category--page .articles-category__first-article .article__description {
    gap: 1.5rem;
  }
}
@media (min-width: 48.06125em) {
  .articles-category--page .articles-category__first-article .article__timestamps {
    gap: 12px;
  }
  .articles-category--page .articles-category__first-article .article__timestamps .authors-name {
    display: none;
  }
  .articles-category--page .articles-category__first-article .article__heading {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-direction: column;
    width: 100%;
  }
}
@media (min-width: 48.06125em) and (min-width: 80em) {
  .articles-category--page .articles-category__first-article .article__heading {
    gap: 1.75rem;
  }
}
@media (min-width: 48.06125em) and (min-width: 20em) and (max-width: 80em) {
  @supports (gap: clamp( 1.5rem , 1.4166666667rem  +  0.4166666667vw , 1.75rem )) {
    .articles-category--page .articles-category__first-article .article__heading {
      gap: clamp( 1.5rem , 1.4166666667rem  +  0.4166666667vw , 1.75rem );
    }
  }
  @supports not (gap: clamp( 1.5rem , 1.4166666667rem  +  0.4166666667vw , 1.75rem )) {
    .articles-category--page .articles-category__first-article .article__heading {
      gap: calc(1.5rem + 0.25 * (100vw - 20rem) / 60);
    }
  }
}
@media (min-width: 48.06125em) and (max-width: 20em) {
  .articles-category--page .articles-category__first-article .article__heading {
    gap: 1.5rem;
  }
}
@media (min-width: 48.06125em) {
  .articles-category--page .articles-category__first-article .article__title {
    font-family: var(--title-ff);
    display: -webkit-box;
    -webkit-line-clamp: 6;
    -webkit-box-orient: vertical;
    overflow: hidden;
    font-size: 1.5rem;
    line-height: 2rem;
    font-weight: 500;
  }
  .articles-category--page .articles-category__first-article .article__context {
    display: -webkit-box;
    -webkit-line-clamp: 5;
    -webkit-box-orient: vertical;
    overflow: hidden;
    font-size: var(--bs-font-size);
    line-height: var(--bs-line-height);
    font-weight: var(--bs-font-weight);
    color: var(--bs-font-color);
    transition: none;
  }
}
@media (min-width: 48.06125em) and (min-width: 80em) {
  .articles-category--page .articles-category__first-article .article__context {
    margin-left: 4.875rem;
  }
}
@media (min-width: 48.06125em) and (min-width: 20em) and (max-width: 80em) {
  @supports (margin-left: clamp( 4rem , 3.7083333333rem  +  1.4583333333vw , 4.875rem )) {
    .articles-category--page .articles-category__first-article .article__context {
      margin-left: clamp( 4rem , 3.7083333333rem  +  1.4583333333vw , 4.875rem );
    }
  }
  @supports not (margin-left: clamp( 4rem , 3.7083333333rem  +  1.4583333333vw , 4.875rem )) {
    .articles-category--page .articles-category__first-article .article__context {
      margin-left: calc(4rem + 0.875 * (100vw - 20rem) / 60);
    }
  }
}
@media (min-width: 48.06125em) and (max-width: 20em) {
  .articles-category--page .articles-category__first-article .article__context {
    margin-left: 4rem;
  }
}
.articles-category--page .populars {
  margin: 0 auto;
  padding: 40px 0;
  background-color: var(--tooltip-border-color);
}
.articles-category--page .populars__title {
  display: inline-block;
  margin-left: 16px;
  margin-bottom: 24px;
  font-family: var(--title-ff);
  font-size: 1.5rem;
  line-height: 2rem;
  font-weight: 500;
}
@media (max-width: 48em) {
  .articles-category--page .populars {
    margin: 16px auto;
  }
  .articles-category--page .populars__title {
    width: 100%;
    margin-left: 0;
    text-align: center;
  }
}
.articles-category--page .populars__list-item {
  width: 100%;
}
.articles-category--page .populars__list {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-direction: row;
  gap: 16px;
}
@media (min-width: 80em) {
  .articles-category--page .populars__list {
    gap: 5rem;
  }
}
@media (min-width: 48em) and (max-width: 80em) {
  @supports (gap: clamp( 1rem , -5rem  +  12.5vw , 5rem )) {
    .articles-category--page .populars__list {
      gap: clamp( 1rem , -5rem  +  12.5vw , 5rem );
    }
  }
  @supports not (gap: clamp( 1rem , -5rem  +  12.5vw , 5rem )) {
    .articles-category--page .populars__list {
      gap: calc(1rem + 4 * (100vw - 48rem) / 32);
    }
  }
}
@media (max-width: 48em) {
  .articles-category--page .populars__list {
    width: 100%;
    flex-direction: column;
    margin: 0 auto;
  }
}
.articles-category--page .populars__list .article__card {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  flex-direction: row;
  gap: 16px;
  padding: 16px;
}
.articles-category--page .populars__list .article__icon {
  flex: 0 0 32px;
  width: 32px;
  height: 32px;
  background-image: url(../img/icons/arrow-top-right.svg);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
}
.articles-category--page .populars__list .article__description {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  flex-direction: column;
  gap: 16px;
}
.articles-category--page .populars__list .article__title {
  display: -webkit-box;
  -webkit-line-clamp: 5;
  -webkit-box-orient: vertical;
  overflow: hidden;
  font-size: 1.125rem;
  line-height: 130%;
  font-weight: var(--bs-font-weight);
}

.articles-category__list .article {
  display: flex;
}
.articles-category__list .article__card {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-direction: column;
}
@media (min-width: 80em) {
  .articles-category__list .article__card {
    gap: 1.75rem;
  }
}
@media (min-width: 20em) and (max-width: 80em) {
  @supports (gap: clamp( 1.5rem , 1.4166666667rem  +  0.4166666667vw , 1.75rem )) {
    .articles-category__list .article__card {
      gap: clamp( 1.5rem , 1.4166666667rem  +  0.4166666667vw , 1.75rem );
    }
  }
  @supports not (gap: clamp( 1.5rem , 1.4166666667rem  +  0.4166666667vw , 1.75rem )) {
    .articles-category__list .article__card {
      gap: calc(1.5rem + 0.25 * (100vw - 20rem) / 60);
    }
  }
}
@media (max-width: 20em) {
  .articles-category__list .article__card {
    gap: 1.5rem;
  }
}
.articles-category__list .article__image-box {
  display: block;
  width: 100%;
  height: 225px;
  overflow: hidden;
}
@media (min-width: 48.0625em) and (max-width: 81.25em) {
  @supports (height: clamp( 7.625rem , -1.6978578154rem  +  19.3973634652vw , 14.0625rem )) {
    .articles-category__list .article__image-box {
      height: clamp( 7.625rem , -1.6978578154rem  +  19.3973634652vw , 14.0625rem );
    }
  }
  @supports not (height: clamp( 7.625rem , -1.6978578154rem  +  19.3973634652vw , 14.0625rem )) {
    .articles-category__list .article__image-box {
      height: calc(7.625rem + 6.4375 * (100vw - 48.0625rem) / 33.1875);
    }
  }
}
@media (min-width: 20em) and (max-width: 48em) {
  @supports (height: clamp( 11.25rem , 0.4017857143rem  +  54.2410714286vw , 26.4375rem )) {
    .articles-category__list .article__image-box {
      height: clamp( 11.25rem , 0.4017857143rem  +  54.2410714286vw , 26.4375rem );
    }
  }
  @supports not (height: clamp( 11.25rem , 0.4017857143rem  +  54.2410714286vw , 26.4375rem )) {
    .articles-category__list .article__image-box {
      height: calc(11.25rem + 15.1875 * (100vw - 20rem) / 28);
    }
  }
}
@media (max-width: 20em) {
  .articles-category__list .article__image-box {
    height: 11.25rem;
  }
}
.articles-category__list .article__image {
  height: 100%;
  width: 100%;
  object-fit: cover;
}
.articles-category__list .article__description {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-direction: column;
}
@media (min-width: 80em) {
  .articles-category__list .article__description {
    gap: 1.75rem;
  }
}
@media (min-width: 20em) and (max-width: 80em) {
  @supports (gap: clamp( 1.5rem , 1.4166666667rem  +  0.4166666667vw , 1.75rem )) {
    .articles-category__list .article__description {
      gap: clamp( 1.5rem , 1.4166666667rem  +  0.4166666667vw , 1.75rem );
    }
  }
  @supports not (gap: clamp( 1.5rem , 1.4166666667rem  +  0.4166666667vw , 1.75rem )) {
    .articles-category__list .article__description {
      gap: calc(1.5rem + 0.25 * (100vw - 20rem) / 60);
    }
  }
}
@media (max-width: 20em) {
  .articles-category__list .article__description {
    gap: 1.5rem;
  }
}
.articles-category__list .article__timestamps {
  gap: 12px;
}
.articles-category__list .article__heading {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-direction: column;
  width: 100%;
}
@media (min-width: 80em) {
  .articles-category__list .article__heading {
    gap: 1.75rem;
  }
}
@media (min-width: 20em) and (max-width: 80em) {
  @supports (gap: clamp( 1.5rem , 1.4166666667rem  +  0.4166666667vw , 1.75rem )) {
    .articles-category__list .article__heading {
      gap: clamp( 1.5rem , 1.4166666667rem  +  0.4166666667vw , 1.75rem );
    }
  }
  @supports not (gap: clamp( 1.5rem , 1.4166666667rem  +  0.4166666667vw , 1.75rem )) {
    .articles-category__list .article__heading {
      gap: calc(1.5rem + 0.25 * (100vw - 20rem) / 60);
    }
  }
}
@media (max-width: 20em) {
  .articles-category__list .article__heading {
    gap: 1.5rem;
  }
}
.articles-category__list .article__title {
  font-family: var(--title-ff);
  display: -webkit-box;
  -webkit-line-clamp: 6;
  -webkit-box-orient: vertical;
  overflow: hidden;
  font-size: 1.5rem;
  line-height: 2rem;
  font-weight: 500;
}
.articles-category__list .article__context {
  display: -webkit-box;
  -webkit-line-clamp: 5;
  -webkit-box-orient: vertical;
  overflow: hidden;
  font-size: var(--bs-font-size);
  line-height: var(--bs-line-height);
  font-weight: var(--bs-font-weight);
  color: var(--bs-font-color);
  transition: none;
}
@media (min-width: 80em) {
  .articles-category__list .article__context {
    margin-left: 4.875rem;
  }
}
@media (min-width: 20em) and (max-width: 80em) {
  @supports (margin-left: clamp( 4rem , 3.7083333333rem  +  1.4583333333vw , 4.875rem )) {
    .articles-category__list .article__context {
      margin-left: clamp( 4rem , 3.7083333333rem  +  1.4583333333vw , 4.875rem );
    }
  }
  @supports not (margin-left: clamp( 4rem , 3.7083333333rem  +  1.4583333333vw , 4.875rem )) {
    .articles-category__list .article__context {
      margin-left: calc(4rem + 0.875 * (100vw - 20rem) / 60);
    }
  }
}
@media (max-width: 20em) {
  .articles-category__list .article__context {
    margin-left: 4rem;
  }
}
.articles-category__list.articles-category__flex {
  display: flex;
  justify-content: space-evenly;
  align-items: normal;
  flex-direction: row;
  flex-wrap: wrap;
  row-gap: 40px;
  column-gap: 14px;
  margin-bottom: 56px;
}
.articles-category__list.articles-category__flex .banner-container {
  flex: 0 0 100%;
  margin: 24px 0;
}
.articles-category__list.articles-category__flex .banner-container .banner-secondary {
  display: none;
}
@media (max-width: 48em) {
  .articles-category__list.articles-category__flex .banner-container .banner-secondary {
    display: flex;
  }
}
.articles-category__list.articles-category__flex .articles-category__flex-2-3__item {
  flex: 0 0 32%;
}
@media (min-width: 48.0625em) and (max-width: 62em) {
  @supports (height: clamp( 7.875rem , 0.1160313901rem  +  16.1434977578vw , 10.125rem )) {
    .articles-category__list.articles-category__flex .articles-category__flex-2-3__item .article__image-container {
      height: clamp( 7.875rem , 0.1160313901rem  +  16.1434977578vw , 10.125rem );
    }
  }
  @supports not (height: clamp( 7.875rem , 0.1160313901rem  +  16.1434977578vw , 10.125rem )) {
    .articles-category__list.articles-category__flex .articles-category__flex-2-3__item .article__image-container {
      height: calc(7.875rem + 2.25 * (100vw - 48.0625rem) / 13.9375);
    }
  }
}
.articles-category__list.articles-category__flex .articles-category__flex-2-3__item:first-of-type, .articles-category__list.articles-category__flex .articles-category__flex-2-3__item:nth-of-type(2) {
  flex: 0 0 49%;
}
@media (min-width: 80em) {
  .articles-category__list.articles-category__flex .articles-category__flex-2-3__item:first-of-type .article__image-container, .articles-category__list.articles-category__flex .articles-category__flex-2-3__item:nth-of-type(2) .article__image-container {
    height: 21.375rem;
  }
}
@media (min-width: 81.3125em) and (max-width: 80em) {
  @supports (height: clamp( 21.375rem , 21.375rem  +  0vw , 21.375rem )) {
    .articles-category__list.articles-category__flex .articles-category__flex-2-3__item:first-of-type .article__image-container, .articles-category__list.articles-category__flex .articles-category__flex-2-3__item:nth-of-type(2) .article__image-container {
      height: clamp( 21.375rem , 21.375rem  +  0vw , 21.375rem );
    }
  }
  @supports not (height: clamp( 21.375rem , 21.375rem  +  0vw , 21.375rem )) {
    .articles-category__list.articles-category__flex .articles-category__flex-2-3__item:first-of-type .article__image-container, .articles-category__list.articles-category__flex .articles-category__flex-2-3__item:nth-of-type(2) .article__image-container {
      height: calc(21.375rem + 0 * (100vw - 81.3125rem) / -1.3125);
    }
  }
}
@media (min-width: 62.0625em) and (max-width: 81.25em) {
  @supports (height: clamp( 15.75rem , -2.444218241rem  +  29.3159609121vw , 21.375rem )) {
    .articles-category__list.articles-category__flex .articles-category__flex-2-3__item:first-of-type .article__image-container, .articles-category__list.articles-category__flex .articles-category__flex-2-3__item:nth-of-type(2) .article__image-container {
      height: clamp( 15.75rem , -2.444218241rem  +  29.3159609121vw , 21.375rem );
    }
  }
  @supports not (height: clamp( 15.75rem , -2.444218241rem  +  29.3159609121vw , 21.375rem )) {
    .articles-category__list.articles-category__flex .articles-category__flex-2-3__item:first-of-type .article__image-container, .articles-category__list.articles-category__flex .articles-category__flex-2-3__item:nth-of-type(2) .article__image-container {
      height: calc(15.75rem + 5.625 * (100vw - 62.0625rem) / 19.1875);
    }
  }
}
@media (min-width: 48.0625em) and (max-width: 62em) {
  @supports (height: clamp( 11.8125rem , -1.7656950673rem  +  28.2511210762vw , 15.75rem )) {
    .articles-category__list.articles-category__flex .articles-category__flex-2-3__item:first-of-type .article__image-container, .articles-category__list.articles-category__flex .articles-category__flex-2-3__item:nth-of-type(2) .article__image-container {
      height: clamp( 11.8125rem , -1.7656950673rem  +  28.2511210762vw , 15.75rem );
    }
  }
  @supports not (height: clamp( 11.8125rem , -1.7656950673rem  +  28.2511210762vw , 15.75rem )) {
    .articles-category__list.articles-category__flex .articles-category__flex-2-3__item:first-of-type .article__image-container, .articles-category__list.articles-category__flex .articles-category__flex-2-3__item:nth-of-type(2) .article__image-container {
      height: calc(11.8125rem + 3.9375 * (100vw - 48.0625rem) / 13.9375);
    }
  }
}
.articles-category__list.articles-category__flex .articles-category__flex-2-6-2__item {
  flex: 0 0 32%;
}
@media (min-width: 48.0625em) and (max-width: 62em) {
  @supports (height: clamp( 7.875rem , 0.1160313901rem  +  16.1434977578vw , 10.125rem )) {
    .articles-category__list.articles-category__flex .articles-category__flex-2-6-2__item .article__image-container {
      height: clamp( 7.875rem , 0.1160313901rem  +  16.1434977578vw , 10.125rem );
    }
  }
  @supports not (height: clamp( 7.875rem , 0.1160313901rem  +  16.1434977578vw , 10.125rem )) {
    .articles-category__list.articles-category__flex .articles-category__flex-2-6-2__item .article__image-container {
      height: calc(7.875rem + 2.25 * (100vw - 48.0625rem) / 13.9375);
    }
  }
}
.articles-category__list.articles-category__flex .articles-category__flex-2-6-2__item:first-of-type, .articles-category__list.articles-category__flex .articles-category__flex-2-6-2__item:nth-of-type(2), .articles-category__list.articles-category__flex .articles-category__flex-2-6-2__item:nth-of-type(9), .articles-category__list.articles-category__flex .articles-category__flex-2-6-2__item:nth-of-type(10) {
  flex: 0 0 49%;
}
@media (min-width: 80em) {
  .articles-category__list.articles-category__flex .articles-category__flex-2-6-2__item:first-of-type .article__image-container, .articles-category__list.articles-category__flex .articles-category__flex-2-6-2__item:nth-of-type(2) .article__image-container, .articles-category__list.articles-category__flex .articles-category__flex-2-6-2__item:nth-of-type(9) .article__image-container, .articles-category__list.articles-category__flex .articles-category__flex-2-6-2__item:nth-of-type(10) .article__image-container {
    height: 21.375rem;
  }
}
@media (min-width: 81.3125em) and (max-width: 80em) {
  @supports (height: clamp( 21.375rem , 21.375rem  +  0vw , 21.375rem )) {
    .articles-category__list.articles-category__flex .articles-category__flex-2-6-2__item:first-of-type .article__image-container, .articles-category__list.articles-category__flex .articles-category__flex-2-6-2__item:nth-of-type(2) .article__image-container, .articles-category__list.articles-category__flex .articles-category__flex-2-6-2__item:nth-of-type(9) .article__image-container, .articles-category__list.articles-category__flex .articles-category__flex-2-6-2__item:nth-of-type(10) .article__image-container {
      height: clamp( 21.375rem , 21.375rem  +  0vw , 21.375rem );
    }
  }
  @supports not (height: clamp( 21.375rem , 21.375rem  +  0vw , 21.375rem )) {
    .articles-category__list.articles-category__flex .articles-category__flex-2-6-2__item:first-of-type .article__image-container, .articles-category__list.articles-category__flex .articles-category__flex-2-6-2__item:nth-of-type(2) .article__image-container, .articles-category__list.articles-category__flex .articles-category__flex-2-6-2__item:nth-of-type(9) .article__image-container, .articles-category__list.articles-category__flex .articles-category__flex-2-6-2__item:nth-of-type(10) .article__image-container {
      height: calc(21.375rem + 0 * (100vw - 81.3125rem) / -1.3125);
    }
  }
}
@media (min-width: 62.0625em) and (max-width: 81.25em) {
  @supports (height: clamp( 15.75rem , -2.444218241rem  +  29.3159609121vw , 21.375rem )) {
    .articles-category__list.articles-category__flex .articles-category__flex-2-6-2__item:first-of-type .article__image-container, .articles-category__list.articles-category__flex .articles-category__flex-2-6-2__item:nth-of-type(2) .article__image-container, .articles-category__list.articles-category__flex .articles-category__flex-2-6-2__item:nth-of-type(9) .article__image-container, .articles-category__list.articles-category__flex .articles-category__flex-2-6-2__item:nth-of-type(10) .article__image-container {
      height: clamp( 15.75rem , -2.444218241rem  +  29.3159609121vw , 21.375rem );
    }
  }
  @supports not (height: clamp( 15.75rem , -2.444218241rem  +  29.3159609121vw , 21.375rem )) {
    .articles-category__list.articles-category__flex .articles-category__flex-2-6-2__item:first-of-type .article__image-container, .articles-category__list.articles-category__flex .articles-category__flex-2-6-2__item:nth-of-type(2) .article__image-container, .articles-category__list.articles-category__flex .articles-category__flex-2-6-2__item:nth-of-type(9) .article__image-container, .articles-category__list.articles-category__flex .articles-category__flex-2-6-2__item:nth-of-type(10) .article__image-container {
      height: calc(15.75rem + 5.625 * (100vw - 62.0625rem) / 19.1875);
    }
  }
}
@media (min-width: 48.0625em) and (max-width: 62em) {
  @supports (height: clamp( 11.8125rem , -1.7656950673rem  +  28.2511210762vw , 15.75rem )) {
    .articles-category__list.articles-category__flex .articles-category__flex-2-6-2__item:first-of-type .article__image-container, .articles-category__list.articles-category__flex .articles-category__flex-2-6-2__item:nth-of-type(2) .article__image-container, .articles-category__list.articles-category__flex .articles-category__flex-2-6-2__item:nth-of-type(9) .article__image-container, .articles-category__list.articles-category__flex .articles-category__flex-2-6-2__item:nth-of-type(10) .article__image-container {
      height: clamp( 11.8125rem , -1.7656950673rem  +  28.2511210762vw , 15.75rem );
    }
  }
  @supports not (height: clamp( 11.8125rem , -1.7656950673rem  +  28.2511210762vw , 15.75rem )) {
    .articles-category__list.articles-category__flex .articles-category__flex-2-6-2__item:first-of-type .article__image-container, .articles-category__list.articles-category__flex .articles-category__flex-2-6-2__item:nth-of-type(2) .article__image-container, .articles-category__list.articles-category__flex .articles-category__flex-2-6-2__item:nth-of-type(9) .article__image-container, .articles-category__list.articles-category__flex .articles-category__flex-2-6-2__item:nth-of-type(10) .article__image-container {
      height: calc(11.8125rem + 3.9375 * (100vw - 48.0625rem) / 13.9375);
    }
  }
}
.articles-category__list.articles-category__flex .articles-category__flex-2-3-2__item {
  flex: 0 0 32%;
}
@media (min-width: 48.0625em) and (max-width: 62em) {
  @supports (height: clamp( 7.875rem , 0.1160313901rem  +  16.1434977578vw , 10.125rem )) {
    .articles-category__list.articles-category__flex .articles-category__flex-2-3-2__item .article__image-container {
      height: clamp( 7.875rem , 0.1160313901rem  +  16.1434977578vw , 10.125rem );
    }
  }
  @supports not (height: clamp( 7.875rem , 0.1160313901rem  +  16.1434977578vw , 10.125rem )) {
    .articles-category__list.articles-category__flex .articles-category__flex-2-3-2__item .article__image-container {
      height: calc(7.875rem + 2.25 * (100vw - 48.0625rem) / 13.9375);
    }
  }
}
.articles-category__list.articles-category__flex .articles-category__flex-2-3-2__item:first-of-type, .articles-category__list.articles-category__flex .articles-category__flex-2-3-2__item:nth-of-type(2), .articles-category__list.articles-category__flex .articles-category__flex-2-3-2__item:nth-of-type(6), .articles-category__list.articles-category__flex .articles-category__flex-2-3-2__item:nth-of-type(7) {
  flex: 0 0 49%;
}
@media (min-width: 80em) {
  .articles-category__list.articles-category__flex .articles-category__flex-2-3-2__item:first-of-type .article__image-container, .articles-category__list.articles-category__flex .articles-category__flex-2-3-2__item:nth-of-type(2) .article__image-container, .articles-category__list.articles-category__flex .articles-category__flex-2-3-2__item:nth-of-type(6) .article__image-container, .articles-category__list.articles-category__flex .articles-category__flex-2-3-2__item:nth-of-type(7) .article__image-container {
    height: 21.375rem;
  }
}
@media (min-width: 81.3125em) and (max-width: 80em) {
  @supports (height: clamp( 21.375rem , 21.375rem  +  0vw , 21.375rem )) {
    .articles-category__list.articles-category__flex .articles-category__flex-2-3-2__item:first-of-type .article__image-container, .articles-category__list.articles-category__flex .articles-category__flex-2-3-2__item:nth-of-type(2) .article__image-container, .articles-category__list.articles-category__flex .articles-category__flex-2-3-2__item:nth-of-type(6) .article__image-container, .articles-category__list.articles-category__flex .articles-category__flex-2-3-2__item:nth-of-type(7) .article__image-container {
      height: clamp( 21.375rem , 21.375rem  +  0vw , 21.375rem );
    }
  }
  @supports not (height: clamp( 21.375rem , 21.375rem  +  0vw , 21.375rem )) {
    .articles-category__list.articles-category__flex .articles-category__flex-2-3-2__item:first-of-type .article__image-container, .articles-category__list.articles-category__flex .articles-category__flex-2-3-2__item:nth-of-type(2) .article__image-container, .articles-category__list.articles-category__flex .articles-category__flex-2-3-2__item:nth-of-type(6) .article__image-container, .articles-category__list.articles-category__flex .articles-category__flex-2-3-2__item:nth-of-type(7) .article__image-container {
      height: calc(21.375rem + 0 * (100vw - 81.3125rem) / -1.3125);
    }
  }
}
@media (min-width: 62.0625em) and (max-width: 81.25em) {
  @supports (height: clamp( 15.75rem , -2.444218241rem  +  29.3159609121vw , 21.375rem )) {
    .articles-category__list.articles-category__flex .articles-category__flex-2-3-2__item:first-of-type .article__image-container, .articles-category__list.articles-category__flex .articles-category__flex-2-3-2__item:nth-of-type(2) .article__image-container, .articles-category__list.articles-category__flex .articles-category__flex-2-3-2__item:nth-of-type(6) .article__image-container, .articles-category__list.articles-category__flex .articles-category__flex-2-3-2__item:nth-of-type(7) .article__image-container {
      height: clamp( 15.75rem , -2.444218241rem  +  29.3159609121vw , 21.375rem );
    }
  }
  @supports not (height: clamp( 15.75rem , -2.444218241rem  +  29.3159609121vw , 21.375rem )) {
    .articles-category__list.articles-category__flex .articles-category__flex-2-3-2__item:first-of-type .article__image-container, .articles-category__list.articles-category__flex .articles-category__flex-2-3-2__item:nth-of-type(2) .article__image-container, .articles-category__list.articles-category__flex .articles-category__flex-2-3-2__item:nth-of-type(6) .article__image-container, .articles-category__list.articles-category__flex .articles-category__flex-2-3-2__item:nth-of-type(7) .article__image-container {
      height: calc(15.75rem + 5.625 * (100vw - 62.0625rem) / 19.1875);
    }
  }
}
@media (min-width: 48.0625em) and (max-width: 62em) {
  @supports (height: clamp( 11.8125rem , -1.7656950673rem  +  28.2511210762vw , 15.75rem )) {
    .articles-category__list.articles-category__flex .articles-category__flex-2-3-2__item:first-of-type .article__image-container, .articles-category__list.articles-category__flex .articles-category__flex-2-3-2__item:nth-of-type(2) .article__image-container, .articles-category__list.articles-category__flex .articles-category__flex-2-3-2__item:nth-of-type(6) .article__image-container, .articles-category__list.articles-category__flex .articles-category__flex-2-3-2__item:nth-of-type(7) .article__image-container {
      height: clamp( 11.8125rem , -1.7656950673rem  +  28.2511210762vw , 15.75rem );
    }
  }
  @supports not (height: clamp( 11.8125rem , -1.7656950673rem  +  28.2511210762vw , 15.75rem )) {
    .articles-category__list.articles-category__flex .articles-category__flex-2-3-2__item:first-of-type .article__image-container, .articles-category__list.articles-category__flex .articles-category__flex-2-3-2__item:nth-of-type(2) .article__image-container, .articles-category__list.articles-category__flex .articles-category__flex-2-3-2__item:nth-of-type(6) .article__image-container, .articles-category__list.articles-category__flex .articles-category__flex-2-3-2__item:nth-of-type(7) .article__image-container {
      height: calc(11.8125rem + 3.9375 * (100vw - 48.0625rem) / 13.9375);
    }
  }
}
.articles-category__list.articles-category__flex .articles-category__flex--2-4 {
  flex: 0 0 49%;
}
.articles-category__list.articles-category__flex .articles-category__flex--2-4 .article__card {
  flex-direction: row;
}
@media (max-width: 70em) {
  .articles-category__list.articles-category__flex .articles-category__flex--2-4 .article__card {
    flex-direction: column;
  }
}
@media (min-width: 80em) {
  .articles-category__list.articles-category__flex .articles-category__flex--2-4 .article__card .article__image-container {
    height: 10.6875rem;
  }
}
@media (min-width: 81.3125em) and (max-width: 80em) {
  @supports (height: clamp( 10.6875rem , 10.6875rem  +  0vw , 10.6875rem )) {
    .articles-category__list.articles-category__flex .articles-category__flex--2-4 .article__card .article__image-container {
      height: clamp( 10.6875rem , 10.6875rem  +  0vw , 10.6875rem );
    }
  }
  @supports not (height: clamp( 10.6875rem , 10.6875rem  +  0vw , 10.6875rem )) {
    .articles-category__list.articles-category__flex .articles-category__flex--2-4 .article__card .article__image-container {
      height: calc(10.6875rem + 0 * (100vw - 81.3125rem) / -1.3125);
    }
  }
}
@media (min-width: 70.0625em) and (max-width: 81.25em) {
  @supports (height: clamp( 9.5625rem , 2.5171089385rem  +  10.0558659218vw , 10.6875rem )) {
    .articles-category__list.articles-category__flex .articles-category__flex--2-4 .article__card .article__image-container {
      height: clamp( 9.5625rem , 2.5171089385rem  +  10.0558659218vw , 10.6875rem );
    }
  }
  @supports not (height: clamp( 9.5625rem , 2.5171089385rem  +  10.0558659218vw , 10.6875rem )) {
    .articles-category__list.articles-category__flex .articles-category__flex--2-4 .article__card .article__image-container {
      height: calc(9.5625rem + 1.125 * (100vw - 70.0625rem) / 11.1875);
    }
  }
}
@media (min-width: 62.0625em) and (max-width: 70em) {
  @supports (height: clamp( 15.75rem , -1.842519685rem  +  28.3464566929vw , 18rem )) {
    .articles-category__list.articles-category__flex .articles-category__flex--2-4 .article__card .article__image-container {
      height: clamp( 15.75rem , -1.842519685rem  +  28.3464566929vw , 18rem );
    }
  }
  @supports not (height: clamp( 15.75rem , -1.842519685rem  +  28.3464566929vw , 18rem )) {
    .articles-category__list.articles-category__flex .articles-category__flex--2-4 .article__card .article__image-container {
      height: calc(15.75rem + 2.25 * (100vw - 62.0625rem) / 7.9375);
    }
  }
}
.articles-category__list.articles-category__flex .articles-category__flex--2-4:first-of-type .article__card, .articles-category__list.articles-category__flex .articles-category__flex--2-4:nth-of-type(2) .article__card {
  flex-direction: column;
}
@media (min-width: 80em) {
  .articles-category__list.articles-category__flex .articles-category__flex--2-4:first-of-type .article__card .article__image-container, .articles-category__list.articles-category__flex .articles-category__flex--2-4:nth-of-type(2) .article__card .article__image-container {
    height: 21.375rem;
  }
}
@media (min-width: 81.3125em) and (max-width: 80em) {
  @supports (height: clamp( 21.375rem , 21.375rem  +  0vw , 21.375rem )) {
    .articles-category__list.articles-category__flex .articles-category__flex--2-4:first-of-type .article__card .article__image-container, .articles-category__list.articles-category__flex .articles-category__flex--2-4:nth-of-type(2) .article__card .article__image-container {
      height: clamp( 21.375rem , 21.375rem  +  0vw , 21.375rem );
    }
  }
  @supports not (height: clamp( 21.375rem , 21.375rem  +  0vw , 21.375rem )) {
    .articles-category__list.articles-category__flex .articles-category__flex--2-4:first-of-type .article__card .article__image-container, .articles-category__list.articles-category__flex .articles-category__flex--2-4:nth-of-type(2) .article__card .article__image-container {
      height: calc(21.375rem + 0 * (100vw - 81.3125rem) / -1.3125);
    }
  }
}
@media (min-width: 70.0625em) and (max-width: 81.25em) {
  @supports (height: clamp( 18rem , -3.1361731844rem  +  30.1675977654vw , 21.375rem )) {
    .articles-category__list.articles-category__flex .articles-category__flex--2-4:first-of-type .article__card .article__image-container, .articles-category__list.articles-category__flex .articles-category__flex--2-4:nth-of-type(2) .article__card .article__image-container {
      height: clamp( 18rem , -3.1361731844rem  +  30.1675977654vw , 21.375rem );
    }
  }
  @supports not (height: clamp( 18rem , -3.1361731844rem  +  30.1675977654vw , 21.375rem )) {
    .articles-category__list.articles-category__flex .articles-category__flex--2-4:first-of-type .article__card .article__image-container, .articles-category__list.articles-category__flex .articles-category__flex--2-4:nth-of-type(2) .article__card .article__image-container {
      height: calc(18rem + 3.375 * (100vw - 70.0625rem) / 11.1875);
    }
  }
}
.articles-category__list.articles-category__flex .articles-category__flex--2-row-articles {
  flex: 0 0 49%;
}
.articles-category__list.articles-category__flex .articles-category__flex--2-row-articles .article__card {
  flex-direction: row;
}
@media (max-width: 70em) {
  .articles-category__list.articles-category__flex .articles-category__flex--2-row-articles .article__card {
    flex-direction: column;
  }
}
@media (min-width: 80em) {
  .articles-category__list.articles-category__flex .articles-category__flex--2-row-articles .article__card .article__image-container {
    height: 10.6875rem;
  }
}
@media (min-width: 81.3125em) and (max-width: 80em) {
  @supports (height: clamp( 10.6875rem , 10.6875rem  +  0vw , 10.6875rem )) {
    .articles-category__list.articles-category__flex .articles-category__flex--2-row-articles .article__card .article__image-container {
      height: clamp( 10.6875rem , 10.6875rem  +  0vw , 10.6875rem );
    }
  }
  @supports not (height: clamp( 10.6875rem , 10.6875rem  +  0vw , 10.6875rem )) {
    .articles-category__list.articles-category__flex .articles-category__flex--2-row-articles .article__card .article__image-container {
      height: calc(10.6875rem + 0 * (100vw - 81.3125rem) / -1.3125);
    }
  }
}
@media (min-width: 70.0625em) and (max-width: 81.25em) {
  @supports (height: clamp( 9.5625rem , 2.5171089385rem  +  10.0558659218vw , 10.6875rem )) {
    .articles-category__list.articles-category__flex .articles-category__flex--2-row-articles .article__card .article__image-container {
      height: clamp( 9.5625rem , 2.5171089385rem  +  10.0558659218vw , 10.6875rem );
    }
  }
  @supports not (height: clamp( 9.5625rem , 2.5171089385rem  +  10.0558659218vw , 10.6875rem )) {
    .articles-category__list.articles-category__flex .articles-category__flex--2-row-articles .article__card .article__image-container {
      height: calc(9.5625rem + 1.125 * (100vw - 70.0625rem) / 11.1875);
    }
  }
}
@media (min-width: 62.0625em) and (max-width: 70em) {
  @supports (height: clamp( 15.75rem , -1.842519685rem  +  28.3464566929vw , 18rem )) {
    .articles-category__list.articles-category__flex .articles-category__flex--2-row-articles .article__card .article__image-container {
      height: clamp( 15.75rem , -1.842519685rem  +  28.3464566929vw , 18rem );
    }
  }
  @supports not (height: clamp( 15.75rem , -1.842519685rem  +  28.3464566929vw , 18rem )) {
    .articles-category__list.articles-category__flex .articles-category__flex--2-row-articles .article__card .article__image-container {
      height: calc(15.75rem + 2.25 * (100vw - 62.0625rem) / 7.9375);
    }
  }
}
@media (max-width: 48em) {
  .articles-category__list.articles-category__flex {
    flex-direction: column;
  }
  .articles-category__list.articles-category__flex .articles-category__flex-2-3__item, .articles-category__list.articles-category__flex .articles-category__flex-2-6-2__item {
    flex: 0 0 100%;
  }
}
.articles-category__list.articles-category__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: auto;
  grid-auto-flow: dense;
  gap: 24px;
}
.articles-category__list.articles-category__grid .populars {
  grid-column: 1/4;
}
@media (max-width: 48em) {
  .articles-category__list.articles-category__grid:not(.splide-transform) {
    grid-template-columns: repeat(1, 1fr);
  }
  .articles-category__list.articles-category__grid .populars {
    grid-column: 1/2;
  }
}

.articles-category-main .articles-category__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-flow: dense;
  column-gap: 20px;
  row-gap: 56px;
  margin-bottom: 56px;
}
@media (min-width: 36.06125em) {
  .articles-category-main .articles-category__grid {
    grid-auto-rows: 1fr;
  }
}
@media (max-width: 62em) {
  .articles-category-main .articles-category__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 36em) {
  .articles-category-main .articles-category__grid {
    grid-template-columns: repeat(1, 1fr);
    margin-bottom: 0;
  }
}
@media (min-width: 62em) and (max-width: 81.25em) {
  @supports (height: clamp( 10.125rem , -2.5568181818rem  +  20.4545454545vw , 14.0625rem )) {
    .articles-category-main .articles-category__grid .article__image-box {
      height: clamp( 10.125rem , -2.5568181818rem  +  20.4545454545vw , 14.0625rem );
    }
  }
  @supports not (height: clamp( 10.125rem , -2.5568181818rem  +  20.4545454545vw , 14.0625rem )) {
    .articles-category-main .articles-category__grid .article__image-box {
      height: calc(10.125rem + 3.9375 * (100vw - 62rem) / 19.25);
    }
  }
}
@media (min-width: 48.0625em) and (max-width: 62em) {
  @supports (height: clamp( 11.8125rem , -1.7656950673rem  +  28.2511210762vw , 15.75rem )) {
    .articles-category-main .articles-category__grid .article__image-box {
      height: clamp( 11.8125rem , -1.7656950673rem  +  28.2511210762vw , 15.75rem );
    }
  }
  @supports not (height: clamp( 11.8125rem , -1.7656950673rem  +  28.2511210762vw , 15.75rem )) {
    .articles-category-main .articles-category__grid .article__image-box {
      height: calc(11.8125rem + 3.9375 * (100vw - 48.0625rem) / 13.9375);
    }
  }
}
.articles-category-main .articles-category__heading {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-direction: row;
  margin-bottom: 56px;
}
@media (max-width: 48em) {
  .articles-category-main .articles-category__heading {
    margin-bottom: 32px;
  }
}
.articles-category-main .articles-category__flex--main-page.articles-category__flex {
  justify-content: space-between;
  column-gap: 14px;
  row-gap: 24px;
}
@media (max-width: 48em) {
  .articles-category-main .articles-category__flex--main-page.articles-category__flex {
    row-gap: 56px;
  }
}
.articles-category-main .articles-category__flex--main-page.articles-category__flex.articles-category__flex--2-3 li {
  flex: 0 0 32%;
}
@media (min-width: 48.06125em) {
  .articles-category-main .articles-category__flex--main-page.articles-category__flex.articles-category__flex--2-3 li .article__context {
    display: none;
  }
}
.articles-category-main .articles-category__flex--main-page.articles-category__flex.articles-category__flex--2-3 li:first-of-type, .articles-category-main .articles-category__flex--main-page.articles-category__flex.articles-category__flex--2-3 li:nth-of-type(2) {
  flex: 0 0 49%;
}
.articles-category-main .articles-category__flex--main-page.articles-category__flex.articles-category__flex--2-3 li:first-of-type .article__card, .articles-category-main .articles-category__flex--main-page.articles-category__flex.articles-category__flex--2-3 li:nth-of-type(2) .article__card {
  flex-direction: column;
}
@media (min-width: 80em) {
  .articles-category-main .articles-category__flex--main-page.articles-category__flex.articles-category__flex--2-3 li:first-of-type .article__image-box, .articles-category-main .articles-category__flex--main-page.articles-category__flex.articles-category__flex--2-3 li:nth-of-type(2) .article__image-box {
    height: 21.375rem;
  }
}
@media (min-width: 81.25em) and (max-width: 80em) {
  @supports (height: clamp( 21.375rem , 21.375rem  +  0vw , 21.375rem )) {
    .articles-category-main .articles-category__flex--main-page.articles-category__flex.articles-category__flex--2-3 li:first-of-type .article__image-box, .articles-category-main .articles-category__flex--main-page.articles-category__flex.articles-category__flex--2-3 li:nth-of-type(2) .article__image-box {
      height: clamp( 21.375rem , 21.375rem  +  0vw , 21.375rem );
    }
  }
  @supports not (height: clamp( 21.375rem , 21.375rem  +  0vw , 21.375rem )) {
    .articles-category-main .articles-category__flex--main-page.articles-category__flex.articles-category__flex--2-3 li:first-of-type .article__image-box, .articles-category-main .articles-category__flex--main-page.articles-category__flex.articles-category__flex--2-3 li:nth-of-type(2) .article__image-box {
      height: calc(21.375rem + 0 * (100vw - 81.25rem) / -1.25);
    }
  }
}
@media (min-width: 62.0625em) and (max-width: 81.25em) {
  @supports (height: clamp( 15.75rem , -2.444218241rem  +  29.3159609121vw , 21.375rem )) {
    .articles-category-main .articles-category__flex--main-page.articles-category__flex.articles-category__flex--2-3 li:first-of-type .article__image-box, .articles-category-main .articles-category__flex--main-page.articles-category__flex.articles-category__flex--2-3 li:nth-of-type(2) .article__image-box {
      height: clamp( 15.75rem , -2.444218241rem  +  29.3159609121vw , 21.375rem );
    }
  }
  @supports not (height: clamp( 15.75rem , -2.444218241rem  +  29.3159609121vw , 21.375rem )) {
    .articles-category-main .articles-category__flex--main-page.articles-category__flex.articles-category__flex--2-3 li:first-of-type .article__image-box, .articles-category-main .articles-category__flex--main-page.articles-category__flex.articles-category__flex--2-3 li:nth-of-type(2) .article__image-box {
      height: calc(15.75rem + 5.625 * (100vw - 62.0625rem) / 19.1875);
    }
  }
}
@media (min-width: 48.0625em) and (max-width: 62em) {
  @supports (height: clamp( 11.8125rem , -1.7656950673rem  +  28.2511210762vw , 15.75rem )) {
    .articles-category-main .articles-category__flex--main-page.articles-category__flex.articles-category__flex--2-3 li:first-of-type .article__image-box, .articles-category-main .articles-category__flex--main-page.articles-category__flex.articles-category__flex--2-3 li:nth-of-type(2) .article__image-box {
      height: clamp( 11.8125rem , -1.7656950673rem  +  28.2511210762vw , 15.75rem );
    }
  }
  @supports not (height: clamp( 11.8125rem , -1.7656950673rem  +  28.2511210762vw , 15.75rem )) {
    .articles-category-main .articles-category__flex--main-page.articles-category__flex.articles-category__flex--2-3 li:first-of-type .article__image-box, .articles-category-main .articles-category__flex--main-page.articles-category__flex.articles-category__flex--2-3 li:nth-of-type(2) .article__image-box {
      height: calc(11.8125rem + 3.9375 * (100vw - 48.0625rem) / 13.9375);
    }
  }
}
@media (min-width: 80em) {
  .articles-category-main .articles-category__flex--main-page.articles-category__flex.articles-category__flex--2-3 li:nth-of-type(3) .article__image-box, .articles-category-main .articles-category__flex--main-page.articles-category__flex.articles-category__flex--2-3 li:nth-of-type(4) .article__image-box, .articles-category-main .articles-category__flex--main-page.articles-category__flex.articles-category__flex--2-3 li:nth-of-type(5) .article__image-box {
    height: 6.75rem;
  }
}
@media (min-width: 81.3125em) and (max-width: 80em) {
  @supports (height: clamp( 6.75rem , 6.75rem  +  0vw , 6.75rem )) {
    .articles-category-main .articles-category__flex--main-page.articles-category__flex.articles-category__flex--2-3 li:nth-of-type(3) .article__image-box, .articles-category-main .articles-category__flex--main-page.articles-category__flex.articles-category__flex--2-3 li:nth-of-type(4) .article__image-box, .articles-category-main .articles-category__flex--main-page.articles-category__flex.articles-category__flex--2-3 li:nth-of-type(5) .article__image-box {
      height: clamp( 6.75rem , 6.75rem  +  0vw , 6.75rem );
    }
  }
  @supports not (height: clamp( 6.75rem , 6.75rem  +  0vw , 6.75rem )) {
    .articles-category-main .articles-category__flex--main-page.articles-category__flex.articles-category__flex--2-3 li:nth-of-type(3) .article__image-box, .articles-category-main .articles-category__flex--main-page.articles-category__flex.articles-category__flex--2-3 li:nth-of-type(4) .article__image-box, .articles-category-main .articles-category__flex--main-page.articles-category__flex.articles-category__flex--2-3 li:nth-of-type(5) .article__image-box {
      height: calc(6.75rem + 0 * (100vw - 81.3125rem) / -1.3125);
    }
  }
}
@media (min-width: 62.0625em) and (max-width: 81.25em) {
  @supports (height: clamp( 10.125rem , -2.6109527687rem  +  20.5211726384vw , 14.0625rem )) {
    .articles-category-main .articles-category__flex--main-page.articles-category__flex.articles-category__flex--2-3 li:nth-of-type(3) .article__image-box, .articles-category-main .articles-category__flex--main-page.articles-category__flex.articles-category__flex--2-3 li:nth-of-type(4) .article__image-box, .articles-category-main .articles-category__flex--main-page.articles-category__flex.articles-category__flex--2-3 li:nth-of-type(5) .article__image-box {
      height: clamp( 10.125rem , -2.6109527687rem  +  20.5211726384vw , 14.0625rem );
    }
  }
  @supports not (height: clamp( 10.125rem , -2.6109527687rem  +  20.5211726384vw , 14.0625rem )) {
    .articles-category-main .articles-category__flex--main-page.articles-category__flex.articles-category__flex--2-3 li:nth-of-type(3) .article__image-box, .articles-category-main .articles-category__flex--main-page.articles-category__flex.articles-category__flex--2-3 li:nth-of-type(4) .article__image-box, .articles-category-main .articles-category__flex--main-page.articles-category__flex.articles-category__flex--2-3 li:nth-of-type(5) .article__image-box {
      height: calc(10.125rem + 3.9375 * (100vw - 62.0625rem) / 19.1875);
    }
  }
}
@media (min-width: 48.0625em) and (max-width: 62em) {
  @supports (height: clamp( 7.875rem , 0.1160313901rem  +  16.1434977578vw , 10.125rem )) {
    .articles-category-main .articles-category__flex--main-page.articles-category__flex.articles-category__flex--2-3 li:nth-of-type(3) .article__image-box, .articles-category-main .articles-category__flex--main-page.articles-category__flex.articles-category__flex--2-3 li:nth-of-type(4) .article__image-box, .articles-category-main .articles-category__flex--main-page.articles-category__flex.articles-category__flex--2-3 li:nth-of-type(5) .article__image-box {
      height: clamp( 7.875rem , 0.1160313901rem  +  16.1434977578vw , 10.125rem );
    }
  }
  @supports not (height: clamp( 7.875rem , 0.1160313901rem  +  16.1434977578vw , 10.125rem )) {
    .articles-category-main .articles-category__flex--main-page.articles-category__flex.articles-category__flex--2-3 li:nth-of-type(3) .article__image-box, .articles-category-main .articles-category__flex--main-page.articles-category__flex.articles-category__flex--2-3 li:nth-of-type(4) .article__image-box, .articles-category-main .articles-category__flex--main-page.articles-category__flex.articles-category__flex--2-3 li:nth-of-type(5) .article__image-box {
      height: calc(7.875rem + 2.25 * (100vw - 48.0625rem) / 13.9375);
    }
  }
}
@media (min-width: 81.31125em) {
  .articles-category-main .articles-category__flex--main-page.articles-category__flex.articles-category__flex--2-3 li:nth-of-type(3) .article__card, .articles-category-main .articles-category__flex--main-page.articles-category__flex.articles-category__flex--2-3 li:nth-of-type(4) .article__card, .articles-category-main .articles-category__flex--main-page.articles-category__flex.articles-category__flex--2-3 li:nth-of-type(5) .article__card {
    flex-direction: row;
    gap: 20px;
  }
  .articles-category-main .articles-category__flex--main-page.articles-category__flex.articles-category__flex--2-3 li:nth-of-type(3) .article__description, .articles-category-main .articles-category__flex--main-page.articles-category__flex.articles-category__flex--2-3 li:nth-of-type(3) .article__image-box, .articles-category-main .articles-category__flex--main-page.articles-category__flex.articles-category__flex--2-3 li:nth-of-type(4) .article__description, .articles-category-main .articles-category__flex--main-page.articles-category__flex.articles-category__flex--2-3 li:nth-of-type(4) .article__image-box, .articles-category-main .articles-category__flex--main-page.articles-category__flex.articles-category__flex--2-3 li:nth-of-type(5) .article__description, .articles-category-main .articles-category__flex--main-page.articles-category__flex.articles-category__flex--2-3 li:nth-of-type(5) .article__image-box {
    width: 190px;
  }
  .articles-category-main .articles-category__flex--main-page.articles-category__flex.articles-category__flex--2-3 li:nth-of-type(3) .article__description, .articles-category-main .articles-category__flex--main-page.articles-category__flex.articles-category__flex--2-3 li:nth-of-type(4) .article__description, .articles-category-main .articles-category__flex--main-page.articles-category__flex.articles-category__flex--2-3 li:nth-of-type(5) .article__description {
    gap: 8px;
  }
}
@media (min-width: 48.06125em) {
  .articles-category-main .articles-category__flex--main-page.articles-category__flex.articles-category__flex--2-3 li:nth-of-type(3) .article__title, .articles-category-main .articles-category__flex--main-page.articles-category__flex.articles-category__flex--2-3 li:nth-of-type(4) .article__title, .articles-category-main .articles-category__flex--main-page.articles-category__flex.articles-category__flex--2-3 li:nth-of-type(5) .article__title {
    font-size: var(--bs-font-size);
    line-height: 1.25rem;
    font-weight: 500;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-align: left;
  }
  .articles-category-main .articles-category__flex--main-page.articles-category__flex.articles-category__flex--2-3 li:nth-of-type(3) .article .authors-name, .articles-category-main .articles-category__flex--main-page.articles-category__flex.articles-category__flex--2-3 li:nth-of-type(4) .article .authors-name, .articles-category-main .articles-category__flex--main-page.articles-category__flex.articles-category__flex--2-3 li:nth-of-type(5) .article .authors-name {
    display: none;
  }
}
@media (max-width: 48em) {
  .articles-category-main .articles-category__heading {
    margin-bottom: 24px;
  }
}
@media (max-width: 36em) {
  .articles-category-main .articles-category__heading {
    margin-bottom: 16px;
  }
}

.pagination {
  display: block;
  margin: 80px auto;
  width: 100%;
}
@media (max-width: 48em) {
  .pagination {
    margin: 36px auto;
  }
}
.pagination__list {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row;
}
.pagination__item {
  min-width: 48px;
  margin: 0 2px;
}
.pagination__item .icon {
  width: 9px;
  height: 20px;
}
.pagination__item--disabled .pagination__link {
  pointer-events: none;
  cursor: default;
  text-decoration: none;
}
.pagination__item--disabled .pagination__link .icon {
  background-color: var(--timestamp-color);
}
.pagination__item--disabled .pagination__link {
  color: var(--inactive-color);
}
.pagination__item--active .pagination__link {
  border-color: var(--primary-color);
  color: var(--black-color);
}
@media (max-width: 30em) {
  .pagination__item--active .pagination__link {
    font-weight: 600;
    border-color: transparent;
  }
}
.pagination__item:hover:not(.pagination__item--disabled):not(.pagination__item--active) .pagination__link, .pagination__item:active:not(.pagination__item--disabled):not(.pagination__item--active) .pagination__link {
  border-color: var(--primary-hover-color);
}
.pagination__item:hover:not(.pagination__item--disabled):not(.pagination__item--active) .pagination__link .icon, .pagination__item:active:not(.pagination__item--disabled):not(.pagination__item--active) .pagination__link .icon {
  background-color: var(--primary-hover-color);
}
.pagination__link {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row;
  gap: 4px;
  color: var(--timestamp-color);
  min-width: 46px;
  padding: 14px 16px 12px;
  line-height: 140%;
  border-bottom: 1px solid transparent;
  transition: border-color var(--bs-transition);
}
.pagination__link--prev, .pagination__link--next {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.pagination__link .page-word {
  display: none;
}
.pagination__link span:not(.icon) {
  display: none;
}
@media (max-width: 30em) {
  .pagination__item {
    min-width: 20px;
  }
  .pagination__item--huge {
    display: none;
  }
  .pagination__list {
    justify-content: space-between;
    gap: 5px;
  }
  .pagination__link {
    padding: 14px 8px 12px;
    min-width: 25px;
  }
  .pagination__link .page-word {
    display: inline;
  }
  .pagination__link span:not(.icon) {
    display: inline;
  }
}

@media (max-width: 40em) {
  .search-page {
    padding: 0 15px;
  }
}
.search-page .container {
  max-width: 880px;
}
.search-page .page__header {
  margin-bottom: 40px;
}
@media (max-width: 48em) {
  .search-page .page__header {
    margin-bottom: 16px;
  }
}
.search-page--container {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  flex-direction: row;
  gap: 1rem;
  z-index: 100;
  position: relative;
}
.search-page h3 {
  font-weight: 400;
}
.search-page__result.latest-articles {
  flex: initial;
}
@media (min-width: 80em) {
  .search-page__result.latest-articles .latest-articles__list {
    gap: 3.5rem;
  }
}
@media (min-width: 20em) and (max-width: 80em) {
  @supports (gap: clamp( 2.5rem , 2.1666666667rem  +  1.6666666667vw , 3.5rem )) {
    .search-page__result.latest-articles .latest-articles__list {
      gap: clamp( 2.5rem , 2.1666666667rem  +  1.6666666667vw , 3.5rem );
    }
  }
  @supports not (gap: clamp( 2.5rem , 2.1666666667rem  +  1.6666666667vw , 3.5rem )) {
    .search-page__result.latest-articles .latest-articles__list {
      gap: calc(2.5rem + 1 * (100vw - 20rem) / 60);
    }
  }
}
@media (max-width: 20em) {
  .search-page__result.latest-articles .latest-articles__list {
    gap: 2.5rem;
  }
}
.search-page__result.latest-articles .latest-articles__list time {
  text-transform: initial;
}
.search-page__result.latest-articles .latest-article__title {
  font-weight: 400;
}
@media (min-width: 80em) {
  .search-page__result.latest-articles .latest-article__title {
    font-size: 1.125rem;
  }
}
@media (min-width: 20em) and (max-width: 80em) {
  @supports (font-size: clamp( 1rem , 0.9583333333rem  +  0.2083333333vw , 1.125rem )) {
    .search-page__result.latest-articles .latest-article__title {
      font-size: clamp( 1rem , 0.9583333333rem  +  0.2083333333vw , 1.125rem );
    }
  }
  @supports not (font-size: clamp( 1rem , 0.9583333333rem  +  0.2083333333vw , 1.125rem )) {
    .search-page__result.latest-articles .latest-article__title {
      font-size: calc(1rem + 0.125 * (100vw - 20rem) / 60);
    }
  }
}
@media (max-width: 20em) {
  .search-page__result.latest-articles .latest-article__title {
    font-size: 1rem;
  }
}
@media (min-width: 80em) {
  .search-page__result.latest-articles .latest-article__title {
    line-height: 1.625rem;
  }
}
@media (min-width: 20em) and (max-width: 80em) {
  @supports (line-height: clamp( 1.5rem , 1.4583333333rem  +  0.2083333333vw , 1.625rem )) {
    .search-page__result.latest-articles .latest-article__title {
      line-height: clamp( 1.5rem , 1.4583333333rem  +  0.2083333333vw , 1.625rem );
    }
  }
  @supports not (line-height: clamp( 1.5rem , 1.4583333333rem  +  0.2083333333vw , 1.625rem )) {
    .search-page__result.latest-articles .latest-article__title {
      line-height: calc(1.5rem + 0.125 * (100vw - 20rem) / 60);
    }
  }
}
@media (max-width: 20em) {
  .search-page__result.latest-articles .latest-article__title {
    line-height: 1.5rem;
  }
}
.search-page__result.latest-articles .latest-article__title[data-important=true] {
  font-weight: 600;
}
.search-page__result.latest-articles .latest-article__timestamps time {
  text-transform: initial;
}
@media (max-width: 48em) {
  .search-page__result.latest-articles .latest-article__timestamps time {
    font-weight: 400;
  }
}
.search-page__result.latest-articles .latest-article__timestamps time:first-of-type {
  display: none;
}
.search-page__result.latest-articles .latest-article__timestamps time.search-page-time-format {
  display: initial;
}
@media (min-width: 36.06125em) {
  .search-page__result.latest-articles .latest-article__timestamps time.search-page-time-format br {
    display: inline;
  }
}
.search-page__result .not-found {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-direction: column;
  gap: 24px;
  margin-bottom: 24px;
}
.search-page__result .not-found__suggestion {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-direction: row;
  gap: 8px;
  margin-bottom: 16px;
}
.search-page__result .not-found__suggestion__link {
  color: var(--primary-color);
}
.search-page__result .not-found__suggestion__link.text-underline {
  border-color: inherit;
}
.search-page__result .not-found__title {
  font-size: 1.5rem;
  line-height: 2rem;
  font-weight: 500;
}
@media (max-width: 48em) {
  .search-page__result .not-found {
    gap: 16px;
    margin-bottom: 16px;
  }
  .search-page__result .not-found__suggestion, .search-page__result .not-found__title {
    display: none;
  }
}
@media (max-width: 62em) {
  .search-page__result {
    width: initial;
  }
}
.search-page .latest-article__card {
  display: flex;
  gap: 20px;
  align-items: baseline;
}
.search-page .latest-article__card time {
  display: none;
}
.search-page .latest-article__card time.search-page-time-format {
  display: block;
  text-transform: lowercase;
}

.articles-search-list {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-direction: column;
  gap: 48px;
  align-items: stretch;
}
.articles-search-list > .article {
  width: 100%;
}
.articles-search-list .article__description {
  width: 100%;
}
@media (max-width: 48em) {
  .articles-search-list {
    align-items: normal;
    gap: 24px;
  }
}
.articles-search-list li {
  width: 100%;
}
.articles-search-list .banner-container {
  margin: 40px 0;
}
@media (min-width: 48.06125em) {
  .articles-search-list .banner-container {
    display: none;
  }
}
.articles-search-list .article__card {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-direction: row;
  gap: 16px;
}
.articles-search-list .article__image-box {
  min-width: 290px;
  position: relative;
}
@media (max-width: 48em) {
  .articles-search-list .article__image-box {
    min-width: initial;
    width: 100%;
  }
}
.articles-search-list .article__image--desktop {
  width: 304px;
  height: 171px;
  aspect-ratio: auto 16/9;
  object-fit: cover;
}
@media (min-width: 20em) and (max-width: 48em) {
  @supports (height: clamp( 11.25rem , 0.5357142857rem  +  53.5714285714vw , 26.25rem )) {
    .articles-search-list .article__image--desktop {
      height: clamp( 11.25rem , 0.5357142857rem  +  53.5714285714vw , 26.25rem );
    }
  }
  @supports not (height: clamp( 11.25rem , 0.5357142857rem  +  53.5714285714vw , 26.25rem )) {
    .articles-search-list .article__image--desktop {
      height: calc(11.25rem + 15 * (100vw - 20rem) / 28);
    }
  }
}
@media (max-width: 20em) {
  .articles-search-list .article__image--desktop {
    height: 11.25rem;
  }
}
.articles-search-list .article__timestamps {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-direction: row;
}
.articles-search-list .article__timestamps.flex-start {
  justify-content: flex-start;
}
.articles-search-list .article__heading {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: normal;
  flex-direction: column;
  padding: 0 16px 4px;
  gap: 8px;
}
.articles-search-list .article__title {
  font-family: var(--title-ff);
  font-size: 1.25rem;
  line-height: 130%;
  font-weight: 600;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
@media (max-width: 48em) {
  .articles-search-list .article__title {
    font-weight: 700;
  }
}
.articles-search-list .article__context {
  padding-top: 8px;
  color: var(--bs-font-color);
  transition: none;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  border-top: 1px solid var(--light-bg-color);
}
@media (max-width: 48em) {
  .articles-search-list .article__card {
    flex-direction: column;
  }
  .articles-search-list .article__image-box {
    min-width: none;
  }
  .articles-search-list .article__image--desktop {
    width: 100%;
  }
  .articles-search-list .article__heading {
    padding-bottom: 16px;
  }
}

.tags-page, .expert__result {
  padding-bottom: 30px;
}
.tags-page .articles-search-list .article__image-box, .expert__result .articles-search-list .article__image-box {
  max-width: 290px;
}
.tags-page .articles-search-list .article__image, .expert__result .articles-search-list .article__image {
  width: 100%;
}
.tags-page .articles-search-list .article__timestamps, .expert__result .articles-search-list .article__timestamps {
  padding: 0 16px;
}

.news {
  margin-top: 48px;
}
.news .container {
  max-width: 880px;
}
@media (min-width: 80em) {
  .news .page__header {
    margin-bottom: 3.625rem;
  }
}
@media (min-width: 20em) and (max-width: 80em) {
  @supports (margin-bottom: clamp( 2.5rem , 2.125rem  +  1.875vw , 3.625rem )) {
    .news .page__header {
      margin-bottom: clamp( 2.5rem , 2.125rem  +  1.875vw , 3.625rem );
    }
  }
  @supports not (margin-bottom: clamp( 2.5rem , 2.125rem  +  1.875vw , 3.625rem )) {
    .news .page__header {
      margin-bottom: calc(2.5rem + 1.125 * (100vw - 20rem) / 60);
    }
  }
}
@media (max-width: 20em) {
  .news .page__header {
    margin-bottom: 2.5rem;
  }
}
.news--container {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-direction: row;
  gap: 1rem;
}
.news__result {
  width: 100%;
}
.news__result.latest-articles {
  flex: initial;
}
@media (min-width: 80em) {
  .news__result.latest-articles .latest-articles__list {
    gap: 3.5rem;
  }
}
@media (min-width: 20em) and (max-width: 80em) {
  @supports (gap: clamp( 2.5rem , 2.1666666667rem  +  1.6666666667vw , 3.5rem )) {
    .news__result.latest-articles .latest-articles__list {
      gap: clamp( 2.5rem , 2.1666666667rem  +  1.6666666667vw , 3.5rem );
    }
  }
  @supports not (gap: clamp( 2.5rem , 2.1666666667rem  +  1.6666666667vw , 3.5rem )) {
    .news__result.latest-articles .latest-articles__list {
      gap: calc(2.5rem + 1 * (100vw - 20rem) / 60);
    }
  }
}
@media (max-width: 20em) {
  .news__result.latest-articles .latest-articles__list {
    gap: 2.5rem;
  }
}
.news__result.latest-articles .latest-article__title {
  font-weight: 400;
}
@media (min-width: 80em) {
  .news__result.latest-articles .latest-article__title {
    font-size: 1.125rem;
  }
}
@media (min-width: 20em) and (max-width: 80em) {
  @supports (font-size: clamp( 1rem , 0.9583333333rem  +  0.2083333333vw , 1.125rem )) {
    .news__result.latest-articles .latest-article__title {
      font-size: clamp( 1rem , 0.9583333333rem  +  0.2083333333vw , 1.125rem );
    }
  }
  @supports not (font-size: clamp( 1rem , 0.9583333333rem  +  0.2083333333vw , 1.125rem )) {
    .news__result.latest-articles .latest-article__title {
      font-size: calc(1rem + 0.125 * (100vw - 20rem) / 60);
    }
  }
}
@media (max-width: 20em) {
  .news__result.latest-articles .latest-article__title {
    font-size: 1rem;
  }
}
@media (min-width: 80em) {
  .news__result.latest-articles .latest-article__title {
    line-height: 1.625rem;
  }
}
@media (min-width: 20em) and (max-width: 80em) {
  @supports (line-height: clamp( 1.5rem , 1.4583333333rem  +  0.2083333333vw , 1.625rem )) {
    .news__result.latest-articles .latest-article__title {
      line-height: clamp( 1.5rem , 1.4583333333rem  +  0.2083333333vw , 1.625rem );
    }
  }
  @supports not (line-height: clamp( 1.5rem , 1.4583333333rem  +  0.2083333333vw , 1.625rem )) {
    .news__result.latest-articles .latest-article__title {
      line-height: calc(1.5rem + 0.125 * (100vw - 20rem) / 60);
    }
  }
}
@media (max-width: 20em) {
  .news__result.latest-articles .latest-article__title {
    line-height: 1.5rem;
  }
}
.news__result.latest-articles .latest-article__title[data-important=true] {
  font-weight: 600;
}
@media (max-width: 48em) {
  .news__result.latest-articles .latest-article__timestamps time {
    font-weight: 400;
  }
}
@media (max-width: 48em) {
  .news {
    margin-top: 16px;
  }
}
@media (max-width: 62em) {
  .news .default-sidebar {
    display: none;
  }
}

.tabs {
  display: flex;
  flex-direction: column;
}
.tabs__nav {
  display: flex;
  align-items: center;
  gap: 0.625rem;
}
.tabs__trigger {
  padding: 0 0 0.5rem 0;
  font-size: var(--bs-font-size);
  line-height: var(--bs-line-height);
  font-weight: var(--bs-font-weight);
  color: var(--bs-font-color);
  background-color: transparent;
  transition: 0.2s ease-in-out;
}
.tabs__trigger:not(:last-child) {
  margin-right: 24px;
}
.tabs__trigger.active {
  border-bottom: 2px solid var(--primary-color);
  border-radius: 2px;
}
.tabs__panel {
  animation: fade-up-big 0.4s forwards;
  display: none;
}
.tabs__panel.active {
  display: block;
}

.experts {
  margin-top: 48px;
  margin-bottom: 48px;
}
@media (max-width: 48em) {
  .experts {
    margin-top: 16px;
  }
}
.experts__list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: auto;
  grid-auto-flow: dense;
  column-gap: 24px;
  row-gap: 40px;
}
@media (max-width: 62em) {
  .experts__list {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 48em) {
  .experts__list {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 36em) {
  .experts__list {
    grid-template-columns: repeat(1, 1fr);
    row-gap: 16px;
  }
}
.experts--team-page {
  max-width: 872px;
  margin: 50px auto 40px;
}
.experts--team-page .experts__list {
  grid-template-columns: repeat(3, 1fr);
}
@media (max-width: 48em) {
  .experts--team-page .experts__list {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 36em) {
  .experts--team-page .experts__list {
    grid-template-columns: repeat(1, 1fr);
    row-gap: 16px;
  }
}
.experts--team-page .container:first-of-type {
  margin-bottom: 56px;
}
.experts--team-page__content p {
  margin: 24px 0;
}
.experts--team-page__content h2 {
  margin: 40px 0 24px;
  font-size: 1.5rem;
  line-height: 2rem;
  font-weight: 500;
}
.experts--team-page__content ul li {
  list-style: disc;
  margin-left: 1.5rem;
  margin-bottom: 8px;
}

@media (max-width: 36em) {
  .experts__item {
    padding-bottom: 16px;
  }
}
.experts a.experts__card {
  max-width: 296px;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-direction: column;
  margin: 0 auto;
  gap: 16px;
  background-color: var(--main-bg-color);
}
@media (max-width: 36em) {
  .experts a.experts__card {
    max-width: 100%;
  }
}
.experts a.experts__card:hover .experts__name, .experts a.experts__card:focus .experts__name, .experts a.experts__card:active .experts__name {
  color: var(--primary-hover-color);
}
.experts div.experts__card {
  max-width: 296px;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-direction: column;
  margin: 0 auto;
  gap: 16px;
  background-color: var(--main-bg-color);
}
@media (max-width: 36em) {
  .experts div.experts__card {
    max-width: 100%;
  }
}
.experts__image-box {
  width: 100%;
}
.experts__image {
  width: 100%;
  height: 338px;
  object-fit: cover;
  border-radius: 0 0 36px 36px;
}
@media (min-width: 20em) and (max-width: 36em) {
  @supports (height: clamp( 21.125rem , 19.40625rem  +  8.59375vw , 22.5rem )) {
    .experts__image {
      height: clamp( 21.125rem , 19.40625rem  +  8.59375vw , 22.5rem );
    }
  }
  @supports not (height: clamp( 21.125rem , 19.40625rem  +  8.59375vw , 22.5rem )) {
    .experts__image {
      height: calc(21.125rem + 1.375 * (100vw - 20rem) / 16);
    }
  }
}
@media (max-width: 20em) {
  .experts__image {
    height: 21.125rem;
  }
}
@media (max-width: 36em) {
  .experts__image {
    height: 100%;
    object-fit: contain;
  }
}
.experts__description {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-direction: column;
  gap: 8px;
  padding: 0 16px 12px;
}
.experts__name {
  font-family: var(--title-ff);
  font-size: 1.25rem;
  line-height: 1.75rem;
  font-weight: 500;
}
.experts__quote {
  font-size: 0.75rem;
  line-height: 120%;
  color: var(--bs-font-color);
  font-weight: 400;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
  min-height: 29px;
}

.expert .mobile-padding {
  padding: 0 15px;
}
.expert .container {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-direction: row;
  gap: 24px;
}
@media (max-width: 62em) {
  .expert .container {
    flex-direction: column;
  }
}
.expert__card {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-direction: column;
  flex-shrink: 0;
  width: 296px;
  margin-bottom: 48px;
  gap: 16px;
  background-color: var(--main-bg-color);
}
@media (max-width: 62em) {
  .expert__card {
    margin: 0 auto 24px;
  }
}
@media (max-width: 48em) {
  .expert__card {
    flex-direction: column;
    gap: 16px;
  }
}
@media (max-width: 40em) {
  .expert__card {
    width: 100%;
  }
}
.expert__card .social-media-list {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-direction: row;
  gap: 24px;
}
.expert__image-box {
  width: 100%;
}
.expert__image {
  width: 100%;
  height: 328px;
  object-fit: cover;
  border-radius: 0 0 36px 36px;
}
@media (max-width: 40em) {
  .expert__image {
    height: auto;
  }
}
.expert__description {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-direction: column;
  gap: 8px;
  padding: 0 16px 12px;
}
.expert__name {
  font-family: var(--title-ff);
  font-size: 1.25rem;
  line-height: 1.75rem;
  font-weight: 500;
}
.expert__quote {
  margin-bottom: 16px;
  font-size: 0.75rem;
  line-height: 120%;
  color: var(--bs-font-color);
  font-weight: 400;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.expert__content {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-direction: row;
  gap: 1rem;
}
@media (min-width: 36.06125em) {
  .expert__result .articles-category__list .article__card {
    flex-direction: row;
  }
  .expert__result .articles-category__list .article__image-box {
    flex: 0 0 50%;
    height: 260px;
  }
}
.expert__result .articles-category__list .article .authors-name {
  display: none;
}
@media (max-width: 62em) {
  .expert__result {
    width: initial;
  }
}

.post {
  margin-bottom: 80px;
}
@media (max-width: 48em) {
  .post {
    margin-bottom: 24px;
  }
}
.post .social-share-top {
  display: flex;
  justify-content: space-between;
  width: 100%;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}
.post .social-share-top__title {
  text-transform: uppercase;
  color: var(--primary-hover-color);
  font-weight: 400;
}
.post .social-share-top .social-media-list li {
  color: var(--primary-hover-color);
}
.post--container.container, .post .container-social-share {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-direction: row;
  gap: 16px;
  max-width: 44.375rem;
}
@media (max-width: 62em) {
  .post--container.container, .post .container-social-share {
    width: 100%;
  }
}
.post__result {
  width: 100%;
}
.post__result .prehistory {
  margin: 24px 0;
  padding: 24px 16px;
  border-top: 1px solid var(--light-bg-color);
  border-bottom: 1px solid var(--light-bg-color);
  background-color: var(--tooltip-border-color);
}
@media (max-width: 36em) {
  .post__result .prehistory {
    margin-left: -15px;
    margin-right: -15px;
  }
}
.post__result .prehistory__title {
  font-family: var(--title-ff);
  font-size: 1.75rem;
  line-height: 2rem;
  font-weight: 500;
  margin-bottom: 40px;
}
.post__result .prehistory__list-item {
  position: relative;
  width: 100%;
}
.post__result .prehistory__list-item:not(:last-child)::before {
  content: "";
  position: absolute;
  width: 51px;
  height: 15px;
  background-image: url(../img/identity-icons/hr-identity.svg);
  background-repeat: no-repeat;
  background-size: contain;
  left: 50%;
  transform: translateX(-50%);
  bottom: -36px;
}
.post__result .prehistory__list {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-direction: column;
  gap: 62px;
  margin: 0 auto;
}
.post__result .prehistory__list .article__card {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  flex-direction: row;
  gap: 16px;
}
.post__result .prehistory__list .article__icon {
  flex: 0 0 32px;
  width: 32px;
  height: 32px;
  background-image: url(../img/icons/arrow-top-right.svg);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
}
.post__result .prehistory__list .article__title {
  display: -webkit-box;
  -webkit-line-clamp: 6;
  -webkit-box-orient: vertical;
  overflow: hidden;
  font-size: var(--bs-font-size);
  line-height: var(--bs-line-height);
  font-weight: var(--bs-font-weight);
}
.post__result .social-share {
  padding: 16px 0;
}
.post__result .social-share h3 {
  margin-bottom: 24px;
  letter-spacing: 0.16px;
}
.post__result .social-share .social-media-list {
  gap: 24px;
}
.post__result .social-share .social-media-list__link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 6px;
  margin-left: -6px;
  font-size: 0;
}
.post__result .social-share .social-media-list__link .icon {
  background-color: var(--timestamp-color);
}
.post__result .social-share .social-media-list__link:hover .icon, .post__result .social-share .social-media-list__link:active .icon, .post__result .social-share .social-media-list__link:focus .icon {
  background-color: var(--primary-hover-color);
}
.post__result .post-tags {
  margin: 24px 0;
}
.post__result .post-tags strong {
  font-size: 16px;
  line-height: var(--bs-line-height);
  font-weight: 600;
  letter-spacing: 0.16px;
}
.post__result .post-tags__list {
  display: inline-flex;
  justify-content: flex-start;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 16px;
}
.post__result .post-tags__item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-direction: row;
}
.post__result .post-tags__link {
  display: inline-block;
  height: 14px;
  font-size: 0.75rem;
  line-height: 16px;
  font-weight: var(--bs-font-weight);
  color: var(--timestamp-color);
  border-bottom: 1px solid var(--timestamp-color);
  text-transform: uppercase;
}
.post__result .post-tags__link:hover, .post__result .post-tags__link:focus, .post__result .post-tags__link:active {
  color: var(--primary-hover-color);
  border-color: transparent;
}
.post__result time {
  text-transform: uppercase;
}
.post .tags {
  position: static;
  margin-bottom: 16px;
}
.post .default-sidebar {
  display: none;
}
.post__authors {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-direction: row;
  flex-wrap: wrap;
  margin-bottom: 8px;
  gap: 16px;
}
.post__authors .author__card {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-direction: row;
  gap: 8px;
}
.post__authors .author__name {
  font-weight: 400;
}
@media (min-width: 80em) {
  .post__authors .author__name {
    font-size: 1rem;
  }
}
@media (min-width: 20em) and (max-width: 80em) {
  @supports (font-size: clamp( 0.75rem , 0.6666666667rem  +  0.4166666667vw , 1rem )) {
    .post__authors .author__name {
      font-size: clamp( 0.75rem , 0.6666666667rem  +  0.4166666667vw , 1rem );
    }
  }
  @supports not (font-size: clamp( 0.75rem , 0.6666666667rem  +  0.4166666667vw , 1rem )) {
    .post__authors .author__name {
      font-size: calc(0.75rem + 0.25 * (100vw - 20rem) / 60);
    }
  }
}
@media (max-width: 20em) {
  .post__authors .author__name {
    font-size: 0.75rem;
  }
}
@media (min-width: 80em) {
  .post__authors .author__name {
    line-height: 1.5rem;
  }
}
@media (min-width: 20em) and (max-width: 80em) {
  @supports (line-height: clamp( 1rem , 0.8333333333rem  +  0.8333333333vw , 1.5rem )) {
    .post__authors .author__name {
      line-height: clamp( 1rem , 0.8333333333rem  +  0.8333333333vw , 1.5rem );
    }
  }
  @supports not (line-height: clamp( 1rem , 0.8333333333rem  +  0.8333333333vw , 1.5rem )) {
    .post__authors .author__name {
      line-height: calc(1rem + 0.5 * (100vw - 20rem) / 60);
    }
  }
}
@media (max-width: 20em) {
  .post__authors .author__name {
    line-height: 1rem;
  }
}
.post .page__header {
  margin-bottom: 16px;
}
.post .page__header .page__heading {
  line-height: 125%;
}
@media (min-width: 80em) {
  .post .page__header .page__heading {
    font-size: 2.5rem;
  }
}
@media (min-width: 20em) and (max-width: 80em) {
  @supports (font-size: clamp( 1.5rem , 1.1666666667rem  +  1.6666666667vw , 2.5rem )) {
    .post .page__header .page__heading {
      font-size: clamp( 1.5rem , 1.1666666667rem  +  1.6666666667vw , 2.5rem );
    }
  }
  @supports not (font-size: clamp( 1.5rem , 1.1666666667rem  +  1.6666666667vw , 2.5rem )) {
    .post .page__header .page__heading {
      font-size: calc(1.5rem + 1 * (100vw - 20rem) / 60);
    }
  }
}
@media (max-width: 20em) {
  .post .page__header .page__heading {
    font-size: 1.5rem;
  }
}
.post__info .info__box {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-direction: row;
  gap: 12px;
  flex-wrap: wrap;
  padding-bottom: 16px;
}
@media (max-width: 36em) {
  .post__info .info__box {
    flex-wrap: wrap-reverse;
  }
}
.post__info .info__authors {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 12px;
}
@media (max-width: 36em) {
  .post__info .info__authors .reading-time {
    display: none;
  }
}
.post__content > img {
  width: 100%;
  margin-top: 20px;
  margin-bottom: 20px;
}
@media (min-width: 56.93625em) {
  .post__content > img {
    width: 880px;
    margin-left: -100px;
  }
}
.post__content iframe {
  width: 880px;
  margin-left: -100px;
}
@media (max-width: 48em) {
  .post__content iframe {
    width: 100%;
    margin: 0;
  }
}
.post__content iframe.instagram-media {
  margin: 0 auto !important;
}
.post__content iframe.iframe-telegram {
  margin-top: 30px;
  margin-left: -100px;
}
.post__content .video-iframe {
  position: relative;
  padding-bottom: 56.25%; /* для 16:9 співвідношення: 9/16 = 0.5625 */
  height: 0;
  overflow: hidden;
  max-width: 100%;
}
.post__content .video-container {
  width: 880px;
  margin-left: -100px;
}
@media (max-width: 48em) {
  .post__content .video-container {
    width: 100%;
    margin: 0;
  }
}
.post__content .video-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
  margin-left: 0;
}
.post__content .social-container {
  width: 880px;
  margin-left: -100px;
}
@media (max-width: 48em) {
  .post__content .social-container {
    width: 100%;
    margin: 0;
  }
}
.post__content .social-container iframe {
  width: 100%;
  margin-left: 0;
}
.post__content .flourish-photo-slider {
  width: 880px;
  margin-left: -100px;
}
@media (max-width: 48em) {
  .post__content .flourish-photo-slider {
    width: 100%;
    margin: 0;
  }
}
.post__content .flourish-photo-slider iframe {
  width: 100%;
  margin-left: 0;
}
.post__content div:not(.wp-caption) picture {
  margin-top: 20px;
}
@media (min-width: 56.93625em) {
  .post__content div:not(.wp-caption) picture {
    display: block;
    width: 880px;
    margin-left: -100px;
  }
}
.post__content div:not(.wp-caption) picture img {
  width: 100%;
  height: auto;
}
.post__content div:not(.wp-caption) .tooltip__floating__content picture {
  width: 100%;
  margin-left: 0;
}
.post__content figure {
  position: relative;
  margin-bottom: 20px;
  width: 100%;
}
@media (min-width: 56.93625em) {
  .post__content figure.post-thumbnail {
    width: 880px;
    margin-left: -100px;
  }
  .post__content figure.post-thumbnail picture {
    margin: 0;
  }
  .post__content figure.post-thumbnail img {
    width: 100%;
    object-fit: contain;
    height: auto;
  }
  .post__content figure.post-thumbnail figcaption.post-thumbnail__caption {
    margin: 0;
  }
}
.post__content figure > img {
  width: 100%;
  object-fit: contain;
  height: auto;
}
@media (min-width: 56.93625em) {
  .post__content figure.wp-caption {
    width: 880px !important;
    margin-left: -100px;
  }
}
.post__content figure.wp-caption.aligncenter img {
  width: 100% !important;
  height: auto !important;
}
.post__content figure.wp-caption > picture {
  width: 100% !important;
  margin-left: 0 !important;
}
.post__content figure.wp-caption > picture img {
  width: 100% !important;
  object-fit: contain !important;
}
.post__content figure.wp-caption img {
  width: 100%;
  object-fit: cover;
}
.post__content figure.wp-caption figcaption.wp-caption-text {
  margin-left: 0;
}
@media (min-width: 56.93625em) {
  .post__content figure .picture {
    width: 880px;
    margin-left: -100px;
  }
}
.post__content figure .picture > picture {
  margin-left: 0;
}
.post__content figure .picture img {
  width: 100%;
  object-fit: cover;
}
.post__content figure figcaption {
  padding: 12px 0;
  line-height: 120%;
  font-weight: 400;
  color: var(--timestamp-color);
}
@media (min-width: 80em) {
  .post__content figure figcaption {
    font-size: 0.75rem;
  }
}
@media (min-width: 20em) and (max-width: 80em) {
  @supports (font-size: clamp( 0.625rem , 0.5833333333rem  +  0.2083333333vw , 0.75rem )) {
    .post__content figure figcaption {
      font-size: clamp( 0.625rem , 0.5833333333rem  +  0.2083333333vw , 0.75rem );
    }
  }
  @supports not (font-size: clamp( 0.625rem , 0.5833333333rem  +  0.2083333333vw , 0.75rem )) {
    .post__content figure figcaption {
      font-size: calc(0.625rem + 0.125 * (100vw - 20rem) / 60);
    }
  }
}
@media (max-width: 20em) {
  .post__content figure figcaption {
    font-size: 0.625rem;
  }
}
@media (min-width: 56.93625em) {
  .post__content figure figcaption {
    width: 880px;
    margin-left: -100px;
  }
}
.post__content figure.post__containless {
  position: relative;
}
.post__content figure.post__containless .post__containless__box {
  display: block;
  height: 60svh;
}
.post__content figure.post__containless .post__containless__box .post__containless__image {
  height: 60svh;
  position: absolute;
  border-radius: 0;
}
@media (max-width: 48em) {
  .post__content figure.post__containless .post__containless__box {
    height: 35svh;
  }
  .post__content figure.post__containless .post__containless__box .post__containless__image {
    height: 35svh;
  }
}
@media (min-width: 56.93625em) {
  .post__content figure.gallery__figure .gallery__picture {
    width: 880px !important;
    margin-left: -100px;
  }
}
.post__content .popup__content figure .picture img {
  height: auto;
}
.post__content .highlighted_section {
  padding: 24px 16px;
  border-radius: 0px 8px 8px 0;
  background-color: var(--tooltip-border-color);
  border: 1px solid var(--light-bg-color);
  border-left: 2px solid var(--primary-color);
  border-right: none;
  margin-bottom: 20px;
}
.post__content .highlighted_section__title {
  color: var(--primary-color);
  margin-bottom: 5px;
}
.post__content .gallery {
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  gap: 24px;
  margin: 20px 0;
}
.post__content .gallery figure:not(.gallery__figure) {
  width: 880px;
  margin-left: -100px;
}
.post__content .gallery figure:not(.gallery__figure) figcaption {
  margin-left: 0;
}
.post__content .gallery figure:not(.gallery__figure):last-of-type {
  margin-bottom: 0;
}
.post__content .gallery__image {
  width: 100%;
  object-fit: cover;
}
@media (max-width: 36em) {
  .post__content .gallery {
    grid-template-columns: 1fr;
  }
  .post__content .gallery__image {
    max-height: initial;
  }
}
.post__content h2 {
  font-family: var(--title-ff);
  font-size: 1.75rem;
  line-height: 2rem;
  font-weight: 500;
  margin: 24px 0;
}
.post__content p {
  margin: 24px 0;
  line-height: 24px;
}
.post__content p > img {
  width: 100%;
  object-fit: contain;
  height: auto;
}
.post__content p.read-more {
  margin: 24px 0;
  padding: 24px 16px;
  font-weight: 600;
  letter-spacing: 0.16px;
  color: var(--primary-color);
  background-color: var(--tooltip-border-color);
  border-top: 1px solid var(--light-bg-color);
  border-bottom: 1px solid var(--light-bg-color);
}
.post__content p.read-more a {
  display: block;
  width: -moz-fit-content;
  width: fit-content;
  margin-top: 16px;
  font-size: var(--bs-font-size);
  line-height: var(--bs-line-height);
  font-weight: var(--bs-font-weight);
  border: none;
}
.post__content p.read-more a:hover, .post__content p.read-more a:focus, .post__content p.read-more a:active {
  color: var(--primary-hover-color);
  text-decoration: underline;
}
.post__content a {
  border-bottom: 1px solid var(--bs-font-color);
}
.post__content a:hover, .post__content a:focus, .post__content a:active {
  border-color: transparent;
}
.post__content b {
  font-weight: 600;
}
.post__content blockquote {
  margin: 30px 0;
}
.post__content blockquote p {
  font-style: italic;
  margin: 0 0 8px 0;
}
.post__content blockquote footer {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  flex-direction: row;
  gap: 8px;
  font-size: 1rem;
  line-height: 1.5rem;
  font-weight: 600;
  letter-spacing: 0.16px;
}
.post__content ul, .post__content ol {
  padding-left: 24px;
  margin: 24px 0;
}
.post__content ul li, .post__content ol li {
  list-style: disc;
  line-height: 24px;
  margin-bottom: 4px;
}
.post__content ol li {
  list-style: decimal;
}
.post__content .tooltip__reference {
  display: inline-block;
  padding: 0 4px;
  text-decoration: none;
  font-weight: 400;
  border: 1px solid var(--light-bg-color);
  border-radius: 4px;
  cursor: pointer;
}
.post__content .tooltip__floating {
  display: none;
  margin: 0 16px;
  padding: 16px;
  max-width: 20.5rem;
  border: 1px solid var(--tooltip-border-color);
  border-radius: 0.25rem;
  position: absolute;
  top: 0;
  left: 0;
  background: var(--white-color);
  color: var(--bs-font-color);
  box-shadow: 2px 4px 4px 0px var(--main-bg-color);
  z-index: 2;
}
@media (max-width: 25em) {
  .post__content .tooltip__floating {
    max-width: 100%;
  }
}
.post__content .tooltip__floating__content {
  position: relative;
  z-index: 3;
}
.post__content .tooltip__floating__content .picture img {
  width: 100%;
  object-fit: cover;
}
.post__content .tooltip__floating__content h4 {
  font-family: var(--title-ff);
  font-size: 1.125rem;
  line-height: 1.5rem;
  font-weight: 500;
}
.post__content .tooltip__floating__content p {
  font-size: var(--bs-font-size);
  line-height: var(--bs-line-height);
  font-weight: var(--bs-font-weight);
  margin: 0;
}
.post__content .tooltip__floating__content .close-btn {
  position: absolute;
  top: -14px;
  right: -14px;
  cursor: pointer;
}
.post__content .tooltip__floating__content .close-btn svg {
  transform: scale(0.7);
  transition: box-shadow var(--bs-transition);
}
@media (max-width: 48em) {
  .post__content .wp-video-shortcode video, .post__content video.wp-video-shortcode {
    height: auto;
  }
}
.post__content__old > img {
  width: 100%;
  margin-top: 20px;
  margin-bottom: 20px;
}
@media (min-width: 56.93625em) {
  .post__content__old > img {
    width: 880px;
    margin-left: -100px;
  }
}
@media (min-width: 56.93625em) {
  .post__content__old > picture {
    display: block;
    width: 880px;
    margin-left: -100px;
  }
}
.post__content__old > picture img.sp-no-webp {
  width: 100%;
  object-fit: contain;
  height: auto;
}
.post__content__old .picture figcaption {
  margin-left: -100px;
}
.post__content__old .picture_old {
  width: 880px;
  margin-left: -100px;
}
.post__content__old .picture_old > picture {
  margin: 0 !important;
}
@media (max-width: 48em) {
  .post__content__old .picture_old {
    width: 100%;
    margin: 0;
  }
}
.post__content__old .picture_old img {
  width: 100%;
}
.post__content__old .picture_old .picture__figcaption .post-thumbnail__caption {
  margin: 0 !important;
}
.post__content__old .infogram-embed iframe {
  width: 880px !important;
  margin-left: -100px;
}
.post__content__old iframe {
  width: 880px;
  margin-left: -100px;
}
@media (max-width: 48em) {
  .post__content__old iframe {
    width: 100%;
    margin: 0;
  }
}
.post__content__old .ose-youtube iframe {
  margin-left: 0 !important;
}
.post__content__old div:not(.wp-caption) picture {
  margin-top: 20px;
}
@media (min-width: 56.93625em) {
  .post__content__old div:not(.wp-caption) picture {
    display: block;
    width: 880px;
    margin-left: -100px;
  }
}
.post__content__old div:not(.wp-caption) picture img {
  width: 100%;
  height: auto;
}
@media (min-width: 56.93625em) {
  .post__content__old div:not(.wp-caption) figure picture {
    margin-left: 0 !important;
  }
}
@media (max-width: 48em) {
  .post__content__old .ose-youtube {
    width: 100% !important;
    height: 280px !important;
  }
  .post__content__old .ose-youtube iframe {
    width: 100%;
    height: 280px;
  }
}
@media (min-width: 56.93625em) {
  .post__content__old p > picture {
    display: block;
    width: 880px;
    margin-left: -100px;
  }
}
.post__content__old p > picture img {
  width: 100%;
}
.post__content__old figure {
  position: relative;
  margin-bottom: 20px;
}
@media (max-width: 56.8125em) {
  .post__content__old figure.wp-caption {
    width: 100% !important;
  }
  .post__content__old figure.wp-caption.aligncenter img {
    width: 100% !important;
    height: auto !important;
  }
}
@media (min-width: 56.93625em) {
  .post__content__old figure {
    width: 880px !important;
    margin-left: -100px;
  }
}
.post__content__old figure > img {
  width: 100%;
  object-fit: contain;
  height: auto;
}
@media (min-width: 56.93625em) {
  .post__content__old figure.wp-caption {
    width: 880px !important;
    margin-left: -100px;
  }
}
.post__content__old figure.wp-caption > picture {
  width: 100%;
  margin-left: 0;
}
.post__content__old figure.wp-caption img {
  width: 100%;
  object-fit: cover;
}
.post__content__old figure.wp-caption figcaption.wp-caption-text {
  margin-left: 0;
}
.post__content__old figure .picture > picture {
  margin-left: 0;
}
@media (min-width: 56.93625em) {
  .post__content__old figure .picture {
    width: 880px;
    margin-left: -100px;
  }
}
.post__content__old figure .picture img {
  width: 100%;
  object-fit: cover;
}
.post__content__old figure picture > img.sp-no-webp {
  width: 100%;
  object-fit: contain;
  height: auto;
}
.post__content__old figure figcaption {
  padding: 12px 0;
  line-height: 120%;
  font-weight: 400;
  color: var(--timestamp-color);
}
@media (min-width: 80em) {
  .post__content__old figure figcaption {
    font-size: 0.75rem;
  }
}
@media (min-width: 20em) and (max-width: 80em) {
  @supports (font-size: clamp( 0.625rem , 0.5833333333rem  +  0.2083333333vw , 0.75rem )) {
    .post__content__old figure figcaption {
      font-size: clamp( 0.625rem , 0.5833333333rem  +  0.2083333333vw , 0.75rem );
    }
  }
  @supports not (font-size: clamp( 0.625rem , 0.5833333333rem  +  0.2083333333vw , 0.75rem )) {
    .post__content__old figure figcaption {
      font-size: calc(0.625rem + 0.125 * (100vw - 20rem) / 60);
    }
  }
}
@media (max-width: 20em) {
  .post__content__old figure figcaption {
    font-size: 0.625rem;
  }
}
.post__content__old figure.post__containless {
  position: relative;
}
.post__content__old figure.post__containless .post__containless__box {
  display: block;
  height: 60svh;
}
.post__content__old figure.post__containless .post__containless__box .post__containless__image {
  height: 60svh;
  position: absolute;
  border-radius: 0;
}
@media (max-width: 48em) {
  .post__content__old figure.post__containless .post__containless__box {
    height: 35svh;
  }
  .post__content__old figure.post__containless .post__containless__box .post__containless__image {
    height: 35svh;
  }
}
.post__content__old .popup__content figure .picture img {
  height: auto;
}
.post__content__old .highlighted_section {
  padding: 24px 16px;
  border-radius: 0px 8px 8px 0;
  background-color: var(--tooltip-border-color);
  border: 1px solid var(--light-bg-color);
  border-left: 2px solid var(--primary-color);
  border-right: none;
  margin-bottom: 20px;
}
.post__content__old .highlighted_section__title {
  color: var(--primary-color);
  margin-bottom: 5px;
}
.post__content__old .gallery {
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  gap: 24px;
  margin: 20px 0;
}
@media (min-width: 56.93625em) {
  .post__content__old .gallery figure:not(.gallery__figure) {
    width: 880px;
    margin-left: -100px;
  }
}
.post__content__old .gallery figure:not(.gallery__figure) figcaption {
  margin-left: 0;
}
.post__content__old .gallery figure:not(.gallery__figure):last-of-type {
  margin-bottom: 0;
}
.post__content__old .gallery__image {
  width: 100%;
  object-fit: cover;
}
@media (max-width: 36em) {
  .post__content__old .gallery {
    grid-template-columns: 1fr;
  }
  .post__content__old .gallery__image {
    max-height: initial;
  }
}
.post__content__old h2 {
  font-family: var(--title-ff);
  font-size: 1.75rem;
  line-height: 2rem;
  font-weight: 500;
  margin: 24px 0;
}
.post__content__old p {
  margin: 24px 0;
  line-height: 24px;
}
.post__content__old p > img:not(.mini) {
  object-fit: contain;
  height: auto;
  width: 100%;
}
.post__content__old p.read-more {
  margin: 24px 0;
  padding: 24px 16px;
  font-weight: 600;
  letter-spacing: 0.16px;
  color: var(--primary-color);
  background-color: var(--tooltip-border-color);
  border-top: 1px solid var(--light-bg-color);
  border-bottom: 1px solid var(--light-bg-color);
}
.post__content__old p.read-more a {
  display: block;
  width: -moz-fit-content;
  width: fit-content;
  margin-top: 16px;
  font-size: var(--bs-font-size);
  line-height: var(--bs-line-height);
  font-weight: var(--bs-font-weight);
  border: none;
}
.post__content__old p.read-more a:hover, .post__content__old p.read-more a:focus, .post__content__old p.read-more a:active {
  color: var(--primary-hover-color);
  text-decoration: underline;
}
.post__content__old a {
  border-bottom: 1px solid var(--bs-font-color);
}
.post__content__old a:hover, .post__content__old a:focus, .post__content__old a:active {
  border-color: transparent;
}
.post__content__old b {
  font-weight: 600;
}
.post__content__old blockquote {
  margin: 30px 0;
}
.post__content__old blockquote p {
  font-style: italic;
  margin: 0 0 8px 0;
}
.post__content__old blockquote footer {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  flex-direction: row;
  gap: 8px;
  font-size: 1rem;
  line-height: 1.5rem;
  font-weight: 600;
  letter-spacing: 0.16px;
}
.post__content__old ul, .post__content__old ol {
  padding-left: 24px;
  margin: 24px 0;
}
.post__content__old ul li, .post__content__old ol li {
  list-style: disc;
  line-height: 24px;
  margin-bottom: 4px;
}
.post__content__old ol li {
  list-style: decimal;
}
.post__content__old .tooltip__reference {
  display: inline-block;
  padding: 0 4px;
  text-decoration: none;
  font-weight: 400;
  border: 1px solid var(--light-bg-color);
  border-radius: 4px;
  cursor: pointer;
}
.post__content__old .tooltip__floating {
  display: none;
  margin: 0 16px;
  padding: 16px;
  max-width: 20.5rem;
  border: 1px solid var(--tooltip-border-color);
  border-radius: 0.25rem;
  position: absolute;
  top: 0;
  left: 0;
  background: var(--white-color);
  color: var(--bs-font-color);
  box-shadow: 2px 4px 4px 0px var(--main-bg-color);
  z-index: 2;
}
@media (max-width: 25em) {
  .post__content__old .tooltip__floating {
    max-width: 100%;
  }
}
.post__content__old .tooltip__floating__content {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-direction: column;
  gap: 12px;
  z-index: 3;
}
.post__content__old .tooltip__floating__content .picture img {
  width: 100%;
  object-fit: cover;
}
.post__content__old .tooltip__floating__content h4 {
  font-family: var(--title-ff);
  font-size: 1.125rem;
  line-height: 1.5rem;
  font-weight: 500;
}
.post__content__old .tooltip__floating__content p {
  font-size: var(--bs-font-size);
  line-height: var(--bs-line-height);
  font-weight: var(--bs-font-weight);
  margin: 0;
}
.post__content__old .ose-youtube, .post__content__old .ose-self-hosterd {
  position: relative;
  width: 100% !important;
  max-width: 100% !important; /* Встановлюємо максимальну ширину */
  padding-bottom: 56.25%; /* Співвідношення 16:9 */
  height: 0 !important;
  overflow: hidden;
}
.post__content__old .ose-youtube iframe, .post__content__old .ose-youtube video, .post__content__old .ose-self-hosterd iframe, .post__content__old .ose-self-hosterd video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}
.post .post-block-info {
  font-family: sans-serif;
  background: none;
  border-radius: 0;
  padding: 10px 20px;
  display: block;
  line-height: 1.5;
  border-left: 3px solid var(--primary-color);
  margin-left: 5%;
}
.post .post-block-info-header {
  font-style: italic;
  font-weight: bold;
  margin-bottom: 10px;
  color: var(--primary-color);
}
.post .our_partners {
  border-top: 2px solid #f2f2f2;
  padding: 20px 0;
  margin-top: 20px;
  text-align: center;
}
.post .our_partners img {
  width: 100%;
  max-width: 400px;
  margin: 10px auto;
}
.post .our_partners .sponsors_isar {
  display: flex;
  justify-content: space-around;
}
.post .our_partners .sponsors_isar img {
  max-width: 25%;
  max-height: 130px;
  object-fit: contain;
}
.post .iframe-telegram {
  margin: 30px auto 0;
  display: inherit;
}
@media (max-width: 40em) {
  .post .iframe-telegram {
    width: 380px !important;
    height: 450px !important;
  }
}
@media (max-width: 25em) {
  .post .iframe-telegram {
    width: 300px !important;
    height: 500px !important;
  }
}
.post .social-container > div {
  margin-left: auto;
  margin-right: auto;
}
.post__socials {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 20px 0 30px;
}
@media (max-width: 31.5625em) {
  .post__socials {
    flex-direction: column;
    align-items: baseline;
  }
}
.post__socials .social-media-list__item .icon {
  background-color: var(--timestamp-color);
}
.post__socials .social-media-list__item:hover .icon {
  background-color: var(--primary-color);
}
.post__socials__title {
  color: var(--primary-color);
  line-height: 1rem;
  font-size: var(--bs-font-size);
  text-transform: uppercase;
}
@media (max-width: 31.5625em) {
  .post__socials__title {
    padding: 0 0 20px;
  }
}
.post .adsmaterials {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  margin: 20px 0;
  padding: 16px 18px;
  background: #fff7d6;
  border: 1px solid #f3e8a1;
  border-radius: 12px;
  font-size: 1rem;
  line-height: 1.5;
}

#click-me {
  position: relative;
  z-index: 10;
}

.author .authors-name {
  display: none;
}

.base {
  margin-bottom: 80px;
  overflow-x: hidden;
}
@media (max-width: 48em) {
  .base {
    margin-bottom: 40px;
  }
}
.base__content.container {
  max-width: 872px;
  margin: 0 auto;
}
.base .page__header {
  display: flex;
  margin: 24px 0;
}
@media (max-width: 48em) {
  .base .page__header {
    margin: 16px 0;
  }
}
.base h2 {
  font-family: var(--title-ff);
  font-size: 1.75rem;
  line-height: 2rem;
  font-weight: 500;
  margin: 40px 0;
}
.base p {
  margin: 24px 0;
  line-height: 24px;
}
.base p.read-more {
  margin: 24px 0;
  padding: 24px 16px;
  font-weight: 600;
  letter-spacing: 0.16px;
  color: var(--primary-color);
  border-top: 1px solid var(--light-bg-color);
  border-bottom: 1px solid var(--light-bg-color);
}
.base p.read-more a {
  display: block;
  width: -moz-fit-content;
  width: fit-content;
  margin-top: 16px;
  font-size: var(--bs-font-size);
  line-height: var(--bs-line-height);
  font-weight: var(--bs-font-weight);
}
.base p.read-more a:hover, .base p.read-more a:focus, .base p.read-more a:active {
  color: var(--primary-hover-color);
  text-decoration: underline;
}
.base a:not(.read-more a) {
  border-bottom: 1px solid var(--bs-font-color);
}
.base a:not(.read-more a):hover, .base a:not(.read-more a):focus, .base a:not(.read-more a):active {
  border-color: transparent;
}
.base b {
  font-weight: 600;
}
.base blockquote {
  margin: 20px 0;
}
.base blockquote p {
  font-style: italic;
  margin: 0 0 8px 0;
}
.base blockquote footer {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  flex-direction: row;
  gap: 8px;
  font-size: 1rem;
  line-height: 1.5rem;
  font-weight: 600;
  letter-spacing: 0.16px;
}
.base ul, .base ol {
  padding-left: 24px;
  margin: 24px 0;
}
.base ul li, .base ol li {
  list-style: disc;
  line-height: 24px;
  margin-bottom: 4px;
}
.base ol li {
  list-style: decimal;
}

.projects-category__list {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  column-gap: 20px;
  row-gap: 40px;
  padding: 40px 0;
}
.projects-category__list li {
  width: 100%;
  max-width: 32%;
  padding: 15px;
  display: flex;
  flex-direction: column;
  box-shadow: 0px 1px 3px 0px rgb(206, 213, 214);
}
@media (max-width: 75em) {
  .projects-category__list li {
    max-width: 31%;
  }
}
@media (max-width: 62em) {
  .projects-category__list li {
    max-width: 47%;
  }
}
@media (max-width: 40em) {
  .projects-category__list li {
    max-width: 100%;
  }
}
.projects-category__list li img {
  width: 100%;
  height: 225px;
  object-fit: cover;
  object-position: center;
  margin-bottom: 10px;
}
.projects-category__title {
  font-size: 1.3rem;
  font-weight: 500;
  line-height: 2rem;
}

@media (max-width: 62em) {
  .page-template-template-projects .page__header {
    margin-top: 30px;
  }
}
.infohub_link {
  padding: 40px 0;
}
.infohub_link__wrapper {
  border: 1px solid var(--primary-color);
  padding: 10px;
  margin-bottom: 20px;
}
.infohub_link__wrapper a {
  width: 100%;
}

.editorial {
  width: inherit;
}
.editorial__box {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-direction: column;
  gap: 16px;
}
.editorial__heading {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-direction: row;
  width: 100%;
  gap: 8px;
}
.editorial__title {
  font-size: 1.125rem;
  line-height: 1.5rem;
  font-weight: 700;
}
.editorial__articles-list {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-direction: column;
  gap: 24px;
}
.editorial__articles-list .article__card {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-direction: row;
  gap: 8px;
}
.editorial__articles-list .article__image-box {
  flex: 0 0 35%;
}
.editorial__articles-list .article__image--desktop {
  width: 100%;
  max-height: 82px;
  object-fit: cover;
  -o-object-fit: cover;
}
.editorial__articles-list .article__heading {
  flex: 0 0 65%;
}
.editorial__articles-list .article__timestamps {
  line-height: 0.75rem;
}
.editorial__articles-list .article__title {
  font-family: var(--title-ff);
  font-size: var(--bs-font-size);
  line-height: var(--bs-line-height);
  font-weight: 500;
  display: -webkit-box;
  -webkit-line-clamp: 6;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.about-us {
  margin-bottom: 80px;
  overflow-x: hidden;
}
@media (max-width: 48em) {
  .about-us {
    margin-bottom: 40px;
  }
}
.about-us__content {
  max-width: 872px;
  margin: 0 auto;
}
.about-us__wrapper .page__header {
  display: flex;
  margin: 40px 0 24px;
}
@media (max-width: 48em) {
  .about-us__wrapper .page__header {
    margin: 16px 0 16px;
  }
}
.about-us__banner-box {
  display: block;
  width: 100%;
  margin-bottom: 40px;
  height: 460px;
  overflow: hidden;
}
@media (min-width: 20em) and (max-width: 56.25em) {
  @supports (height: clamp( 14.375rem , 6.4439655172rem  +  39.6551724138vw , 28.75rem )) {
    .about-us__banner-box {
      height: clamp( 14.375rem , 6.4439655172rem  +  39.6551724138vw , 28.75rem );
    }
  }
  @supports not (height: clamp( 14.375rem , 6.4439655172rem  +  39.6551724138vw , 28.75rem )) {
    .about-us__banner-box {
      height: calc(14.375rem + 14.375 * (100vw - 20rem) / 36.25);
    }
  }
}
@media (max-width: 20em) {
  .about-us__banner-box {
    height: 14.375rem;
  }
}
@media (max-width: 36em) {
  .about-us__banner-box {
    overflow-x: auto;
    width: 100svw;
    margin-left: -15px;
  }
}
.about-us__banner {
  width: 100%;
  object-fit: cover;
}
.about-us__cta {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-direction: row;
  margin-bottom: 40px;
}
.about-us__cta__content {
  display: inline-block;
}
.about-us__cta__content p {
  margin-bottom: 24px;
}
@media (min-width: 55.56125em) {
  .about-us__cta__content p:last-of-type {
    margin-bottom: 40px;
  }
}
@media (max-width: 24.5em) {
  .about-us__cta__content p:last-of-type {
    margin-bottom: 40px;
  }
}
.about-us__cta__content .button {
  width: 100%;
}
@media (min-width: 24.56125em) {
  .about-us__cta__content .button {
    max-width: 160px;
    padding: 8px 16px;
  }
}
.about-us__cta__uppercase {
  text-transform: uppercase;
}
@media (max-width: 24.5em) {
  .about-us__cta__uppercase {
    width: calc(100% - 68px);
  }
}
.about-us__cta__identity {
  display: flex;
}
@media (max-width: 55.5em) {
  .about-us__cta__identity {
    margin-right: -15px;
  }
}
@media (max-width: 24.5em) {
  .about-us__cta__identity {
    position: absolute;
    width: 84px;
    height: 160px;
    right: -15px;
    top: -54px;
  }
}
.about-us__post-content h2 {
  width: -moz-fit-content;
  width: fit-content;
  margin: 24px 0;
  font-family: var(--title-ff);
  font-size: 1.5rem;
  line-height: 2rem;
  font-weight: 500;
}
.about-us__post-content p {
  margin-bottom: 24px;
  font-weight: 400;
}
@media (max-width: 48em) {
  .about-us__post-content p:last-of-type {
    margin-bottom: 40px;
  }
}
.about-us__post-content a {
  color: var(--bs-font-color);
  transition: none;
}
.about-us__post-content a.text-underline {
  border-bottom-color: var(--bs-font-color);
}
.about-us__post-content a:hover, .about-us__post-content a:focus, .about-us__post-content a:active {
  color: var(--primary-hover-color);
}
.about-us__post-content a:hover.text-underline, .about-us__post-content a:focus.text-underline, .about-us__post-content a:active.text-underline {
  border-bottom-color: transparent;
}
.about-us__post-content a.like-h2 {
  display: block;
  width: -moz-fit-content;
  width: fit-content;
  margin: 40px 0 24px;
  font-family: var(--title-ff);
  font-size: 1.5rem;
  line-height: 1.5rem;
  font-weight: 700;
}
.about-us__post-content ol li {
  margin: 0 0 16px 20px;
  list-style-type: decimal;
}
.about-us__post-content .dream {
  padding: 40px 16px;
  background-color: var(--tooltip-border-color);
}
@media (min-width: 48.06125em) {
  .about-us__post-content .dream {
    padding: 32px 24px 48px;
  }
}
@media (max-width: 48em) {
  .about-us__post-content .dream {
    margin-right: -15px;
    margin-left: -15px;
  }
}
.about-us__post-content .dream h2 {
  width: 100%;
  margin-top: 0;
}
.about-us__post-content .dream p {
  margin-bottom: 0;
}
.about-us__post-content .dream svg {
  display: block;
  margin: 0 auto;
}

.category-title {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-direction: row;
}
@media (max-width: 48em) {
  .category-title {
    margin: 40px 0 40px;
  }
}
.category-title__name {
  font-family: var(--title-ff);
  font-size: 2.5rem;
  line-height: 3rem;
  font-weight: 500;
}

.error_404 {
  text-align: center;
  padding: 50px 0;
}
.error_404 .container {
  display: flex;
  flex-direction: column;
  gap: 25px;
}
.error_404_title {
  font-size: 60px;
}
.error_404_text {
  font-size: 20px;
  margin-bottom: 0;
}
.error_404 .btn-404 {
  display: inline-block;
}

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