:root {
  --color-primary: #404e95;
  --color-primary-dark: #283468;
  --color-primary-soft: rgba(64, 78, 149, 0.08);
  --color-accent: #6574b8;
  --color-text: #1f2430;
  --color-text-soft: #5f6878;
  --color-white: #ffffff;
  --color-surface: #f6f8fd;
  --color-surface-2: #eef2fb;
  --color-border: rgba(64, 78, 149, 0.12);
  --color-shadow: rgba(27, 41, 88, 0.1);
  --radius-xl: 1rem;
  --radius-lg: 1rem;
  --radius-md: 1rem;
  --radius-sm: 0.8rem;
  --container-width: 90%;
  --container-max: 78rem;
  --transition: all 0.3s ease;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", Arial, sans-serif;
  color: var(--color-text);
  background:
    radial-gradient(circle at top left, rgba(64, 78, 149, 0.14), transparent 26%),
    linear-gradient(180deg, #f7f8fd 0%, #f1f3fb 40%, #ffffff 100%);
}

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

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

button,
input,
textarea,
select {
  font: inherit;
}

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

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

.site-shell {
  display: flex;
  min-height: 100vh;
  flex-direction: column;
}

.container {
  width: var(--container-width);
  max-width: var(--container-max);
  margin: 0 auto;
}

.topbar {
  background: var(--color-primary);
  color: rgba(255, 255, 255, 0.88);
}

.topbar__inner,
.topbar__brand,
.topbar__contact,
.navbar__inner,
.navbar__logo,
.navbar__logo-text,
.navbar__menu,
.hero-slide__content,
.hero-actions,
.hero-panel__stats,
.hero-swiper__controls,
.hero-swiper__nav,
.overview-strip,
.card-list,
.culture-band,
.tag-row,
.news-toolbar,
.guide-layout,
.accordion,
.accordion__trigger,
.media-layout,
.media-layout__gallery,
.footer__inner,
.footer__links {
  display: flex;
}

.topbar__inner {
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.7rem 0;
}

.topbar__brand,
.topbar__contact {
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.78rem;
}

.navbar {
  position: sticky;
  top: 0;
  z-index: 30;
  background: transparent;
  border-bottom: none;
  transition: var(--transition);
}

.navbar.is-scrolled {
  box-shadow: none;
}

.navbar__top-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 0.95rem 0;
  max-width: 80rem;
}

.navbar__top {
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 0.06rem solid rgba(64, 78, 149, 0.08);
  backdrop-filter: blur(1rem);
}

.navbar__bar {
  background: var(--color-primary);
}

.navbar__bar-inner {
  position: relative;
  padding: 0.55rem 0;
  max-width: 80rem;
}

.navbar.is-scrolled .navbar__top,
.navbar.is-scrolled .navbar__bar {
  box-shadow: 0 0.8rem 2rem rgba(33, 47, 94, 0.12);
}

.navbar__logo {
  align-items: center;
  gap: 0.85rem;
  min-width: 0;
  width: 38%;
}

.navbar__logo-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--color-primary) 0%, #5b6ab1 100%);
  color: var(--color-white);
  font-size: 1rem;
  font-weight: 800;
  box-shadow: 0 0.8rem 1.8rem rgba(64, 78, 149, 0.22);
}

.navbar__logo-text {
  flex-direction: column;
  gap: 0.15rem;
}

.navbar__logo-text strong {
  font-size: 1rem;
}

.navbar__logo-text small {
  font-size: 0.8rem;
  color: var(--color-text-soft);
}

.navbar__actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.navbar__lang {
  padding: 0.55rem 0.9rem;
  border-radius: 0.85rem;
  background: var(--color-primary);
  color: var(--color-white);
  font-weight: 800;
  font-size: 0.85rem;
  box-shadow: 0 0.7rem 1.6rem rgba(64, 78, 149, 0.22);
}

.navbar__lang:hover,
.navbar__lang:focus-visible {
  filter: brightness(1.05);
  transform: translateY(-0.06rem);
}

.navbar__menu {
  align-items: center;
  flex-wrap: wrap;
  gap: 0.25rem;
  justify-content: space-between;
}

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

.navbar__link {
  position: relative;
  font-size: 0.92rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.92);
  padding: 0.55rem 0.9rem;
  transition: var(--transition);
}

.navbar__link:focus {
  outline: none;
}

.navbar__link::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0.25rem;
  width: 70%;
  height: 0.14rem;
  border-radius: 99rem;
  background: rgba(255, 255, 255, 0.92);
  transform: translateX(-50%) scaleX(0);
  transform-origin: center;
  transition: transform 0.3s ease;
}

.navbar__item:hover > .navbar__link::after,
.navbar__item:focus-within > .navbar__link::after,
.navbar__link:focus-visible::after {
  transform: translateX(-50%) scaleX(1);
}

.navbar__dropdown {
  position: absolute;
  top: calc(100% + 0.65rem);
  left: 50%;
  min-width: 14rem;
  padding: 0.45rem;
  border-radius: 1rem;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 1.2rem 2.6rem rgba(20, 27, 55, 0.18);
  border: 0.06rem solid rgba(64, 78, 149, 0.12);
  transform: translate(-50%, 0.35rem);
  opacity: 0;
  pointer-events: none;
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  z-index: 50;
  transition: opacity 0.18s ease, transform 0.22s ease;
}

.navbar__dropdown::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: -0.65rem;
  height: 0.65rem;
  background: transparent;
}

.navbar__item:hover > .navbar__dropdown,
.navbar__item:focus-within > .navbar__dropdown {
  transform: translate(-50%, 0);
  opacity: 1;
  pointer-events: auto;
}

.navbar__dropdown a {
  color: var(--color-text);
  font-weight: 700;
  font-size: 0.9rem;
  padding: 0.65rem 0.75rem;
  border-radius: 0.85rem;
  transition: var(--transition);
}

.navbar__dropdown a:hover,
.navbar__dropdown a:focus-visible {
  outline: none;
  background: rgba(64, 78, 149, 0.1);
}

.navbar__toggle {
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  --toggle-gap: 0.35rem;
  --toggle-line: 0.14rem;
  gap: 0.35rem;
}

.navbar__toggle span {
  display: block;
  width: 1.7rem;
  height: var(--toggle-line);
  border-radius: 99rem;
  background: var(--color-primary);
  transition: transform 0.22s ease, opacity 0.18s ease;
  transform-origin: center;
}

.navbar__toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(calc(var(--toggle-line) + var(--toggle-gap))) rotate(45deg);
}

.navbar__toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.navbar__toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(calc(-1 * (var(--toggle-line) + var(--toggle-gap)))) rotate(-45deg);
}

.hero {
  position: relative;
}

.hero::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 3.2rem;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 120' preserveAspectRatio='none'%3E%3Cpath fill='%23f6f8fd' fill-opacity='0.94' d='M0,64 C160,112 320,112 480,88 C640,64 800,16 960,16 C1120,16 1280,64 1440,40 L1440,120 L0,120 Z'/%3E%3C/svg%3E") center bottom / 100% 100% no-repeat;
  pointer-events: none;
  z-index: 6;
  filter: none;
}

.page-news-list .hero::after,
.page-news-detail .hero::after {
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 120' preserveAspectRatio='none'%3E%3Cpath fill='%23f2f4fb' d='M0,64 C160,112 320,112 480,88 C640,64 800,16 960,16 C1120,16 1280,64 1440,40 L1440,120 L0,120 Z'/%3E%3C/svg%3E") center bottom / 100% 100% no-repeat;
}

