:root {
  --bg: #f6f4ee;
  --surface: rgba(255,255,255,0.92);
  --surface-strong: #ffffff;
  --text: #1f2a20;
  --muted: #5b675d;
  --border: rgba(31, 42, 32, 0.1);
  --accent: #3b6f52;
  --accent-2: #6e8f6f;
  --shadow-sm: 0 8px 24px rgba(30, 40, 32, 0.06);
  --shadow-md: 0 16px 40px rgba(30, 40, 32, 0.1);
  --radius-sm: 4px;
  --radius-md: 12px;
  --radius-lg: 18px;
  --container: 1180px;
  --ease: 0.24s ease;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Roboto", sans-serif;
  font-size: 16px;
  line-height: 1.65;
  color: var(--text);
  background: var(--bg) !important;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

* {
  box-sizing: border-box;
}
a {
  color: inherit;
  text-decoration: none;
  transition: color var(--ease), opacity var(--ease), transform var(--ease), box-shadow var(--ease), background-color var(--ease), border-color var(--ease);
}

a:hover {
  color: var(--accent);
}

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

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

h1, h2, h3, h4, h5, h6 {
  margin: 0 0 0.6em;
  font-family: "Playfair Display", serif;
  font-weight: 700;
  line-height: 1.2;
  color: #182119;
}
p {
  margin: 0 0 1em;
  color: var(--muted);
}

ul, ol {
  margin: 0 0 1em;
  padding-left: 1.2em;
  color: var(--muted);
}

/* remove old heavy backgrounds */
.main_page,
.second_box,
.third_box,
.four_box,
.five_box,
.text_page,
.single_page,
.page_bg,
footer,
.news_on_main,
.about_on_main {
  background-image: none !important;
}

/* header */
header {
  position: sticky;
  top: 0;
  z-index: 40;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

header .top_header {
  display: none;
}
header .bottom_header {
  background: rgba(255,255,255,0.78);
  border-bottom: 1px solid rgba(31, 42, 32, 0.08);
  box-shadow: 0 6px 24px rgba(20, 30, 22, 0.06);
}

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

header .bottom_header .container .left,
header .bottom_header .container .right {
  float: none !important;
}

header .bottom_header .container .left {
  display: flex;
  align-items: center;
  gap: 14px;
}

header .bottom_header .container .left .logo,
header .bottom_header .container .left img {
  max-height: 56px;
  width: auto;
}

header .bottom_header .container .right nav ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
}
header .bottom_header .container .right nav ul li {
  margin: 0;
  padding: 0;
}

header .bottom_header .container .right nav ul li a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 0 14px;
  border-radius: 999px;
  color: #243126;
  font-size: 15px;
  font-weight: 500;
}

header .bottom_header .container .right nav ul li a:hover,
header .bottom_header .container .right nav ul li.active a {
  background: rgba(59, 111, 82, 0.1);
  color: var(--accent);
}

header .bottom_header .container .burger {
  display: none;
}
/* page title */
.page_title {
  padding: 42px 0 10px;
}

.white_bg,
.text_page .container .text_content,
.news_on_main .container .flex_box,
.about_on_main .container,
.single_page .news_all .container .news_catalog .flex_box,
.single_page .news_all .container .news_all .flex_box {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
}

.page_title .white_bg {
  padding: 24px;
}

.heads_title.title h3,
.text_page .container .text_content .flex_row .title h3,
.main_page .flex_box.left .text h3,
.third_box .flex_box.right h3,
.four_box .flex_box.left h3 {
  font-size: clamp(26px, 2.1vw, 42px);
  line-height: 1.15;
  margin: 0;
  color: #182119;
  background: transparent !important;
  padding: 0 !important;
}
.text_border {
  width: 96px;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--accent), rgba(59, 111, 82, 0));
  margin-top: 14px;
}

/* hero */
.main_page {
  padding: 36px 0 30px;
}

.main_page .flex_row {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 28px;
  align-items: stretch;
}

.flex_box {
  border-radius: var(--radius-md);
  overflow: hidden;
}

.main_page .flex_box.left,
.main_page .flex_box.right {
  background: var(--surface);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  padding: 28px;
}
.main_page .flex_box.left .text {
  max-width: 64ch;
}

.main_page .flex_box.left .text p,
.main_page .flex_box.left .text li {
  font-size: 16px;
  color: var(--muted);
}

.button,
.news_on_main .container .all,
.single_page .news_all .container .button_more,
.single_page .news_all .container .button_more_news {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 46px;
  padding: 0 18px;
  border-radius: 999px;
  background: var(--accent);
  color: #fff !important;
  border: 1px solid transparent;
  box-shadow: 0 10px 24px rgba(59, 111, 82, 0.24);
  font-weight: 500;
}
.button:hover,
.news_on_main .container .all:hover,
.single_page .news_all .container .button_more:hover,
.single_page .news_all .container .button_more_news:hover {
  transform: translateY(-2px);
  background: #315f45;
  color: #fff !important;
}

.main_page .flex_box.right {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 14px;
}

.main_page .flex_box.right .image {
  width: 100%;
  aspect-ratio: 4 / 3;
  border-radius: var(--radius-md);
  overflow: hidden;
  background: #e8ece6;
}
.main_page .flex_box.right .image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.main_page .flex_box.right h3 {
  margin: 0;
  font-size: 24px;
  line-height: 1.2;
}

.main_page .flex_box.right span {
  color: var(--muted);
  font-size: 15px;
}

/* cards row */
.second_box {
  padding: 8px 0 26px;
}

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

.second_box .flex_box {
  background: var(--surface-strong);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  padding: 24px 22px;
  min-height: 100%;
}

.second_box .flex_box:hover,
.third_box .flex_box.right a.flex_box:hover,
.four_box .flex_box:hover,
.five_box .flex_box:hover,
.news_on_main .container .flex_box:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.second_box .flex_box .image {
  width: 56px;
  height: 56px;
  margin-bottom: 16px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  background: rgba(59, 111, 82, 0.08);
}

.second_box .flex_box h3 {
  font-size: 22px;
  margin-bottom: 10px;
}

/* split section */
.third_box {
  padding: 12px 0 32px;
}
.third_box .flex_row {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 28px;
  align-items: stretch;
}

.third_box .flex_box.left,
.third_box .flex_box.right {
  background: var(--surface);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  padding: 28px;
}

.third_box .flex_box.left .image {
  width: 100%;
  height: 100%;
  min-height: 420px;
  border-radius: var(--radius-md);
  overflow: hidden;
}