.hero-swiper {
  width: 100%;
}

.hero-slide {
  position: relative;
  min-height: 44rem;
}

.hero-slide > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-slide__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(100deg, rgba(19, 29, 70, 0.86) 10%, rgba(41, 57, 116, 0.62) 46%, rgba(64, 78, 149, 0.25) 100%);
}

.hero-slide__content {
  position: relative;
  z-index: 2;
  min-height: 44rem;
  align-items: flex-end;
  justify-content: space-between;
  gap: 2rem;
  padding: 7rem 0 8rem;
}

.hero-copy {
  max-width: 43rem;
  color: var(--color-white);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.55rem 1rem;
  border-radius: 99rem;
  background: var(--color-primary-soft);
  color: var(--color-primary);
  font-size: 0.98rem;
  font-weight: 700;
  letter-spacing: 0.08rem;
  text-transform: uppercase;
}

.eyebrow--light {
  background: rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.94);
}

.hero-copy h1,
.hero-copy h2 {
  margin: 1rem 0 1rem;
  font-size: clamp(2.35rem, 5vw, 4.5rem);
  line-height: 1.1;
  letter-spacing: -0.04rem;
}

.hero-copy p {
  max-width: 38rem;
  margin: 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: 1rem;
  line-height: 1.85;
}

.hero-actions {
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 1.75rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 10.5rem;
  padding: 0.95rem 1.5rem;
  border-radius: 99rem;
  font-size: 0.95rem;
  font-weight: 700;
  transition: var(--transition);
}

.button--primary {
  background: var(--color-white);
  color: var(--color-primary);
  box-shadow: 0 1rem 2.2rem rgba(8, 14, 34, 0.2);
}

.button--primary:hover,
.button--primary:focus-visible {
  transform: translateY(-0.2rem);
}

.button--ghost {
  border: 0.06rem solid rgba(255, 255, 255, 0.34);
  background: rgba(255, 255, 255, 0.08);
  color: var(--color-white);
}

.button--ghost:hover,
.button--ghost:focus-visible {
  background: rgba(255, 255, 255, 0.16);
}

.card,
.specialist-card,
.overview-card,
.featured-news {
  border: 0.06rem solid var(--color-border);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 1rem 2.4rem var(--color-shadow);
}

.card {
  padding: 1.6rem;
  transition: var(--transition);
}

.card:hover,
.specialist-card:hover,
.overview-card:hover,
.featured-news:hover {
  transform: translateY(-0.28rem);
  box-shadow: 0 1.2rem 2.6rem rgba(27, 41, 88, 0.14);
}

.card--dark {
  background: rgba(12, 18, 45, 0.44);
  border-color: rgba(255, 255, 255, 0.16);
  box-shadow: none;
  backdrop-filter: blur(0.8rem);
}

.hero-panel {
  width: 100%;
  max-width: 21rem;
  color: var(--color-white);
}

.hero-panel__item + .hero-panel__item {
  margin-top: 1rem;
}

.hero-panel__label {
  display: inline-flex;
  margin-bottom: 0.55rem;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.05rem;
}

.hero-panel__item strong {
  display: block;
  line-height: 1.6;
  font-size: 1rem;
}

.hero-panel__stats {
  gap: 0.8rem;
  margin-top: 1.3rem;
}

.stat-card {
  display: flex;
  flex: 1 1 0;
  flex-direction: column;
  gap: 0.3rem;
  padding: 1rem;
  border-radius: var(--radius-md);
  background: rgba(64, 78, 149, 0.06);
}

.stat-card--dark {
  background: rgba(255, 255, 255, 0.08);
}

.stat-card__value {
  font-size: 2rem;
  font-weight: 800;
  color: inherit;
}

.stat-card__label {
  color: inherit;
  opacity: 0.8;
  font-size: 0.84rem;
}

.hero-swiper__controls {
  position: absolute;
  left: 50%;
  bottom: 2rem;
  z-index: 4;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  transform: translateX(-50%);
}

.swiper-pagination {
  position: static !important;
  display: flex;
  gap: 0.6rem;
}

.swiper-pagination-bullet {
  width: 0.7rem;
  height: 0.7rem;
  opacity: 1;
  background: rgba(255, 255, 255, 0.42);
}

.swiper-pagination-bullet-active {
  background: var(--color-white);
}

.hero-swiper__nav {
  gap: 0.75rem;
}

.swiper-button-prev,
.swiper-button-next {
  position: static;
  width: 3rem;
  height: 3rem;
  margin: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  border: 0.06rem solid rgba(255, 255, 255, 0.2);
  color: var(--color-white);
}

.swiper-button-prev::after,
.swiper-button-next::after {
  font-size: 0.95rem;
  font-weight: 700;
}

.overview {
  position: relative;
  z-index: 5;
  margin-top: 0;
  padding: 0 0 1rem;
  background: #eaebef;
}

.overview-strip {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  gap: 1.1rem;
}

.overview-card {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  flex: 1 1 clamp(14.5rem, 22vw, 18.5rem);
  padding: 1.1rem 1.1rem;
  min-height: 4.8rem;
  border-radius: 1.35rem;
  border: 0.06rem solid rgba(255, 255, 255, 0.14);
  background: linear-gradient(135deg, var(--overview-bg-1), var(--overview-bg-2));
  color: rgba(255, 255, 255, 0.92);
  box-shadow:
    0 1rem 2.2rem rgba(20, 27, 55, 0.14),
    0 0 0 0.06rem rgba(255, 255, 255, 0.08);
  position: relative;
  overflow: hidden;
  isolation: isolate;
  transition: var(--transition);
}

.overview-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 22% 20%, rgba(255, 255, 255, 0.18), transparent 44%),
    radial-gradient(circle at 90% 16%, rgba(255, 255, 255, 0.12), transparent 42%),
    linear-gradient(90deg, rgba(255, 255, 255, 0.08), transparent 45%),
    repeating-linear-gradient(135deg, rgba(255, 255, 255, 0.06) 0 0.6rem, transparent 0.6rem 1.2rem);
  opacity: 0.65;
  pointer-events: none;
}

.overview-card::after {
  content: "";
  position: absolute;
  inset: -80% -60%;
  background: linear-gradient(115deg, transparent 42%, rgba(255, 255, 255, 0.24) 50%, transparent 58%);
  transform: translateX(-35%) rotate(18deg);
  opacity: 0.32;
  animation: overview-sheen 7s linear infinite;
  pointer-events: none;
  z-index: 0;
}

.overview-card:hover,
.overview-card:focus-visible {
  transform: translateY(-0.18rem);
  box-shadow:
    0 1.25rem 2.8rem rgba(20, 27, 55, 0.22),
    0 0 0 0.06rem rgba(255, 255, 255, 0.12),
    0 0 1.3rem var(--overview-glow, rgba(255, 255, 255, 0.18));
}

.overview-card__icon {
  width: 2.6rem;
  height: 2.6rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 1.05rem;
  background: rgba(255, 255, 255, 0.14);
  border: 0.06rem solid rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(0.6rem);
  flex: 0 0 auto;
  position: relative;
  z-index: 1;
}

.overview-card__icon::after {
  content: "";
  position: absolute;
  inset: -0.2rem;
  border-radius: 1.2rem;
  background: radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.25), transparent 60%);
  opacity: 0.8;
  pointer-events: none;
}

.overview-card__icon svg {
  width: 1.35rem;
  height: 1.35rem;
  display: block;
  color: rgba(255, 255, 255, 0.92);
}

.overview-card__title {
  display: inline-flex;
  align-items: center;
  margin-bottom: 0;
  font-size: 1.02rem;
  font-weight: 800;
  letter-spacing: 0.02rem;
  color: rgba(255, 255, 255, 0.94);
  position: relative;
  z-index: 1;
}

.overview-card--blue {
  --overview-bg-1: rgba(64, 78, 149, 0.96);
  --overview-bg-2: rgba(106, 122, 196, 0.94);
  --overview-glow: rgba(64, 78, 149, 0.55);
}

.overview-card--green {
  --overview-bg-1: rgba(46, 164, 129, 0.94);
  --overview-bg-2: rgba(76, 196, 156, 0.92);
  --overview-glow: rgba(46, 164, 129, 0.5);
}

.overview-card--purple {
  --overview-bg-1: rgba(125, 47, 148, 0.94);
  --overview-bg-2: rgba(167, 74, 182, 0.92);
  --overview-glow: rgba(167, 74, 182, 0.5);
}

.overview-card--indigo {
  --overview-bg-1: rgba(44, 58, 132, 0.95);
  --overview-bg-2: rgba(64, 78, 149, 0.92);
  --overview-glow: rgba(106, 122, 196, 0.45);
}

.overview-card--teal {
  --overview-bg-1: rgba(36, 142, 163, 0.94);
  --overview-bg-2: rgba(74, 186, 201, 0.9);
  --overview-glow: rgba(74, 186, 201, 0.45);
}

.overview-card--orange {
  --overview-bg-1: rgba(216, 123, 45, 0.94);
  --overview-bg-2: rgba(241, 165, 72, 0.9);
  --overview-glow: rgba(241, 165, 72, 0.45);
}

.overview-card--pink {
  --overview-bg-1: rgba(197, 58, 112, 0.94);
  --overview-bg-2: rgba(235, 98, 146, 0.9);
  --overview-glow: rgba(235, 98, 146, 0.45);
}

@keyframes overview-sheen {
  0% {
    transform: translateX(-35%) rotate(18deg);
  }
  55% {
    transform: translateX(35%) rotate(18deg);
  }
  100% {
    transform: translateX(35%) rotate(18deg);
  }
}

@media (prefers-reduced-motion: reduce) {
  .overview-card::after {
    animation: none;
  }
}

.overview-card p,
.section-heading p,
.card p,
.specialist-card p,
.featured-news p,
.accordion__content p,
.guide-panel li,
figcaption {
  margin: 0;
  color: var(--color-text-soft);
  font-size: 0.96rem;
  line-height: 1.8;
}

.section {
  padding: 3.5rem 0;
}

.page-news-detail .section,
.page-news-list .section {
  padding: 1.2rem 0;
}

#specialists {
padding: 3.5rem 0 0 0;
}

.section--soft {
  background: linear-gradient(180deg, rgba(64, 78, 149, 0.03) 0%, rgba(64, 78, 149, 0.07) 100%);
}

.section--contrast {
  background:
    linear-gradient(120deg, rgba(32, 40, 84, 0.96) 0%, rgba(64, 78, 149, 0.92) 100%),
    url("../res/910084.png") center center / cover no-repeat;
}

.section--media {
  background: linear-gradient(180deg, #fafbff 0%, #f1f3fb 100%);
}

.section-heading {
  max-width: 48rem;
  margin-bottom: 2.2rem;
}

.section-heading--row {
  max-width: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.section-viewmore {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  height: 2.45rem;
  padding: 0 1rem;
  border-radius: 99rem;
  border: 0.06rem solid rgba(64, 78, 149, 0.18);
  background: rgba(255, 255, 255, 0.92);
  color: var(--color-primary);
  font-weight: 900;
  font-size: 0.88rem;
  transition: var(--transition);
}

.section-viewmore::after {
  content: "›";
  font-size: 1.25rem;
  line-height: 1;
}

.section-viewmore:hover,
.section-viewmore:focus-visible {
  transform: translateY(-0.06rem);
  background: rgba(64, 78, 149, 0.92);
  border-color: transparent;
  color: var(--color-white);
}

.section-viewmore:focus {
  outline: none;
}

.section-heading--light h2,
.section-heading--light p {
  color: var(--color-white);
}

.section-heading h2 {
  margin: 1rem 0 0.9rem;
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1.18;
  letter-spacing: -0.03rem;
}

.card-list {
  gap: 1.25rem;
  flex-wrap: wrap;
}

.card-list--three > article {
  flex: 1 1 21rem;
}

.card-list--four > article {
  flex: 1 1 16rem;
}

.card-list--news > article {
  flex: 1 1 20rem;
}

.card-list--specialists > article {
  flex: 1 1 17rem;
}

.card h3,
.specialist-card h3,
.guide-panel h3,
.featured-news h3 {
  margin: 0 0 0.8rem;
  font-size: 1.28rem;
  line-height: 1.35;
}

.culture-split {
  display: flex;
  flex-direction: row-reverse;
  align-items: center;
  gap: 3.2rem;
}

.culture-media {
  position: relative;
  margin: 0;
  flex: 0 0 clamp(19rem, 34vw, 29rem);
  border-radius: 2.2rem;
  padding: 0.85rem;
  background: rgba(255, 255, 255, 0.96);
  border: 0.06rem solid rgba(64, 78, 149, 0.12);
  box-shadow: 0 1.2rem 2.4rem rgba(27, 41, 88, 0.12);
  overflow: hidden;
}

.culture-media img {
  border-radius: 1.7rem;
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

.culture-more {
  position: absolute;
  right: 1.2rem;
  bottom: 1.2rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.55rem 0.85rem;
  border-radius: 99rem;
  background: rgba(255, 255, 255, 0.98);
  border: 0.06rem solid rgba(64, 78, 149, 0.2);
  color: var(--color-primary);
  font-weight: 800;
  font-size: 0.85rem;
  box-shadow: 0 0.9rem 1.8rem rgba(27, 41, 88, 0.12);
  transition: var(--transition);
}

.culture-more:hover,
.culture-more:focus-visible {
  transform: translateY(-0.12rem);
}

.culture-content {
  flex: 1 1 0;
}

.culture-content h2 {
  margin: 1rem 0 1.1rem;
  font-size: clamp(2.2rem, 4vw, 2.2rem);
  line-height: 1.15;
  letter-spacing: -0.03rem;
}

.culture-content p {
  margin: 0;
  color: var(--color-text-soft);
  font-size: 1rem;
  line-height: 1.85;
}

.culture-stats {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.1rem;
  margin-top: 2.1rem;
}

.culture-stat {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  padding: 0.95rem 1rem;
  border-radius: 1.35rem;
  background: rgba(255, 255, 255, 0.92);
  border: 0.06rem solid rgba(64, 78, 149, 0.12);
  box-shadow: 0 0.9rem 2rem rgba(27, 41, 88, 0.1);
}

.culture-stat__icon {
  width: 3.1rem;
  height: 3.1rem;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--color-primary);
  background: rgba(64, 78, 149, 0.08);
  border: 0.14rem solid rgba(64, 78, 149, 0.28);
  flex: 0 0 auto;
}

.culture-stat__icon svg {
  width: 1.4rem;
  height: 1.4rem;
  display: block;
}

.culture-stat__meta {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  min-width: 0;
}

.culture-stat__value {
  font-size: 1.55rem;
  font-weight: 900;
  color: var(--color-primary);
  line-height: 1;
}

.culture-stat__label {
  font-size: 0.88rem;
  color: var(--color-text-soft);
  font-weight: 700;
}

.culture-band {
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  margin-top: 1.3rem;
  padding: 1.7rem 1.8rem;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, rgba(64, 78, 149, 0.97) 0%, rgba(84, 98, 171, 0.96) 100%);
  color: var(--color-white);
}

.culture-band__content {
  max-width: 34rem;
}

.culture-band__content h3 {
  margin: 0 0 0.7rem;
  font-size: 1.35rem;
}

.culture-band__content p {
  color: rgba(255, 255, 255, 0.84);
}

.tag-row {
  flex-wrap: wrap;
  gap: 0.7rem;
}

.tag-row span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.65rem 1rem;
  border-radius: 99rem;
  background: rgba(255, 255, 255, 0.16);
  color: var(--color-white);
  font-size: 0.84rem;
  font-weight: 700;
}