.third_box .flex_box.left .image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.third_box .flex_box.right p {
  max-width: 64ch;
}

.third_box .flex_box.right .flex_row_c {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 24px;
}

.third_box .flex_box.right a.flex_box {
  position: relative;
  min-height: 96px;
  padding: 18px;
  border: 1px solid var(--border);
  background: linear-gradient(180deg, #fff, #f5f7f3);
  box-shadow: var(--shadow-sm);
}

.third_box .flex_box.right a.flex_box .overlay {
  display: none;
}

.third_box .flex_box.right a.flex_box span {
  position: relative;
  z-index: 1;
  display: block;
  font-weight: 500;
  color: #202a22;
}
.flex_box.action_card.card.card--action {
  margin-left: 0 !important;
  border-radius: 4px;
}

/* news */
.news_on_main {
  padding: 14px 0 34px;
}

.news_on_main .container {
  display: grid;
  gap: 20px;
}

.news_on_main .container .all {
  justify-self: start;
}
/* logos / resources */
.four_box {
  padding: 10px 0 28px;
}

.four_box .flex_row {
  display: grid;
  grid-template-columns: 0.38fr 1fr;
  gap: 22px;
  align-items: center;
}

.four_box .flex_box.left,
.four_box .flex_box.right,
.five_box .flex_box {
  background: var(--surface);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  padding: 22px;
}

.four_box .flex_box.right .flex_row,
.five_box .flex_row {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}
.four_box .flex_box .image,
.five_box .flex_box {
  border-radius: 12px;
  overflow: hidden;
}

.four_box .flex_box a.image img,
.five_box .flex_box img {
  width: 100%;
  height: auto;
  transition: transform var(--ease);
}

.four_box .flex_box:hover a.image img,
.five_box .flex_box:hover img {
  transform: scale(1.03);
}

.five_box {
  padding: 6px 0 42px;
}

.five_box .flex_row {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}
/* text page */
.text_page {
  padding: 18px 0 38px;
}

.text_page .container .text_content {
  width: min(100%, 980px);
  margin: 0 auto;
  padding: clamp(18px, 2.2vw, 34px);
}

.text_page .container .text_content .flex_row {
  display: block;
}

.text_page .container .text_content .flex_row .title {
  margin-bottom: 18px;
}

.text_page .container .text_content .flex_row .title h3 {
  font-size: clamp(22px, 1.3vw, 30px);
}
.text_page .container .text_content .flex_row .description {
  margin-top: 8px;
  height: auto;
  max-height: none;
  overflow: visible;
}

.text_page .container .text_content .flex_row .description,
.text_page .container .text_content .flex_row .description * {
  color: #2f372f;
}

.text_page .container .text_content .flex_row .description p,
.text_page .container .text_content .flex_row .description ul,
.text_page .container .text_content .flex_row .description ol,
.text_page .container .text_content .flex_row .description li,
.text_page .container .text_content .flex_row .description span,
.text_page .container .text_content .flex_row .description a {
  font-size: 16px;
  line-height: 1.75;
}

.text_page .container .text_content .flex_row .description h1 { font-size: 30px; }
.text_page .container .text_content .flex_row .description h2 { font-size: 26px; }
.text_page .container .text_content .flex_row .description h3 { font-size: 22px; }
/* single inner pages */
.single_page {
  padding-bottom: 40px;
}

.single_page .page_title .white_bg,
.single_page .zhurnali,
.single_page .zhurnali .flex_row,
.single_page .zhurnali .right,
.single_page .zhurnali .flex_box {
  color: #111;
  border-radius: 4px;
}

.single_page .page_title .white_bg,
.single_page .zhurnali {
  background: rgba(255,255,255,.62);
  border: 1px solid rgba(255,255,255,.35);
  box-shadow: 0 10px 30px rgba(0,0,0,.12);
  padding: 16px;
}

@supports ((-webkit-backdrop-filter: blur(10px)) or (backdrop-filter: blur(10px))) {
  .single_page .page_title .white_bg,
  .single_page .zhurnali {
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    background: rgba(255,255,255,.45);
  }
}
.single_page .page_title .heads_title h3,
.single_page .zhurnali h3 {
  margin: 0;
  padding: 10px 12px;
  display: inline-block;
  color: #0f1418;
  background: rgba(255,255,255,.72);
  border: 1px solid rgba(0,0,0,.08);
  border-radius: 4px;
  line-height: 1.2;
}

.single_page .page_title .white_bg .flex_row,
.single_page .page_title .white_bg .right,
.single_page .zhurnali .flex_row,
.single_page .zhurnali .right {
  background: rgba(255,255,255,.55);
  border: 1px solid rgba(0,0,0,.06);
  padding: 12px;
}

@supports ((-webkit-backdrop-filter: blur(8px)) or (backdrop-filter: blur(8px))) {
  .single_page .page_title .white_bg .flex_row,
  .single_page .page_title .white_bg .right,
  .single_page .zhurnali .flex_row,
  .single_page .zhurnali .right {
    -webkit-backdrop-filter: blur(8px);
    backdrop-filter: blur(8px);
    background: rgba(255,255,255,.40);
  }
}
.single_page .page_title .white_bg,
.single_page .page_title .white_bg *,
.single_page .zhurnali,
.single_page .zhurnali * {
  color: #111;
}

.single_page .page_title .white_bg a,
.single_page .zhurnali a {
  color: #1f5f45;
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-thickness: 2px;
}

/* footer */
footer {
  padding: 0 0 28px;
}

footer .footer_nav {
  background: transparent;
}

footer .footer_nav .container {
  background: rgba(255,255,255,0.78);
  border: 1px solid rgba(31, 42, 32, 0.08);
  border-radius: 20px;
  box-shadow: var(--shadow-sm);
  padding: 28px;
}
footer .footer_nav .container .border {
  height: 1px;
  background: rgba(31, 42, 32, 0.08);
  margin: 18px 0;
}

footer,
footer p,
footer a,
footer span,
footer li {
  color: #334236;
}

footer a:hover {
  color: var(--accent);
}

/* logos auto move right */
.flex_row.logos__row {
  overflow: hidden;
  position: relative;
}
.flex_row.logos__row .logos__track {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: nowrap;
  width: max-content;
  animation: logos-right var(--logos-speed, 28s) linear infinite;
  will-change: transform;
}

@keyframes logos-right {
  from { transform: translateX(-50%); }
  to { transform: translateX(0); }
}

.flex_row.logos__row:hover .logos__track {
  animation-play-state: paused;
}

/* helpers */
.button,
.second_box .flex_box,
.third_box .flex_box.right a.flex_box,
.four_box .flex_box,
.five_box .flex_box,
.news_on_main .container .flex_box,
header .bottom_header .container .right nav ul li a {
  transition: transform var(--ease), box-shadow var(--ease), background-color var(--ease), color var(--ease), border-color var(--ease), opacity var(--ease);
}
/* responsive */
@media (max-width: 1199px) {
  .main_page .flex_row,
  .third_box .flex_row,
  .four_box .flex_row {
    grid-template-columns: 1fr;
  }

  .five_box .flex_row {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 991px) {
  header .bottom_header .container {
    min-height: 72px;
  }

  header .bottom_header .container .right nav ul {
    gap: 6px;
  }

  .second_box .flex_row,
  .four_box .flex_box.right .flex_row,
  .five_box .flex_row,
  .third_box .flex_box.right .flex_row_c {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 767px) {
  body {
    font-size: 15px;
  }

  .container {
    width: min(calc(100% - 24px), var(--container));
  }

  header .bottom_header .container {
    flex-wrap: wrap;
    justify-content: center;
    padding: 12px 0;
  }

  header .bottom_header .container .right nav ul {
    justify-content: center;
  }

  .main_page,
  .second_box,
  .third_box,
  .news_on_main,
  .four_box,
  .five_box,
  .text_page {
    padding-top: 16px;
    padding-bottom: 16px;
  }
  .main_page .flex_box.left,
  .main_page .flex_box.right,
  .third_box .flex_box.left,
  .third_box .flex_box.right,
  .four_box .flex_box.left,
  .four_box .flex_box.right,
  .five_box .flex_box,
  .page_title .white_bg,
  .text_page .container .text_content {
    padding: 18px;
  }

  .second_box .flex_row,
  .third_box .flex_box.right .flex_row_c,
  .four_box .flex_box.right .flex_row,
  .five_box .flex_row {
    grid-template-columns: 1fr;
  }

  .heads_title.title h3,
  .text_page .container .text_content .flex_row .title h3,
  .main_page .flex_box.left .text h3,
  .third_box .flex_box.right h3,
  .four_box .flex_box.left h3 {
    font-size: 28px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *, *::before, *::after {
    animation: none !important;
    transition: none !important;
  }
}

/* =========================
   HOME PAGE ALIGN FIX
   ========================= */

:root{
  --site-w: 1180px;
  --header-h: 88px;
}

/* page width */
.container{
  width: min(calc(100% - 40px), var(--site-w));
  margin: 0 auto;
}

body{
  background: #f3f1eb !important;
}

/* =========================
   HEADER
   ========================= */

.site_header{
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.site_header .top_header{
  display: block;
  background: rgba(255,255,255,.72);
  border-bottom: 1px solid rgba(31,42,32,.06);
}

.site_header .top_header .container{
  min-height: 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.top_header__meta{
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 18px;
}

.top_header__langs,
.top_header__eye{
  display: flex;
  align-items: center;
  gap: 10px;
}

.top_header__langs a,
.top_header__eye a{
  font-size: 13px;
  font-weight: 600;
  color: #425046;
}

.top_header__eye .eye_icon{
  width: 16px;
  height: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.top_header__eye .eye_icon img{
  width: 100%;
  height: auto;
  opacity: .75;
}

.site_header .bottom_header{
  background: rgba(255,255,255,.84);
  border-bottom: 1px solid rgba(31,42,32,.08);
  box-shadow: 0 10px 24px rgba(20,30,22,.05);
}

.site_header .bottom_header .container{
  min-height: var(--header-h);
  display: grid;
  grid-template-columns: 260px 1fr;
  align-items: center;
  gap: 26px;
}

.header_brand{
  min-width: 0;
}

.header_brand__link{
  display: flex;
  flex-direction: column;
  gap: 8px;
  text-decoration: none;
}

.header_brand__title{
  font-family: "Playfair Display", serif;
  font-size: 24px;
  font-weight: 700;
  line-height: 1;
  color: #1a231c;
  letter-spacing: .02em;
}

.header_brand__text{
  max-width: 150px;
  font-size: 13px;
  line-height: 1.5;
  color: #667266;
  text-transform: lowercase;
}

.site_header .right_header{
  width: 100%;
}

.site_header nav ul{
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: center;
  gap: 8px 10px;
}

.site_header nav ul li{
  margin: 0;
  padding: 0;
}

.site_header nav ul li a{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 0 14px;
  border-radius: 999px;
  font-size: 15px !important;
  font-weight: 500 !important;
  line-height: 1.2;
  color: #2a352c;
  transition: background-color .24s ease, color .24s ease, transform .24s ease;
}

.site_header nav ul li a:hover,
.site_header nav ul li.active a{
  background: rgba(59,111,82,.1);
  color: #3b6f52;
}

.site_header .burger{
  display: none;
}

.site_header .mobile{
  display: none;
}

/* =========================
   TITLE
   ========================= */

.title_main{
  padding: 28px 0 14px;
}

.title_main .container.flex_row{
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 22px;
  align-items: stretch;
}

.title_main .flex_box{
  background: rgba(255,255,255,.86);
  border: 1px solid rgba(31,42,32,.08);
  border-radius: 20px;
  box-shadow: 0 10px 24px rgba(20,30,22,.05);
  padding: 24px 28px;
}

.title_main .flex_box:not(.fizmat){
  font-family: "Playfair Display", serif;
  font-size: clamp(28px, 2.1vw, 42px);
  line-height: 1.12;
  color: #182119;
}

.title_main .flex_box.fizmat{
  display: flex;
  align-items: center;
  gap: 16px;
}

.title_main .flex_box.fizmat .image{
  width: 66px;
  height: 66px;
  border-radius: 16px;
  background: rgba(59,111,82,.08);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.title_main .flex_box.fizmat .text{
  font-size: 15px;
  line-height: 1.55;
  color: #576358;
  font-weight: 500;
}

/* =========================
   MAIN SECTIONS ALIGN
   ========================= */

.page--home .section{
  padding: 18px 0;
}

.page--home .hero__row,
.page--home .features__row,
.page--home .authors__row,
.page--home .quicklinks__row,
.page--home .logos__row{
  align-items: stretch;
}

.page--home .hero__row{
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(320px, .88fr);
  gap: 26px;
}

.page--home .hero__content,
.page--home .hero__profile,
.page--home .feature_card,
.page--home .authors__text,
.page--home .action_card,
.page--home .card_link,
.page--home .logo_card{
  background: rgba(255,255,255,.88);
  border: 1px solid rgba(31,42,32,.08);
  border-radius: 18px;
  box-shadow: 0 10px 28px rgba(20,30,22,.06);
}

.page--home .hero__content{
  padding: 28px;
}

.page--home .hero__profile{
  padding: 18px;
}

.page--home .profile{
  margin: 0;
  height: 100%;
}

.page--home .profile__image{
  width: 100%;
  aspect-ratio: 4 / 4.8;
  border-radius: 16px;
  overflow: hidden;
  background: #edf1eb;
}

.page--home .profile__image img{
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page--home .profile__caption{
  padding-top: 14px;
}

.page--home .profile__name{
  margin: 0 0 6px;
  font-size: 28px;
  line-height: 1.15;
}

.page--home .profile__role{
  margin: 0;
  font-size: 15px;
  line-height: 1.6;
  color: #657165;
}

.page--home .hero__title{
  margin: 0 0 16px;
  font-size: clamp(34px, 2.7vw, 58px);
  line-height: 1.06;
  background: transparent !important;
  padding: 0 !important;
}

.page--home .hero__body,
.page--home .hero__body p,
.page--home .hero__body li{
  font-size: 16px;
  line-height: 1.8;
  color: #5c675d;
}

.page--home .hero__cta{
  margin-top: 14px;
  align-self: flex-start;
}

/* features */
.page--home .section_intro{
  margin-bottom: 18px;
}

.page--home .section_title,
.page--home .authors__title{
  margin: 0;
  font-size: clamp(24px, 1.7vw, 34px);
  line-height: 1.15;
}

.page--home .features__row{
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.page--home .feature_card{
  padding: 22px 20px;
  min-height: 100%;
}

.page--home .feature_card__title{
  margin: 0 0 10px;
  font-size: 20px;
  line-height: 1.2;
}

.page--home .feature_card__text{
  margin: 0;
  font-size: 15px;
  line-height: 1.8;
  color: #5c675d;
}

/* authors */
.page--home .authors__row{
  display: grid;
  grid-template-columns: minmax(0, .95fr) minmax(0, 1.05fr);
  gap: 22px;
}

.page--home .authors__text{
  padding: 26px;
}

.page--home .authors__content,
.page--home .authors__content p,
.page--home .authors__content li{
  font-size: 16px;
  line-height: 1.8;
  color: #5c675d;
}

.page--home .actions__grid{
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.page--home .action_card{
  min-height: 180px;
  padding: 18px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  overflow: hidden;
}

.page--home .action_card__title{
  font-size: 16px;
  line-height: 1.45;
  font-weight: 600;
  color: #1f2a20;
}

/* quicklinks */
.page--home .quicklinks__row{
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.page--home .card_link{
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.page--home .card_link__image{
  width: 100%;
  aspect-ratio: 16 / 10;
  background: #edf1eb;
  overflow: hidden;
}

.page--home .card_link__image img{
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page--home .card_link__label{
  display: block;
  padding: 18px 20px;
  font-size: 17px;
  line-height: 1.4;
  font-weight: 600;
  color: #1f2a20;
}

/* logos */
.page--home .logos__row{
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.page--home .logo_card{
  min-height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 18px;
}

.page--home .logo_card img{
  max-width: 100%;
  max-height: 58px;
  width: auto;
  height: auto;
  object-fit: contain;
}

/* =========================
   MAP
   ========================= */

.map_section{
  padding: 18px 0 0;
}

.map_shell{
  position: relative;
}

.map{
  position: relative;
  width: 100%;
  display: block;
  margin: 0;
}

.map .map_frame{
  width: 100%;
  min-height: 520px;
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid rgba(31,42,32,.08);
  box-shadow: 0 12px 28px rgba(20,30,22,.07);
  background: #e9ede6;
}

.map .map_frame iframe{
  display: block;
  width: 100%;
  height: 520px;
}

.map .map_info{
  position: absolute;
  left: 28px;
  bottom: 28px;
  z-index: 3;
  width: min(420px, calc(100% - 56px));
  background: rgba(255,255,255,.88);
  border: 1px solid rgba(31,42,32,.08);
  border-radius: 18px;
  box-shadow: 0 12px 30px rgba(20,30,22,.12);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  padding: 22px;
}

.map .map_info .contacts{
  margin-bottom: 10px;
  font-family: "Playfair Display", serif;
  font-size: 28px;
  line-height: 1.12;
  color: #182119;
}

.map .map_info .contacts_more{
  margin-bottom: 14px;
  font-size: 15px;
  line-height: 1.65;
  color: #5c675d;
}

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

.map .map_info li{
  margin-bottom: 8px;
  color: #334236;
  line-height: 1.6;
}

.map .map_info li:last-child{
  margin-bottom: 0;
}

.map .map_info li.flex_box{
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 0;
  background: transparent;
  border: 0;
}

.map .map_info a{
  color: #1f5f45;
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-thickness: 2px;
}

/* =========================
   FOOTER
   ========================= */

footer{
  margin-top: 24px;
  padding: 0 0 28px;
}

footer .footer_nav .container,
footer .footer_bottom .container{
  width: min(calc(100% - 40px), var(--site-w));
  margin: 0 auto;
}

footer .footer_nav{
  margin-bottom: 14px;
}

footer .footer_nav .container{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  background: rgba(255,255,255,.82);
  border: 1px solid rgba(31,42,32,.08);
  border-radius: 20px;
  box-shadow: 0 10px 24px rgba(20,30,22,.05);
  padding: 24px;
}

footer .footer_nav .left .flex_box{
  font-size: 30px;
  line-height: 1.15;
}

footer .footer_nav .right ul{
  margin: 0;
  padding: 0;
  list-style: none;
}

footer .footer_nav .right li{
  margin-bottom: 10px;
  color: #4d5a50;
  line-height: 1.7;
}

footer .footer_nav .right a{
  color: #1f5f45;
  text-decoration: underline;
  text-underline-offset: 3px;
}

footer .footer_bottom .container{
  background: rgba(255,255,255,.72);
  border: 1px solid rgba(31,42,32,.08);
  border-radius: 18px;
  box-shadow: 0 8px 22px rgba(20,30,22,.05);
  padding: 18px 24px;
}

footer .footer_bottom .flex_row{
  display: grid;
  grid-template-columns: 56px 1fr auto;
  gap: 18px;
  align-items: center;
}

footer .footer_logo{
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: rgba(59,111,82,.06);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

footer .footer_logo img{
  max-width: 100%;
  max-height: 100%;
}

footer .footer_bottom .title{
  font-size: 14px;
  line-height: 1.65;
  color: #445046;
}

footer .footer_bottom .title a{
  margin-left: 6px;
  color: #1f5f45;
  text-decoration: underline;
}

footer .copyright{
  font-size: 13px;
  color: #69756b;
  text-align: right;
}

/* =========================
   MOBILE
   ========================= */

@media (max-width: 1199px){
  .site_header .bottom_header .container,
  .title_main .container.flex_row,
  .page--home .hero__row,
  .page--home .authors__row,
  .footer_nav .container,
  footer .footer_bottom .flex_row{
    grid-template-columns: 1fr;
  }

  .site_header nav ul{
    justify-content: flex-start;
  }
}

@media (max-width: 991px){
  .page--home .features__row,
  .page--home .quicklinks__row{
    grid-template-columns: 1fr;
  }

  .page--home .logos__row{
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .page--home .actions__grid{
    grid-template-columns: 1fr;
  }

  .map .map_info{
    position: static;
    width: 100%;
    margin-top: 16px;
  }

  .map .map_frame,
  .map .map_frame iframe{
    min-height: 420px;
    height: 420px;
  }

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

@media (max-width: 767px){
  .container,
  footer .footer_nav .container,
  footer .footer_bottom .container{
    width: min(calc(100% - 24px), var(--site-w));
  }

  .site_header .top_header .container{
    min-height: 38px;
  }

  .top_header__meta{
    gap: 12px;
    flex-wrap: wrap;
    justify-content: flex-end;
  }

  .site_header .bottom_header .container{
    gap: 16px;
    min-height: auto;
    padding: 14px 0;
  }

  .header_brand__title{
    font-size: 22px;
  }

  .header_brand__text{
    max-width: none;
  }

  .site_header nav ul li a{
    min-height: 36px;
    padding: 0 12px;
    font-size: 14px !important;
  }

  .title_main .flex_box,
  .page--home .hero__content,
  .page--home .hero__profile,
  .page--home .feature_card,
  .page--home .authors__text,
  .page--home .action_card,
  .map .map_info,
  footer .footer_nav .container,
  footer .footer_bottom .container{
    padding: 18px;
  }

  .page--home .hero__title{
    font-size: 30px;
  }

  .page--home .logos__row{
    grid-template-columns: 1fr;
  }

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

/* языки слева, слабовидящая версия справа */
.site_header .top_header .container{
  min-height: 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.top_header__langs{
  display: flex;
  align-items: center;
  gap: 10px;
  margin-right: auto;
}

.top_header__eye{
  display: flex;
  align-items: center;
  gap: 10px;
  margin-left: auto;
}

.top_header__langs a,
.top_header__eye a{
  font-size: 13px;
  font-weight: 600;
  color: #425046;
}

/* =========================
   FOOTER ALIGN FIX
   ========================= */

footer{
  margin-top: 28px;
  padding: 0 0 28px;
}

footer .footer_nav{
  margin-bottom: 14px;
}

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

/* верхняя карточка футера */
footer .footer_nav .container{
  display: grid;
  grid-template-columns: minmax(320px, 1fr) minmax(340px, 1fr);
  gap: 28px;
  align-items: start;
  background: rgba(255,255,255,.84);
  border: 1px solid rgba(31,42,32,.08);
  border-radius: 22px;
  box-shadow: 0 10px 24px rgba(20,30,22,.05);
  padding: 28px 30px;
}

/* левая часть */
footer .footer_nav .left{
  display: flex;
  align-items: flex-start;
}

footer .footer_nav .left .flex_box{
  max-width: 420px;
  font-family: "Playfair Display", serif;
  font-size: clamp(28px, 2vw, 42px);
  font-weight: 700;
  line-height: 1.15;
  color: #182119;
}

/* правая часть */
footer .footer_nav .right{
  display: flex;
  justify-content: flex-end;
}

footer .footer_nav .right ul{
  width: 100%;
  max-width: 460px;
  margin: 0;
  padding: 0;
  list-style: none;
}

footer .footer_nav .right li{
  margin: 0 0 12px;
  font-size: 16px;
  line-height: 1.7;
  color: #4d5a50;
}

footer .footer_nav .right li:last-child{
  margin-bottom: 0;
}

footer .footer_nav .right a{
  color: #1f5f45;
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-thickness: 2px;
}

/* нижняя карточка футера */
footer .footer_bottom .container{
  background: rgba(255,255,255,.78);
  border: 1px solid rgba(31,42,32,.08);
  border-radius: 20px;
  box-shadow: 0 8px 22px rgba(20,30,22,.05);
  padding: 18px 24px;
}

footer .footer_bottom .flex_row{
  display: grid;
  grid-template-columns: 64px minmax(260px, 1fr) auto;
  gap: 18px;
  align-items: center;
}

/* логотип */
footer .footer_logo{
  width: 64px;
  height: 64px;
  border-radius: 16px;
  overflow: hidden;
  background: rgba(59,111,82,.06);
  display: flex;
  align-items: center;
  justify-content: center;
}

footer .footer_logo img{
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

/* текст по центру */
footer .footer_bottom .title{
  max-width: 520px;
  font-size: 15px;
  line-height: 1.65;
  color: #445046;
}

footer .footer_bottom .title a{
  display: inline-block;
  margin-left: 6px;
  color: #1f5f45;
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-thickness: 2px;
}

/* копирайт справа */
footer .copyright{
  justify-self: end;
  text-align: right;
  font-size: 14px;
  line-height: 1.6;
  color: #69756b;
  white-space: nowrap;
}

/* мобильная адаптация */
@media (max-width: 991px){
  footer .footer_nav .container{
    grid-template-columns: 1fr;
    gap: 18px;
    padding: 22px;
  }

  footer .footer_nav .right{
    justify-content: flex-start;
  }

  footer .footer_nav .right ul{
    max-width: none;
  }

  footer .footer_bottom .flex_row{
    grid-template-columns: 1fr;
    gap: 14px;
    text-align: left;
  }

  footer .copyright{
    justify-self: start;
    text-align: left;
    white-space: normal;
  }
}

@media (max-width: 767px){
  footer .footer_nav .container,
  footer .footer_bottom .container{
    width: min(calc(100% - 24px), 1180px);
  }

  footer .footer_nav .container{
    padding: 18px;
  }

  footer .footer_bottom .container{
    padding: 16px 18px;
  }

  footer .footer_nav .left .flex_box{
    font-size: 24px;
  }

  footer .footer_nav .right li,
  footer .footer_bottom .title,
  footer .copyright{
    font-size: 14px;
  }
}

/* =========================
   HEADER MENU LIKE NEW
   ========================= */

.site_header .bottom_header nav > ul > li > a,
header .bottom_header nav > ul > li > a{
  font-family: "Roboto", sans-serif !important;
  font-size: 13px !important;
  font-weight: 700 !important;
  font-style: normal !important;
  text-transform: uppercase !important;
  letter-spacing: .03em;
  color: #222222 !important;
  line-height: 1.2;
  min-height: 42px;
  padding: 0 14px !important;
  border-radius: 999px;
  transition: color .24s ease, background-color .24s ease, transform .24s ease;
}

.site_header .bottom_header nav > ul > li > a:hover,
.site_header .bottom_header nav > ul > li.active > a,
header .bottom_header nav > ul > li > a:hover,
header .bottom_header nav > ul > li.active > a{
  color: #4dbf1c !important;
  background: transparent !important;
}

/* чуть аккуратнее расстояние между пунктами */
.site_header nav > ul,
header .bottom_header nav > ul{
  gap: 10px 14px;
}

/* верхние языки и версия для слабовидящих */
.site_header .top_header a,
header .top_header a{
  font-family: "Roboto", sans-serif !important;
  font-size: 12px !important;
  font-weight: 700 !important;
  text-transform: uppercase !important;
  letter-spacing: .03em;
  color: #222222 !important;
  transition: color .24s ease;
}

.site_header .top_header a:hover,
header .top_header a:hover{
  color: #4dbf1c !important;
}

/* =========================
   SIDEBAR MENU
   ========================= */

.sidebar_menu{
  width: 100%;
}

.sidebar_menu__inner{
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.sidebar_menu__link{
  display: flex;
  align-items: center;
  min-height: 48px;
  padding: 12px 16px;
  background: #3b6f52;
  color: #ffffff !important;
  font-family: "Roboto", sans-serif;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.3;
  border-radius: 4px;
  text-decoration: none;
  box-shadow: 0 4px 12px rgba(59,111,82,.18);
  transition: background-color .24s ease, transform .24s ease, box-shadow .24s ease;
}

.sidebar_menu__link:hover{
  background: #315f45;
  color: #ffffff !important;
  transform: translateX(2px);
  box-shadow: 0 8px 16px rgba(59,111,82,.22);
}

.sidebar_menu__link.active,
.sidebar_menu__link[aria-current="page"]{
  background: #2a523c;
}

@media (max-width: 767px){
  .sidebar_menu__inner{
    gap: 10px;
  }

  .sidebar_menu__link{
    min-height: 44px;
    padding: 10px 14px;
    font-size: 13px;
  }
}

.content_layout{
  display: grid;
  grid-template-columns: 220px minmax(0, 1fr);
  gap: 28px;
  align-items: start;
}

@media (max-width: 991px){
  .content_layout{
    grid-template-columns: 1fr;
  }
}

.content_layout--home{
  display: grid;
  grid-template-columns: minmax(0, 1fr) 240px;
  gap: 28px;
  align-items: start;
}

.content_layout__main{
  min-width: 0;
}

.content_layout__sidebar{
  width: 100%;
}

.content_layout--home .sidebar_menu{
  position: sticky;
  top: 130px;
}

.content_layout--home .hero__row{
  display: block;
}

.content_layout--home .hero__content{
  width: 100%;
}

@media (max-width: 991px){
  .content_layout--home{
    grid-template-columns: 1fr;
  }

  .content_layout--home .sidebar_menu{
    position: static;
    top: auto;
  }
}

.page--home .features__row .feature_card{
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.page--home .features__row .feature_card__icon{
  margin: 0 auto 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.page--home .features__row .feature_card__icon img{
  display: block;
  margin: 0 auto;
}

.page--home .features__row .feature_card__title{
  margin-top: 0;
  margin-bottom: 8px;
}

.page--home .features__row .feature_card__text{
  margin-top: 0;
}
.page--home .features__row .feature_card__icon{
  background: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
}

.title_main{
  padding: 28px 0 14px;
}

.title_main .container{
  display: flex;
  justify-content: center;
}

.title_main__single{
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
  padding: 24px 28px;
  background: rgba(255,255,255,.86);
  border: 1px solid rgba(31,42,32,.08);
  border-radius: 20px;
  box-shadow: 0 10px 24px rgba(20,30,22,.05);
  font-family: "Playfair Display", serif;
  font-size: clamp(28px, 2.1vw, 42px);
  line-height: 1.12;
  color: #182119;
  text-align: center;
}

.header_brand{
  display: flex;
  align-items: center;
}

.header_brand__link--logo{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}

.header_brand__logo{
  display: block;
  width: auto;
  max-width: 240px;
  max-height: 100px;
  object-fit: contain;
}

@media (max-width: 767px){
  .header_brand__logo{
    max-width: 180px;
    max-height: 64px;
  }
}

/* =========================
   ARCHIVE ACCORDION
   ========================= */

.archive_page .archive_box{
  padding: 24px;
}

.archive_list{
  margin-top: 18px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.archive_year{
  border-radius: 12px;
  overflow: hidden;
  background: transparent;
}

.archive_year__toggle{
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 16px 20px;
  border: 0;
  border-radius: 12px;
  background: #3b6f52;
  color: #fff;
  cursor: pointer;
  text-align: left;
  font-family: "Roboto", sans-serif;
  font-size: 22px;
  font-weight: 700;
  line-height: 1.2;
  box-shadow: 0 8px 18px rgba(59,111,82,.16);
  transition: background-color .24s ease, transform .24s ease, box-shadow .24s ease;
}

.archive_year__toggle:hover{
  background: #315f45;
}

.archive_year__title{
  color: #fff;
}

.archive_year__arrow{
  flex: 0 0 auto;
  width: 12px;
  height: 12px;
  border-right: 2px solid #fff;
  border-bottom: 2px solid #fff;
  transform: rotate(45deg);
  transition: transform .28s ease;
  margin-top: -4px;
}

.archive_year.is-open .archive_year__arrow{
  transform: rotate(225deg);
  margin-top: 4px;
}

.archive_year__panel{
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows .32s ease, opacity .32s ease, margin-top .32s ease;
  opacity: 0;
  margin-top: 0;
}

.archive_year.is-open .archive_year__panel{
  grid-template-rows: 1fr;
  opacity: 1;
  margin-top: 10px;
}

.archive_year__inner{
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 0 4px;
}

.archive_year__link{
  display: block;
  width: 100%;
  padding: 12px 16px;
  border-radius: 4px;
  background: #3b6f52;
  color: #fff !important;
  text-decoration: none;
  font-family: "Roboto", sans-serif;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.3;
  box-shadow: 0 4px 12px rgba(59,111,82,.14);
  transition: background-color .24s ease, transform .24s ease, box-shadow .24s ease;
}

.archive_year__link:hover{
  background: #315f45;
  color: #fff !important;
  transform: translateX(2px);
  box-shadow: 0 8px 16px rgba(59,111,82,.2);
}

.archive_page .white_bg{
  background: rgba(255,255,255,.82);
  border: 1px solid rgba(31,42,32,.08);
  border-radius: 18px;
  box-shadow: 0 10px 24px rgba(20,30,22,.05);
}

@media (max-width: 767px){
  .archive_page .archive_box{
    padding: 16px;
  }

  .archive_year__toggle{
    padding: 14px 16px;
    font-size: 18px;
  }

  .archive_year__link{
    font-size: 14px;
    padding: 10px 14px;
  }
}

.archive_page .archive_box{
  padding: 24px;
}

.archive_list{
  margin-top: 18px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.archive_year{
  border-radius: 12px;
  overflow: hidden;
  background: transparent;
}

.archive_year__toggle{
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 16px 20px;
  border: 0;
  border-radius: 12px;
  background: #3b6f52;
  color: #fff;
  cursor: pointer;
  text-align: left;
  font-family: "Roboto", sans-serif;
  font-size: 22px;
  font-weight: 700;
  line-height: 1.2;
  box-shadow: 0 8px 18px rgba(59,111,82,.16);
  transition: background-color .24s ease, transform .24s ease, box-shadow .24s ease;
}

.archive_year__toggle:hover{
  background: #315f45;
}

.archive_year__title{
  color: #fff;
}

.archive_year__arrow{
  flex: 0 0 auto;
  width: 12px;
  height: 12px;
  border-right: 2px solid #fff;
  border-bottom: 2px solid #fff;
  transform: rotate(45deg);
  transition: transform .28s ease;
  margin-top: -4px;
}

.archive_year.is-open .archive_year__arrow{
  transform: rotate(225deg);
  margin-top: 4px;
}

.archive_year__panel{
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows .32s ease, opacity .32s ease, margin-top .32s ease;
  opacity: 0;
  margin-top: 0;
}

.archive_year.is-open .archive_year__panel{
  grid-template-rows: 1fr;
  opacity: 1;
  margin-top: 10px;
}

.archive_year__inner{
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 0 4px;
}

.archive_year__link{
  display: block;
  width: 100%;
  padding: 12px 16px;
  border-radius: 4px;
  background: #3b6f52;
  color: #fff !important;
  text-decoration: none;
  font-family: "Roboto", sans-serif;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.3;
  box-shadow: 0 4px 12px rgba(59,111,82,.14);
  transition: background-color .24s ease, transform .24s ease, box-shadow .24s ease;
}

.archive_year__link:hover{
  background: #315f45;
  color: #fff !important;
  transform: translateX(2px);
  box-shadow: 0 8px 16px rgba(59,111,82,.2);
}

.archive_page .white_bg{
  background: rgba(255,255,255,.82);
  border: 1px solid rgba(31,42,32,.08);
  border-radius: 18px;
  box-shadow: 0 10px 24px rgba(20,30,22,.05);
}

@media (max-width: 767px){
  .archive_page .archive_box{
    padding: 16px;
  }

  .archive_year__toggle{
    padding: 14px 16px;
    font-size: 18px;
  }

  .archive_year__link{
    font-size: 14px;
    padding: 10px 14px;
  }
}

/* =========================
   ARTICLE / TEXT PAGE
   ========================= */

.text_page--article{
  padding: 28px 0 40px;
}

.text_page--article .container{
  width: min(calc(100% - 40px), 980px);
  margin: 0 auto;
}

.text_page--article .article_shell{
  background: rgba(255,255,255,.9);
  border: 1px solid rgba(31,42,32,.08);
  border-radius: 20px;
  box-shadow: 0 10px 28px rgba(20,30,22,.06);
  padding: 28px 32px;
}

.text_page--article .article_layout{
  display: block;
}

.text_page--article .article_header{
  margin-bottom: 22px;
}

.text_page--article .article_header h3{
  margin: 0;
  background: transparent !important;
  padding: 0 !important;
  font-family: "Noto Serif", "Times New Roman", serif;
  font-size: clamp(30px, 2vw, 42px);
  line-height: 1.15;
  font-weight: 700;
  color: #182119;
  letter-spacing: 0;
}

.text_page--article .text_border{
  width: 110px;
  height: 3px;
  margin-top: 14px;
  border-radius: 999px;
  background: linear-gradient(90deg, #3b6f52, rgba(59,111,82,0));
}

/* основной текст */
.text_page--article .article_body,
.text_page--article .article_body p,
.text_page--article .article_body li,
.text_page--article .article_body span,
.text_page--article .article_body td,
.text_page--article .article_body th{
  font-family: "Noto Sans", Arial, sans-serif;
  font-size: 18px;
  line-height: 1.82;
  color: #2f3a31;
}

.text_page--article .article_body{
  height: auto !important;
  max-height: none !important;
  overflow: visible !important;
}

/* абзацы */
.text_page--article .article_body p{
  margin: 0 0 1.15em;
}

/* заголовки внутри content */
.text_page--article .article_body h1,
.text_page--article .article_body h2,
.text_page--article .article_body h3,
.text_page--article .article_body h4{
  font-family: "Noto Serif", "Times New Roman", serif;
  font-weight: 700;
  line-height: 1.25;
  color: #182119;
  margin: 1.4em 0 .6em;
}

.text_page--article .article_body h1{ font-size: 32px; }
.text_page--article .article_body h2{ font-size: 28px; }
.text_page--article .article_body h3{ font-size: 24px; }
.text_page--article .article_body h4{ font-size: 20px; }

/* списки */
.text_page--article .article_body ul,
.text_page--article .article_body ol{
  margin: 0 0 1.2em 0;
  padding-left: 1.35em;
}

.text_page--article .article_body li{
  margin-bottom: .45em;
}

/* ссылки */
.text_page--article .article_body a{
  color: #1f5f45;
  font-weight: 600;
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 3px;
  transition: color .2s ease, background-color .2s ease;
}

.text_page--article .article_body a:hover{
  color: #143f2d;
  background: rgba(59,111,82,.08);
}

/* цитаты */
.text_page--article .article_body blockquote{
  margin: 1.4em 0;
  padding: 16px 18px;
  border-left: 4px solid #3b6f52;
  background: rgba(59,111,82,.06);
  border-radius: 10px;
}

.text_page--article .article_body blockquote p:last-child{
  margin-bottom: 0;
}

/* таблицы */
.text_page--article .article_body table{
  width: 100%;
  border-collapse: collapse;
  margin: 1.4em 0;
  overflow: hidden;
  border-radius: 12px;
  background: #fff;
}

.text_page--article .article_body th,
.text_page--article .article_body td{
  border: 1px solid rgba(31,42,32,.1);
  padding: 12px 14px;
  text-align: left;
}

.text_page--article .article_body th{
  background: rgba(59,111,82,.08);
  font-weight: 700;
}

/* изображения */
.text_page--article .article_body img{
  display: block;
  max-width: 100%;
  height: auto;
  margin: 1.4em auto;
  border-radius: 14px;
  box-shadow: 0 10px 24px rgba(20,30,22,.08);
}

/* выделение */
.text_page--article .article_body strong,
.text_page--article .article_body b{
  font-weight: 700;
  color: #182119;
}

.text_page--article .article_body em{
  font-style: italic;
  color: #3e4a41;
}

/* код/вставки */
.text_page--article .article_body code{
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: .92em;
  padding: 2px 6px;
  border-radius: 6px;
  background: rgba(31,42,32,.06);
}

/* мобильная версия */
@media (max-width: 767px){
  .text_page--article{
    padding: 18px 0 28px;
  }

  .text_page--article .container{
    width: min(calc(100% - 24px), 980px);
  }

  .text_page--article .article_shell{
    padding: 18px;
    border-radius: 16px;
  }

  .text_page--article .article_header h3{
    font-size: 28px;
  }

  .text_page--article .article_body,
  .text_page--article .article_body p,
  .text_page--article .article_body li,
  .text_page--article .article_body span,
  .text_page--article .article_body td,
  .text_page--article .article_body th{
    font-size: 16px;
    line-height: 1.75;
  }
}

.archive_year__toggle,
.archive_year__toggle .archive_year__title{
  color: #fff !important;
}

.content_layout--home{
  display: grid;
  grid-template-columns: minmax(0, 1fr) 240px;
  gap: 28px;
  align-items: center; /* центрирует колонки по вертикали */
}

.content_layout__main{
  min-width: 0;
}

.content_layout__sidebar{
  width: 100%;
  align-self: center;   /* сам sidebar по центру */
}

.content_layout--home .sidebar_menu{
  position: static;
  top: auto;
}

/* CONTACTS PAGE */
.contacts_page{
  padding: 28px 0 40px;
}

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

.contacts_shell{
  background: rgba(255,255,255,.9);
  border: 1px solid rgba(31,42,32,.08);
  border-radius: 20px;
  box-shadow: 0 10px 28px rgba(20,30,22,.06);
  padding: 28px;
}

.contacts_page .title{
  margin-bottom: 22px;
}

.contacts_layout{
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(300px, .8fr);
  gap: 24px;
  align-items: stretch;
}

.contacts_layout .map_frame{
  min-height: 420px;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(31,42,32,.08);
  box-shadow: 0 8px 20px rgba(20,30,22,.06);
  background: #edf1eb;
}

.contacts_layout .map_frame iframe{
  width: 100%;
  height: 100%;
  min-height: 420px;
  display: block;
}

.contacts_info{
  background: rgba(59,111,82,.06);
  border: 1px solid rgba(59,111,82,.1);
  border-radius: 18px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.contacts_info__title{
  font-family: "Noto Serif", "Times New Roman", serif;
  font-size: 28px;
  font-weight: 700;
  line-height: 1.15;
  color: #182119;
}

.contacts_text{
  font-family: "Noto Sans", Arial, sans-serif;
  font-size: 18px;
  line-height: 1.75;
  color: #2f3a31;
}

.contacts_text strong{
  color: #182119;
  font-weight: 700;
}

.contacts_text a{
  color: #1f5f45;
  font-weight: 600;
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 3px;
}

.contacts_text a + a{
  margin-left: 10px;
}

@media (max-width: 991px){
  .contacts_layout{
    grid-template-columns: 1fr;
  }

  .contacts_layout .map_frame,
  .contacts_layout .map_frame iframe{
    min-height: 320px;
  }
}

@media (max-width: 767px){
  .contacts_page{
    padding: 18px 0 28px;
  }

  .contacts_page .container{
    width: min(calc(100% - 24px), 1180px);
  }

  .contacts_shell{
    padding: 18px;
  }

  .contacts_info{
    padding: 18px;
  }

  .contacts_info__title{
    font-size: 24px;
  }

  .contacts_text{
    font-size: 16px;
  }
}

.contacts_text a{
  display: inline-block;
}

.contacts_text a + a{
  display: block;
  margin-left: 0;
  margin-top: 6px;
}

.contacts_text a{
  display: block;
  width: fit-content;
  margin-top: 6px;
}

/* =========================
   PARTNERS MARQUEE
   ========================= */

.section--logos .logos_marquee{
  overflow: hidden;
  width: 100%;
  position: relative;
}

.section--logos .logos_track{
  display: flex;
  align-items: center;
  gap: 18px;
  width: max-content;
  animation: partners-marquee 40s linear infinite;
  will-change: transform;
}

.section--logos .logo_card{
  flex: 0 0 220px;
  min-height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 18px;
  background: rgba(255,255,255,.88);
  border: 1px solid rgba(31,42,32,.08);
  border-radius: 16px;
  box-shadow: 0 10px 24px rgba(20,30,22,.05);
}

.section--logos .logo_card img{
  display: block;
  max-width: 100%;
  max-height: 64px;
  width: auto;
  height: auto;
  object-fit: contain;
}

@keyframes partners-marquee{
  from{
    transform: translateX(0);
  }
  to{
    transform: translateX(calc(-50% - 9px));
  }
}

.section--logos .logos_marquee:hover .logos_track{
  animation-play-state: paused;
}

@media (max-width: 767px){
  .section--logos .logo_card{
    flex: 0 0 180px;
    min-height: 100px;
    padding: 14px;
  }

  .section--logos .logo_card img{
    max-height: 52px;
  }

  .section--logos .logos_track{
    gap: 14px;
  }

  @keyframes partners-marquee{
    from{
      transform: translateX(0);
    }
    to{
      transform: translateX(calc(-50% - 7px));
    }
  }
}

@media (prefers-reduced-motion: reduce){
  .section--logos .logos_track{
    animation: none;
  }
}

.hero__cta,
.hero__cta span{
  font-weight: 700 !important;
}