.news-hub {
  display: flex;
  align-items: stretch;
  gap: 1.35rem;
}

.news-slider {
  flex: 1.05 1 0;
  min-width: 0;
}

.news-swiper {
  position: relative;
  height: 100%;
  min-height: 24rem;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: 0 1.4rem 3rem rgba(27, 41, 88, 0.16);
}

.news-slide {
  position: relative;
  height: 100%;
  min-height: 24rem;
}

.news-slide img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.news-slide__mask {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(8, 12, 28, 0) 70%, rgba(8, 12, 28, 0.35) 100%);
  z-index: 1;
}

.news-glass {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: clamp(3.2rem, 32%, 2.5rem);
  z-index: 4;
  overflow: hidden;
  background: linear-gradient(to top, rgba(3, 12, 28, 0.82), rgba(3, 12, 28, 0));
}

.news-glass__title {
  position: absolute;
  left: 1.25rem;
  right: 5rem;
  bottom: 1.1rem;
  margin: 0;
  color: rgba(255, 255, 255, 0.96);
  font-size: 0.95rem;
  font-weight: 800;
  line-height: 1.25;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  z-index: 1;
}

.news-button-prev,
.news-button-next {
  position: absolute;
  top: 50%;
  width: 3rem;
  height: 3rem;
  margin-top: -1.5rem;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.16);
  border: 0.06rem solid rgba(255, 255, 255, 0.2);
  color: var(--color-white);
  z-index: 3;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(0.9rem);
}

.news-button-prev {
  left: 1rem;
}

.news-button-next {
  right: 1rem;
}

.news-button-prev::after,
.news-button-next::after {
  font-size: 0.95rem;
  font-weight: 800;
}

.news-pagination {
  display: flex;
  justify-content: flex-end;
  gap: 0;
  align-items: center;
  flex: 0 0 auto;
  position: absolute;
  right: 1.25rem;
  top: 50% !important;
  transform: translateY(-50%);
  z-index: 1;
  left: auto !important;
}

.news-pagination .swiper-pagination-bullet {
  width: 0.55rem;
  height: 0.55rem;
  opacity: 1;
  background: rgba(255, 255, 255, 0.5);
  border-radius: 99rem;
  transition: width 0.25s ease, background 0.25s ease, opacity 0.25s ease;
}

.news-pagination .swiper-pagination-bullet-active {
  background: rgba(255, 255, 255, 0.98);
  width: 2.2rem;
}

.news-panel {
  flex: 0.95 1 0;
  min-width: 0;
  padding: 1.25rem 1.2rem;
  border-radius: var(--radius-xl);
  border: 0.06rem solid rgba(64, 78, 149, 0.12);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 1.2rem 2.6rem rgba(27, 41, 88, 0.12);
}

.news-panel__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding-bottom: 0.75rem;
  border-bottom: 0.06rem solid rgba(64, 78, 149, 0.12);
}

.news-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.news-tabs .news-filter {
  padding: 0.1rem 0;
  border-radius: 0;
  border: none;
  background: transparent;
  color: var(--color-text-soft);
  font-size: 0.92rem;
  font-weight: 800;
  position: relative;
  transition: var(--transition);
}

.news-tabs .news-filter:focus {
  outline: none;
}

.news-tabs .news-filter::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -0.55rem;
  height: 0.14rem;
  border-radius: 99rem;
  background: var(--color-primary);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.28s ease;
}

.news-tabs .news-filter.is-active {
  color: var(--color-primary);
}

.news-tabs .news-filter.is-active::after {
  transform: scaleX(1);
}

.news-viewall {
  color: var(--color-primary);
  font-weight: 800;
  font-size: 0.9rem;
}

.news-list {
  display: flex;
  padding-top: 0.85rem;
}

.news-group {
  display: none;
  flex-direction: column;
  gap: 0.25rem;
  width: 100%;
}

.news-group.is-active {
  display: flex;
}

.news-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.75rem 0.75rem;
  border-radius: 1rem;
  color: var(--color-text);
  transition: var(--transition);
}

.news-card:hover,
.news-card:focus-visible {
  background: rgba(64, 78, 149, 0.08);
}

.news-card__title {
  flex: 1 1 auto;
  font-weight: 700;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.news-card__date {
  flex: 0 0 auto;
  font-size: 0.86rem;
  color: var(--color-text-soft);
  white-space: nowrap;
}

.news-extra-cards {
  display: flex;
  gap: 1.25rem;
  margin-top: 1.35rem;
}

.news-extra-card {
  position: relative;
  flex: 1 1 0;
  min-height: 14.25rem;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 0.06rem solid rgba(64, 78, 149, 0.12);
  background: rgba(255, 255, 255, 0.96);
  transition: var(--transition);
}

.news-extra-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.02);
  transition: transform 0.6s ease;
}

.news-extra-card__mask {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(8, 12, 28, 0.06) 35%, rgba(8, 12, 28, 0.8) 100%);
}

.news-extra-card__content {
  position: absolute;
  left: 1.05rem;
  right: 1.05rem;
  bottom: 0.95rem;
  color: rgba(255, 255, 255, 0.94);
}

.news-extra-card__content h3 {
  margin: 0 0 0.35rem;
  font-size: 1.05rem;
  font-weight: 900;
  letter-spacing: 0.01rem;
}

.news-extra-card__content p {
  margin: 0;
  font-size: 0.86rem;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.82);
}

.news-extra-card:hover,
.news-extra-card:focus-visible {
  transform: translateY(-0.18rem);
}

.news-extra-card:hover img,
.news-extra-card:focus-visible img {
  transform: scale(1.07);
}

.news-extra-card:focus {
  outline: none;
}

.experts-carousel {
  position: relative;
}

#experts {
  position: relative;
  background: url("./res/bg_20260604.png") center / cover no-repeat;
}

#experts::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(246, 248, 253, 0.50);
  pointer-events: none;
}

#experts > .container {
  position: relative;
  z-index: 1;
}

.experts-swiper {
  padding: 0.2rem 0 0.3rem;
}

.experts-swiper .swiper-wrapper {
  align-items: stretch;
}

.experts-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.25rem;
}

.expert-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  gap: 0.55rem;
  padding: 1.6rem 1.25rem 1.4rem;
  border-radius: 1.35rem;
  background: rgba(255, 255, 255, 0.96);
  border: 0.06rem solid rgba(64, 78, 149, 0.12);
  text-align: center;
  transition: var(--transition);
}

.expert-card:hover,
.expert-card:focus-visible {
  transform: translateY(-0.18rem);
  border-color: rgba(64, 78, 149, 0.32);
  background: rgba(255, 255, 255, 0.98);
}

.expert-card:focus {
  outline: none;
}

.expert-avatar {
  width: 8.25rem;
  height: 8.25rem;
  border-radius: 50%;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  background:
    radial-gradient(circle at 30% 28%, rgba(255, 255, 255, 0.75), transparent 58%),
    linear-gradient(135deg, rgba(64, 78, 149, 1) 0%, rgba(101, 116, 184, 1) 100%);
  border: 0.15rem solid rgba(64, 78, 149, 0.14);
  color: rgba(255, 255, 255, 0.95);
  font-weight: 900;
  letter-spacing: 0.04rem;
  font-size: 1.1rem;
  overflow: hidden;
}

.expert-avatar img {
  width: 100%;
  object-fit: cover;
}

.expert-name {
  margin: 0.2rem 0 0;
  font-size: 1.25rem;
  line-height: 1.25;
}

.expert-role {
  font-weight: 800;
  color: var(--color-primary);
  font-size: 0.88rem;
}

.expert-dept {
  font-weight: 700;
  color: var(--color-text-soft);
  font-size: 0.9rem;
  transition: var(--transition);
}

.expert-card:hover .expert-avatar,
.expert-card:focus-visible .expert-avatar {
  transform: scale(1.03);
  border-color: rgba(64, 78, 149, 0.22);
}

.experts-pagination {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 1.05rem;
}

.experts-pagination .swiper-pagination-bullet {
  width: 0.5rem;
  height: 0.5rem;
  opacity: 1;
  border-radius: 99rem;
  background: rgba(64, 78, 149, 0.25);
  transition: width 0.25s ease, background 0.25s ease;
}

.experts-pagination .swiper-pagination-bullet-active {
  width: 2rem;
  background: rgba(64, 78, 149, 0.9);
}

.experts-nav {
  position: absolute;
  top: 50%;
  width: 2.9rem;
  height: 2.9rem;
  margin-top: -1.45rem;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.92);
  border: 0.06rem solid rgba(64, 78, 149, 0.16);
  box-shadow: 0 1rem 2.2rem rgba(27, 41, 88, 0.12);
  color: var(--color-text);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  z-index: 5;
}

.experts-nav--prev {
  left: -0.35rem;
}

.experts-nav--next {
  right: -0.35rem;
}

.experts-nav--prev::after,
.experts-nav--next::after {
  font-size: 1rem;
  font-weight: 900;
}

.experts-nav--prev::after {
  content: "‹";
}

.experts-nav--next::after {
  content: "›";
}

.experts-nav {
  display: none;
}

.news-card__meta,
.guide-panel__label,
.specialist-card__role {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.9rem;
  padding: 0.45rem 0.78rem;
  border-radius: 99rem;
  background: rgba(64, 78, 149, 0.08);
  color: var(--color-primary);
  font-size: 0.78rem;
  font-weight: 700;
}

.department-card {
  position: relative;
  overflow: hidden;
}

.department-card::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 0.25rem;
  background: linear-gradient(90deg, var(--color-primary) 0%, var(--color-accent) 100%);
}

.specialist-card {
  padding: 1.7rem;
  border: 0.06rem solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.1);
  color: var(--color-white);
  backdrop-filter: blur(0.8rem);
  transition: var(--transition);
}

.specialist-card strong {
  display: block;
  margin-bottom: 0.8rem;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.92rem;
}

.specialist-card p {
  color: rgba(255, 255, 255, 0.78);
}

.guide-layout {
  gap: 1.25rem;
  align-items: flex-start;
}

.accordion {
  flex: 1 1 0;
  flex-direction: column;
  gap: 0.95rem;
}

.accordion__item {
  overflow: hidden;
  border: 0.06rem solid var(--color-border);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 0.8rem 2rem rgba(35, 49, 100, 0.08);
}

.accordion__trigger {
  width: 100%;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.3rem 1.45rem;
  text-align: left;
  color: var(--color-text);
  font-size: 1rem;
  font-weight: 700;
}

.accordion__trigger strong {
  color: var(--color-primary);
}

.accordion__content {
  display: none;
  padding: 0 1.45rem 1.35rem;
}

.accordion__item.is-open .accordion__content {
  display: block;
}

.guide-panel {
  flex: 0 0 22rem;
}

.guide-list {
  margin-top: 1rem;
}

.guide-list li {
  position: relative;
  padding-left: 1.15rem;
}

.guide-list li + li {
  margin-top: 0.8rem;
}

.guide-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.75rem;
  width: 0.45rem;
  height: 0.45rem;
  border-radius: 50%;
  background: var(--color-primary);
}

.media-layout {
  gap: 1.25rem;
  align-items: stretch;
}

.media-layout__video,
.media-layout__gallery {
  flex: 1 1 0;
}

.video-shell {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  background: rgba(0, 0, 0, 0.85);
}

.video-shell video {
  width: 100%;
  height: auto;
  display: block;
}

.video-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 0;
  padding: 0;
  cursor: pointer;
  background: linear-gradient(180deg, rgba(9, 12, 18, 0.18) 0%, rgba(9, 12, 18, 0.52) 100%);
  opacity: 1;
  transition: opacity 0.22s ease;
}

.video-overlay:focus {
  outline: none;
}

.video-overlay__icon {
  width: 4.25rem;
  height: 4.25rem;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.18);
  border: 0.12rem solid rgba(255, 255, 255, 0.38);
  display: grid;
  place-items: center;
  backdrop-filter: blur(8px);
  transition: transform 0.22s ease, background 0.22s ease, border-color 0.22s ease;
}

.video-overlay__icon::before {
  content: "";
  width: 0;
  height: 0;
  border-left: 0.95rem solid rgba(255, 255, 255, 0.92);
  border-top: 0.58rem solid transparent;
  border-bottom: 0.58rem solid transparent;
  margin-left: 0.18rem;
}

.video-overlay:hover .video-overlay__icon,
.video-overlay:focus-visible .video-overlay__icon {
  transform: scale(1.05);
  background: rgba(255, 255, 255, 0.22);
  border-color: rgba(255, 255, 255, 0.58);
}

.video-shell.is-playing .video-overlay {
  opacity: 0;
  pointer-events: none;
}

.media-layout__gallery {
  flex-direction: column;
  gap: 1.25rem;
}

figure {
  margin: 0;
}

figcaption {
  margin-top: 0.95rem;
}

.footer {
  margin-top: auto;
  background: linear-gradient(180deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
  color: var(--color-white);
}

.footer__inner {
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 2rem 0;
}

.footer__brand h2 {
  margin: 0 0 0.65rem;
  font-size: 1.2rem;
}

.footer__brand p {
  max-width: 34rem;
  margin: 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.92rem;
  line-height: 1.8;
}

.footer__links {
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 1rem;
}

.footer__links a {
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.9rem;
}

.footer__bottom {
  border-top: 0.06rem solid rgba(255, 255, 255, 0.14);
}

.footer__bottom-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.9rem 0;
  text-align: center;
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.82rem;
  letter-spacing: 0.01rem;
}

.page-hero {
  position: relative;
  padding: 2.6rem 0 2.2rem;
  background: #f6f8fd;
  overflow: hidden;
}

.page-hero__inner {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: flex-end;
  min-height: 12.5rem;
}

.page-hero--compact .page-hero__inner {
  min-height: 10.5rem;
}

.page-hero__content {
  max-width: 50rem;
}

.page-hero__content h1 {
  margin: 0.55rem 0 0;
  font-size: clamp(2.1rem, 3.2vw, 2.9rem);
  line-height: 1.08;
  letter-spacing: -0.01em;
}

.page-hero__content p {
  margin: 0.95rem 0 0;
  max-width: 36rem;
  color: var(--color-text-soft);
  line-height: 1.8;
  font-weight: 600;
}

.page-hero__media {
  position: absolute;
  inset: 0;
}

.page-hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(246, 248, 253, 0.96) 0%,
    rgba(246, 248, 253, 0.86) 44%,
    rgba(246, 248, 253, 0.44) 72%,
    rgba(246, 248, 253, 0) 100%
  );
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  margin: 0 0 1.25rem;
  font-weight: 700;
  font-size: 1.02rem;
  color: var(--color-text-soft);
}

.breadcrumb::before {
  content: "";
  width: 1rem;
  height: 1rem;
  flex: 0 0 auto;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23404e95' d='M12 2a7 7 0 0 0-7 7c0 5.2 7 13 7 13s7-7.8 7-13a7 7 0 0 0-7-7Zm0 10a3 3 0 1 1 0-6 3 3 0 0 1 0 6Z'/%3E%3C/svg%3E") center / contain no-repeat;
  margin-right: 0.15rem;
}

.breadcrumb a {
  color: var(--color-primary);
}

.listing-layout {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
}

.listing-sidebar {
  flex: 0 0 auto;
  width: 20rem;
}

.listing-main {
  flex: 1 1 0;
  min-width: 0;
  width: 100%;
}

.tree-panel {
  border-radius: var(--radius-lg);
  border: 0.06rem solid rgba(15, 20, 32, 0.08);
  background: rgba(255, 255, 255, 0.92);
  padding: 1.1rem 1.1rem;
  position: relative;
}

.tree-panel__title {
  font-weight: 900;
  color: var(--color-text);
  font-size: 1.05rem;
  text-align: center;
}

.tree-panel__menu-toggle {
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  --toggle-gap: 0.28rem;
  --toggle-line: 0.14rem;
  gap: 0.28rem;
  width: 2.05rem;
  height: 2.05rem;
  border-radius: 0.55rem;
  background: rgba(64, 78, 149, 0.08);
  border: 0.06rem solid rgba(64, 78, 149, 0.12);
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  transition: var(--transition);
}

.tree-panel__menu-toggle span {
  display: block;
  width: 0.95rem;
  height: var(--toggle-line);
  border-radius: 99rem;
  background: var(--color-primary);
  transition: transform 0.22s ease, opacity 0.18s ease;
  transform-origin: center;
}

.tree-panel__menu-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(calc(var(--toggle-line) + var(--toggle-gap))) rotate(45deg);
}

.tree-panel__menu-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.tree-panel__menu-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(calc(-1 * (var(--toggle-line) + var(--toggle-gap)))) rotate(-45deg);
}

.tree-panel__menu-toggle:hover,
.tree-panel__menu-toggle:focus-visible {
  transform: translateY(-0.05rem);
  background: rgba(64, 78, 149, 0.12);
}

.tree-panel__menu-toggle:focus {
  outline: none;
}

.tree-panel .category-tree[hidden] {
  display: none;
}

.tree-group__head {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.7rem 0.85rem;
  border-radius: 0.95rem;
  background: rgba(64, 78, 149, 0.08);
  border: 0.06rem solid rgba(64, 78, 149, 0.12);
  font-weight: 900;
  color: var(--color-text);
}

.tree-toggle[aria-expanded]::after {
  content: "+";
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.1rem;
  height: 1.1rem;
  margin-left: auto;
  border-radius: 99rem;
  background: rgba(255, 255, 255, 0.82);
  border: 0.06rem solid rgba(64, 78, 149, 0.16);
  color: var(--color-primary);
  font-weight: 900;
}

.tree-toggle[aria-expanded="true"]::after {
  content: "-";
}

.tree-children[hidden] {
  display: none;
}

.tree-children {
  display: grid;
  gap: 0.45rem;
  margin: 0 0 0 0.9rem;
  padding-left: 0.85rem;
  border-left: 0.1rem solid rgba(64, 78, 149, 0.16);
  overflow: hidden;
  opacity: 1;
  transform: translateY(0);
  transition: height 0.26s ease, margin-top 0.26s ease, margin-bottom 0.26s ease, opacity 0.2s ease, transform 0.26s ease;
  will-change: height, margin-top, margin-bottom, opacity, transform;
}

.tree-item--child {
  padding: 0.62rem 0.85rem;
  border-radius: 0.9rem;
  font-weight: 750;
  font-size: 0.92rem;
  background: rgba(255, 255, 255, 0.92);
}

.tree-item--child::before {
  width: 0.45rem;
  height: 0.45rem;
  background: rgba(64, 78, 149, 0.14);
  box-shadow: none;
}

.tree-group__body {
  margin-top: 0.75rem;
  display: grid;
  gap: 0;
  padding-left: 0.35rem;
}

.tree-group__body > * + * {
  margin-top: 0.5rem;
}

.tree-item {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 0.7rem;
  padding: 0.7rem 0.85rem;
  border-radius: 0.95rem;
  background: rgba(255, 255, 255, 0.96);
  border: 0.06rem solid rgba(64, 78, 149, 0.12);
  color: var(--color-text);
  font-weight: 800;
  text-align: left;
  transition: var(--transition);
}

.tree-item:hover,
.tree-item:focus-visible {
  transform: translateY(-0.05rem);
  background: rgba(64, 78, 149, 0.06);
}

.tree-item.is-active {
    background: rgb(64 78 149);
    color: #FFF;
}


.listing-toolbar {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-bottom: 1.1rem;
}

.pill {
  border: 0.06rem solid rgba(64, 78, 149, 0.18);
  background: rgba(255, 255, 255, 0.92);
  color: var(--color-primary);
  padding: 0.45rem 0.85rem;
  border-radius: 99rem;
  font-weight: 800;
  font-size: 0.86rem;
  cursor: pointer;
  transition: var(--transition);
}

.pill.is-active {
  background: rgba(64, 78, 149, 0.92);
  border-color: transparent;
  color: var(--color-white);
}

.pill:focus {
  outline: none;
}

.pill:hover,
.pill:focus-visible {
  transform: translateY(-0.06rem);
}

.news-index {
  display: flex;
  flex-direction: column;
  gap: 0.95rem;
}

.news-teaser {
  display: flex;
  gap: 1rem;
  border-radius: var(--radius-lg);
  border: 0.06rem solid rgba(15, 20, 32, 0.08);
  background: rgba(255, 255, 255, 0.96);
  overflow: hidden;
  transition: var(--transition);
}

.news-teaser:hover,
.news-teaser:focus-visible {
  transform: translateY(-0.14rem);
  border-color: rgba(64, 78, 149, 0.22);
}

.news-teaser:focus {
  outline: none;
}

.news-teaser__thumb {
  width: 14.5rem;
  flex: 0 0 auto;
  position: relative;
  background: rgba(0, 0, 0, 0.12);
}

.news-teaser__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.news-teaser__body {
  padding: 1.1rem 1.15rem 1.15rem;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  min-width: 0;
}

.news-teaser__meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  font-weight: 800;
  font-size: 0.85rem;
  color: var(--color-text-soft);
}

.news-teaser__meta .tag {
  color: rgba(64, 78, 149, 0.95);
  background: rgba(64, 78, 149, 0.08);
  border: 0.06rem solid rgba(64, 78, 149, 0.16);
  padding: 0.2rem 0.55rem;
  border-radius: 99rem;
  white-space: nowrap;
}

.news-teaser__title {
  margin: 0;
  font-size: 1.12rem;
  line-height: 1.3;
  color: var(--color-text);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.news-teaser__excerpt {
  margin: 0;
  color: var(--color-text-soft);
  font-size: 0.92rem;
  line-height: 1.75;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.pagination {
  margin-top: 1.35rem;
  display: flex;
  gap: 0.6rem;
  justify-content: center;
  flex-wrap: wrap;
}

.pagination__item {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 2.45rem;
  height: 2.45rem;
  padding: 0 0.9rem;
  border-radius: 99rem;
  border: 0.06rem solid rgba(15, 20, 32, 0.12);
  background: rgba(255, 255, 255, 0.96);
  font-weight: 900;
  color: var(--color-text);
  transition: var(--transition);
}

.pagination__item:hover,
.pagination__item:focus-visible {
  transform: translateY(-0.06rem);
  border-color: rgba(64, 78, 149, 0.25);
}

.pagination__item:focus {
  outline: none;
}

.pagination__item.current {
  background: rgba(64, 78, 149, 0.92);
  border-color: transparent;
  color: var(--color-white);
}

.pagination__next {
  padding: 0 1.1rem;
}

.article-layout {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
}

.article {
  flex: 1 1 0;
  border-radius: var(--radius-lg);
  border: 0.06rem solid rgba(15, 20, 32, 0.08);
  background: rgba(255, 255, 255, 0.96);
  padding: 1.5rem 1.55rem;
  width: 100%;
}


.article__meta {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 0.75rem;
  color: var(--color-text-soft);
  font-weight: 800;
  font-size: 0.9rem;
}

.article__meta .tag {
  color: rgba(64, 78, 149, 0.95);
  background: rgba(64, 78, 149, 0.08);
  border: 0.06rem solid rgba(64, 78, 149, 0.16);
  padding: 0.2rem 0.55rem;
  border-radius: 99rem;
  white-space: nowrap;
}

.article__title {
  margin: 0;
  font-size: 1.75rem;
  line-height: 1.18;
  text-align: center;
  padding: 1rem 0;
}

.article__lead {
  margin-top: 0.8rem;
  color: var(--color-text-soft);
  line-height: 1.85;
  font-weight: 650;
}

.article__header-bar {
  display: flex;
  align-items: center;
  justify-content: space-evenly;
  gap: 1rem;
  padding: 1rem 0;
  border-bottom: 0.08rem dashed rgba(64, 78, 149, 0.28);
}

.article__header-info {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem 1.25rem;
}

.article__source,
.article__date {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.55rem;
  color: var(--color-text-soft);
  line-height: 1.7;
}

.article__source strong,
.article__date strong {
  color: var(--color-text);
  font-size: 0.96rem;
}

.article__source p,
.article__date p {
  margin: 0;
}

.article__source-label,
.article__share-label {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 1.75rem;
  padding: 0.2rem 0.6rem;
  border-radius: 99rem;
  background: rgba(64, 78, 149, 0.08);
  color: rgba(64, 78, 149, 0.96);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.03rem;
  text-transform: uppercase;
}

.article__share {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  gap: 0.6rem;
}

.article__share-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.2rem;
  padding: 0.45rem 0.9rem;
  border: 0.06rem solid rgba(64, 78, 149, 0.16);
  border-radius: 99rem;
  background: rgba(255, 255, 255, 0.9);
  color: var(--color-primary);
  font-weight: 800;
  transition: var(--transition);
}

.article__share-button:hover,
.article__share-button:focus-visible {
  transform: translateY(-0.06rem);
  background: rgba(64, 78, 149, 0.08);
}

.article__share-button:focus {
  outline: none;
}

.article__share-button--primary {
  background: rgba(64, 78, 149, 0.92);
  color: var(--color-white);
}

.article__share-button--primary:hover,
.article__share-button--primary:focus-visible {
  background: var(--color-primary);
}

.article__share-status {
  min-width: 5.2rem;
  color: var(--color-text-soft);
  font-size: 0.84rem;
  font-weight: 700;
  text-align: right;
}

.article__body {
  margin-top: 1.35rem;
  color: var(--color-text);
  line-height: 1.9;
}
.article__body img{
  display: unset;
  width: unset;
}

.article__body h3 {
  font-size: 1.15rem;
}

.article__body ul {
  padding-left: 1.2rem;
  margin: 0.6rem 0 0;
}

.article__body li {
  margin: 0.4rem 0;
}

.attachment-panel {
  margin-top: 1.6rem;
  border-top: 0.06rem solid rgba(15, 20, 32, 0.1);
  padding-top: 1.1rem;
}

.attachment-panel__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.attachment-panel__title {
  margin: 0;
  font-size: 1.05rem;
}

.attachment-panel__hint {
  color: var(--color-text-soft);
  font-weight: 800;
  font-size: 0.86rem;
  white-space: nowrap;
}

.attachment-list {
  margin-top: 0.95rem;
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}

.attachment-row {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  padding: 0.85rem 1rem;
  border-radius: 1rem;
  border: 0.06rem solid rgba(15, 20, 32, 0.08);
  background: rgba(255, 255, 255, 0.96);
  color: var(--color-text);
  text-decoration: none;
  transition: var(--transition);
}

.attachment-row:hover,
.attachment-row:focus-visible {
  border-color: rgba(64, 78, 149, 0.24);
  box-shadow: 0 0.8rem 1.8rem rgba(27, 41, 88, 0.08);
}

.attachment-row:focus {
  outline: none;
}

.attachment-icon {
  width: 2.45rem;
  height: 2.45rem;
  border-radius: 0.95rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--color-primary-soft);
  border: 0.06rem solid rgba(64, 78, 149, 0.2);
  flex: 0 0 auto;
}

.attachment-icon svg {
  width: 1.3rem;
  height: 1.3rem;
  stroke: var(--color-primary);
  stroke-width: 1.8;
  fill: none;
  stroke-linecap: butt;
  stroke-linejoin: round;
}

.attachment-filename {
  flex: 1 1 auto;
  min-width: 0;
  font-weight: 850;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.attachment-type {
  flex: 0 0 auto;
  min-width: 3.2rem;
  height: 2.1rem;
  padding: 0 0.8rem;
  border-radius: 99rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(15, 20, 32, 0.04);
  border: 0.06rem solid rgba(15, 20, 32, 0.1);
  color: var(--color-text-soft);
  font-weight: 900;
  font-size: 0.78rem;
  letter-spacing: 0.03rem;
}

@media (max-width: 36rem) {
  .attachment-panel__head {
    flex-direction: column;
    align-items: flex-start;
  }

  .attachment-filename {
    white-space: normal;
  }
}

.article__actions {
  margin-top: 1.4rem;
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 2.6rem;
  padding: 0 1.1rem;
  border-radius: 99rem;
  border: 0.06rem solid rgba(64, 78, 149, 0.2);
  background: rgba(64, 78, 149, 0.92);
  color: var(--color-white);
  font-weight: 900;
  transition: var(--transition);
}

.button:hover,
.button:focus-visible {
  transform: translateY(-0.06rem);
}

.button:focus {
  outline: none;
}

.button--ghost {
  background: rgba(255, 255, 255, 0.96);
  color: var(--color-primary);
}

.article-side {
  flex: 0 0 auto;
}

.side-card {
  width: 20rem;
  border-radius: var(--radius-lg);
  border: 0.06rem solid rgba(15, 20, 32, 0.08);
  background: rgba(255, 255, 255, 0.92);
  padding: 1.2rem 1.2rem;
}

.side-card h3 {
  margin: 0 0 0.85rem;
  font-size: 1.05rem;
}

.side-link {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 0.85rem;
  padding: 0.75rem 0;
  border-top: 0.06rem solid rgba(15, 20, 32, 0.08);
  color: var(--color-text);
  font-weight: 800;
  font-size: 0.92rem;
  line-height: 1.5;
}

.side-link:first-of-type {
  border-top: 0;
  padding-top: 0;
}

.side-link time {
  color: var(--color-text-soft);
  font-weight: 800;
  white-space: nowrap;
}

@media (max-width: 64rem) {
  .page-hero::before {
    background: rgba(246, 248, 253, 0.86);
  }

  .tree-panel .category-tree {
    overflow: hidden;
    opacity: 1;
    transform: translateY(0);
    transition: height 0.26s ease, opacity 0.2s ease, transform 0.26s ease;
    will-change: height, opacity, transform;
  }

  .tree-panel__menu-toggle {
    display: flex;
  }

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

  .page-hero__inner {
    min-height: 11rem;
  }

  .news-teaser {
    flex-direction: column;
  }

  .news-teaser__thumb {
    width: 100%;
    height: 12rem;
  }

  .listing-layout {
    flex-direction: column;
  }

  .listing-sidebar {
    width: 100%;
  }

  .article-layout {
    flex-direction: column;
  }

  .article__header-bar {
    flex-direction: column;
    align-items: flex-start;
  }

  .article__header-info {
    width: 100%;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.7rem;
  }

  .article__share {
    justify-content: flex-start;
  }

  .side-card {
    width: 100%;
  }
}

.reveal {
  opacity: 0;
  transform: translateY(1.8rem);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 80rem) {
  .hero-slide__content,
  .culture-split,
  .culture-band,
  .guide-layout,
  .media-layout,
  .footer__inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .news-hub {
    flex-direction: column;
  }

  .news-extra-cards {
    flex-direction: column;
  }

  .news-swiper,
  .news-slide {
    min-height: 21rem;
  }

  .experts-swiper {
    padding-left: 2.6rem;
    padding-right: 2.6rem;
  }

  .hero-panel,
  .guide-panel {
    max-width: none;
    width: 100%;
  }

  .culture-media {
    flex: 0 0 auto;
    width: 100%;
  }

  .culture-media img {
    aspect-ratio: auto;
  }

  .footer__links {
    justify-content: flex-start;
  }
}

@media (max-width: 64rem) {
  .overview-card {
    flex: 1 1 calc(50% - 1.1rem);
  }

  .culture-stats {
    grid-template-columns: 1fr;
  }

  .news-panel__head {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 36rem) {
  .overview-card {
    flex: 1 1 100%;
    padding: 1.05rem 1rem;
  }
}

@media (max-width: 64rem) {
  .navbar__toggle {
    display: flex;
  }

  .navbar__menu {
    position: absolute;
    top: calc(100% + 0.7rem);
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0.25rem;
    padding: 0.75rem;
    border: 0.06rem solid rgba(255, 255, 255, 0.16);
    border-radius: 1.1rem;
    background: rgba(30, 37, 86, 0.98);
    box-shadow: 0 1rem 2.4rem rgba(23, 37, 84, 0.22);
    backdrop-filter: blur(1rem);
  }

  .navbar__menu.is-open {
    display: flex;
  }

  .navbar__item {
    width: 100%;
    flex-direction: column;
    align-items: stretch;
  }

  .navbar__link {
    width: 100%;
    border-radius: 0.95rem;
    padding: 0.75rem 0.9rem;
  }

  .navbar__link::after {
    width: 56%;
    bottom: 0.35rem;
  }

  .navbar__dropdown {
    position: static;
    left: auto;
    top: auto;
    min-width: 0;
    transform: translateY(-0.25rem);
    opacity: 0;
    pointer-events: none;
    display: flex;
    max-height: 0;
    overflow: hidden;
    margin-top: 0.35rem;
    background: rgba(255, 255, 255, 0.08);
    border: 0.06rem solid rgba(255, 255, 255, 0.14);
    box-shadow: none;
    transition: max-height 0.28s ease, opacity 0.18s ease, transform 0.22s ease;
  }

  .navbar__item.is-open > .navbar__dropdown {
    display: none;
    max-height: 18rem;
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
  }
  
    .navbar__item:hover > .navbar__dropdown,
    .navbar__item:focus-within > .navbar__dropdown,
    .navbar__dropdown {
        display: none;
    }
  

  .navbar__dropdown a {
    color: rgba(255, 255, 255, 0.92);
  }

  .navbar__dropdown a:hover,
  .navbar__dropdown a:focus-visible {
    background: rgba(255, 255, 255, 0.12);
  }

  .hero-slide,
  .hero-slide__content {
    min-height: 38rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .navbar__dropdown {
    transition: none;
  }

  .navbar__toggle span {
    transition: none;
  }

  .tree-children {
    transition: none;
  }
}

@media (max-width: 48rem) {
  .article__source, .article__date {
    width: 100%;
  }
  .article__source p, .article__date p {
    margin: 0;
    text-align: center;
    width: 100%;
  }
  .article__header-info .article__source-label, 
  .article__share .article__share-label {
    display: none;
  }
  .article__share {
    width: 100%;
    justify-content: center;
  }
  .topbar__inner,
  .topbar__brand,
  .topbar__contact {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.45rem;
  }

  .hero-slide__content {
    padding: 6rem 0 8rem;
  }

  .hero-slide,
  .hero-slide__content {
    min-height: 20rem;
  }

  .hero-slide > img {
    object-position: center top;
  }

  .hero-copy h1,
  .hero-copy h2 {
    font-size: clamp(2rem, 9vw, 3rem);
  }

  .section {
    padding: 1.5rem 0;
  }
  .news-card {
    padding: 0.75rem 0;
  }
  #experts > .container {
    margin-bottom: 2rem;
  }
  
    #specialists {
        padding: 4.5rem 0 0 0;
    }

  .overview {
    margin-top: 0rem;
    padding-top: 0rem;
  }
  .hero::after {
    height: 1.9rem;
  }

  .hero-swiper__controls {
    bottom: 1.5rem;
  }
}

@media (max-width: 36rem) {
  :root {
    --container-width: 88%;
  }

  .experts-grid {
    grid-template-columns: 1fr;
  }

  .button,
  .news-filter {
    width: 100%;
  }

  .news-tabs .news-filter {
    width: auto;
  }

  .experts-nav {
    display: none;
  }

  .experts-swiper {
    padding-left: 0;
    padding-right: 0;
  }

  .hero-actions {
    width: 100%;
  }

  .swiper-button-prev,
  .swiper-button-next {
    width: 2.75rem;
    height: 2.75rem;
  }

  .section-heading h2 {
    font-size: clamp(1.75rem, 8vw, 2.3rem);
  }
}
