﻿:root {
  --blue-dark: #0a2a49;
  --blue: #01508f;
  --blue-accent: #005b9d;
  --orange: #f28628;
  --bg: #ececec;
  --card: #efefef;
  --ink: #102231;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  background: #ffffff;
  color: var(--ink);
  font-family: Arial, Helvetica, sans-serif;
}

.side-menu {
  position: fixed;
  top: 118px;
  left: 0px;
  z-index: 110;
  display: flex;
  flex-direction: row-reverse;
  align-items: stretch;
  transform: translateX(calc(-100% + 44px));
  transition: transform 0.32s ease;
}

.side-menu:hover,
.side-menu:focus-within,
.side-menu.is-open {
  transform: translateX(0);
}

.side-menu__handle {
  border: 0;
  width: 44px;
  background: var(--orange);
  color: #ffffff;
  display: grid;
  place-items: center;
  cursor: pointer;
  padding: 12px 6px;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.25);
}

.side-menu__handle-text {
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  letter-spacing: 5px;
  font-size: 18px;
  font-weight: 700;
  color: var(--ink);
}

.side-menu__panel {
  display: flex;
  flex-direction: column;
  gap: 6px;
  min-width: 320px;
  padding: 14px 14px 10px;
  background: rgba(255, 255, 255, 0.97);
  border: 1px solid #ccd3da;
  border-right: 0;
  box-shadow: 8px 10px 22px rgba(0, 0, 0, 0.18);
}

.side-menu__panel a {
  text-decoration: none;
  color: #7f8b95;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.1;
  padding: 10px 10px 12px;
  border-bottom: 3px solid transparent;
  transition: color 0.2s ease, border-color 0.2s ease, background-color 0.2s ease;
}

.side-menu__panel a:hover,
.side-menu__panel a:focus-visible,
.side-menu__panel a.is-active {
  color: #be8c16;
  border-bottom-color: #be8c16;
  background: #f8f8f8;
}

.page-frame {
  width: 100%;
  margin: 0 auto;
  border: 0;
  background: #fff;
  overflow-x: hidden;
}

.hero {
  position: relative;
  min-height: 600px;
  background: #6f89a1;
}

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

.hero-inner {
  position: relative;
  min-height: 790px;
  width: min(1440px, 100%);
  margin: 0 auto;
}

.lang-chip {
  position: absolute;
  top: 34px;
  right: 170px;
  z-index: 3;
  padding: 7px 16px;
  color: #ffffff;
  background: rgba(56, 71, 90, 0.55);
  font-size: 18px;
  letter-spacing: 0.4px;
  cursor: pointer;
  user-select: none;
}

.hero-overlay {
  width: 540px;
  min-height: 790px;
  margin-left: 160px;
  padding: 22px 42px 42px 42px;
  background: rgba(15, 35, 57, 0.62);
  display: flex;
  flex-direction: column;
  justify-content: space-between;

}

.logo-line {
  display: flex;
  align-items: center;

  gap: 18px;
  margin-bottom: 34px;
}

.logo-line-logo{
width: 100%;
}


h1 {
  margin: 0 0 20px;
  color: #ffffff;
  font-size: 34px;
  line-height: 1.14;
  font-weight: 300;
  letter-spacing: -0.2px;
}

.hero-description {
  margin: 0 0 28px;
  color: #ffffff;
  font-size: 16px;
  line-height: 1.22;
}

.hero-description strong {
  display: block;
  font-size: 19px;
  margin-bottom: 4px;
}

.hero-actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: 100%;
}

.btn {
  text-decoration: none;
  text-align: center;
  color: #fff;
  padding: 15px 18px;
  font-size: 20px;
  line-height: 1;
  font-weight: 400;
}

.btn-orange {
  background: var(--orange);
}

.btn-blue {
  background: var(--blue-accent);
}

.features {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  max-width: 1120px;
  margin: 46px auto 26px;
  background: #ffffff;
  padding: 0 0 22px;
  align-items: stretch;
}

.feature-card {
  border: 1px solid #c3c7cb;
  background: #ffffff;
  text-align: center;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.feature-illustration {
  height: 430px;
  border: 0;
  display: grid;
  place-items: center;
  margin-bottom: 18px;
}

.feature-illustration img {
  width: 90%;
  max-height: 360px;
}

.feature-card h3 {
  margin: 0 0 28px;
  color: #005092;
  font-size: 26px;
  line-height: 1.2;
  font-weight: 700;
  min-height: 68px;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.feature-card p {
  margin: 0;
  font-size: 22px;
  line-height: 1.2;
  color: #343434;
  min-height: 96px;
}

.recognition {
  width: 100%;
  margin: 0 auto;
  min-height: 600px;
  background:
    linear-gradient(0deg, rgba(248, 248, 248, 0.7), rgba(248, 248, 248, 0.1)),
    url("../i/ep_bg02.jpg") center/cover no-repeat;
  padding: 26px 0 22px;
}

.recognition-inner {
  display: grid;
  grid-template-columns: minmax(540px, 560px) auto;
  gap: 60px;
  max-width: 1120px;
  min-height: 560px;
  margin: 0 auto;
  align-items: center;
}

.recognition-panel {
  background: rgba(255, 255, 255, 0.76);
  padding: 28px 36px 34px;
  width: 100%;
  min-height: 288px;
  align-self: stretch;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.recognition-head {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 28px;
  margin-bottom: 20px;
}



.recognition-badge{
  width: 80px;
  height: auto;
}

.recognition-title {
  margin: 0;
  color: #005096;
  font-size: 52px;
  font-weight: 800;
  line-height: 0.98;
}

.recognition-text {
  margin: 0;
  max-width: 430px;
  font-size: 34px;
  line-height: 1.1;
  font-weight: 700;
  color: #242424;
}

.books {
  display: flex;
  gap: 20px;
  width: auto;
  justify-content: flex-start;
  align-self: center;
  justify-self: start;
}

.books img {
  width: 250px;
  min-height: 268px;
  object-fit: contain;
  background: rgba(255, 255, 255, 0.2);
}

.news-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  max-width: 1120px;
  margin: 28px auto 0;
  padding: 0 0 0;
  background: #ffffff;
}

.news-card {
  background: #ffffff;
  border: 1px solid #d8d8d8;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.18);
  padding: 16px 16px 12px;
}

.news-card h4 {
  margin: 0 0 14px;
  color: #005192;
  font-size: 27px;
  line-height: 1.05;
  font-weight: 800;
}

.news-card h4.orange {
  color: var(--orange);
}

.news-inner {
  display: grid;
  grid-template-columns: 142px 1fr;
  gap: 16px;
  align-items: start;
}

.news-inner img {
  width: 100%;
  height: 196px;
  object-fit: cover;
  border: 1px solid #d3d3d3;
}

.news-card--event .news-inner {
  grid-template-columns: 196px 1fr;
}

.news-card--event .news-inner img {
  width: 196px;
  height: 196px;
}


.news-inner p {
  margin: 0 0 10px;
  font-size: 18px;
  line-height: 1.22;
  color: #202020;
}

.news-inner p.news-title {
  font-weight: 700;
  font-size: 22px;
  line-height: 1.12;
}

.news-inner p.blue {
  color: #005192;
  font-size: 22px;
  font-weight: 700;
}

.action-link,
.more-link {
  color: #004f9f;
  font-size: 15px;
  text-decoration: none;
  font-weight: 400;
  display: inline-block;
}

.action-link {
  padding: 8px 18px;
  background: #0b5f98;
  color: #ffffff;
  font-size: 14px;
  font-weight: 400;
  margin-top: 14px;
}

.more-link {
  display: block;
  margin-top: 8px;
  text-align: right;
  font-size: 18px;
  color: #284fc2;
}

.partners {
  background: #efefef;
  margin-top: 18px;
  padding: 12px 18px 22px;
  border-top: 1px solid #cacaca;
}

.partners h5 {
  max-width: 1120px;
  margin: 0 auto 24px;
  color: #005192;
  font-size: 23px;
  font-weight: 700;
}

.partners-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 164px;
  gap: 32px;
  align-items: center;
  max-width: 1120px;
  margin: 0 auto;
}

.logos {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  min-width: 0;
}

.logos img{
  width: auto;
  max-width: min(30%, 280px);
  max-height: 92px;
  height: auto;
  object-fit: contain;
}


.counter {
  background: var(--orange);
  color: #fff;
  text-align: center;
  padding: 10px 6px;
  line-height: 1;
  justify-self: end;
  width: 164px;
}

.counter p {
  margin: 0;
  font-weight: 700;
  font-size: 12px;
}

.counter span {
  font-size: 18px;
}

.counter strong {
  display: block;
  font-size: 58px;
  margin: 4px 0;
}

.footer-bar {
  min-height: 170px;
  background: #00558f;
  border-top: 1px solid #d0d0d0;
  color: #ffffff;
  box-sizing: border-box;
  padding: 24px 24px;
  display: flex;
  align-items: center;
}

.footer-bar__inner {
  width: min(900px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 300px minmax(0, 1fr);
  gap: 64px;
  align-items: center;
}

.footer-bar__logo {
  display: flex;
  justify-content: center;
}

.footer-bar__logo img {
  width: 220px;
  height: auto;
  display: block;
}

.footer-bar__content {
  font-size: 13px;
  line-height: 1.35;
}

.footer-bar__content h2 {
  margin: 0 0 4px;
  color: #ffffff;
  font-size: 18px;
  line-height: 1.2;
}

.footer-bar__content p {
  margin: 0 0 6px;
  color: #ffffff;
}

.footer-bar__content a {
  color: #ffffff;
  text-decoration: none;
}

.footer-bar__content a:hover,
.footer-bar__content a:focus-visible {
  text-decoration: underline;
}

.hero--page {
  min-height: 460px;
}

.hero--page .hero-video {
  filter: saturate(0.8) brightness(0.72);
}

.hero--page .hero-inner {
  min-height: 460px;
}

.hero--page .hero-overlay {
  min-height: 460px;
  justify-content: flex-start;
  gap: 24px;
  padding-top: 26px;
  padding-bottom: 30px;
}

.hero--page .logo-line {
  margin-bottom: 0;
}

.hero--page .hero-overlay > div:last-child {
  min-height: 240px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.hero-kicker {
  margin: 0;
  color: rgba(255, 255, 255, 0.74);
  font-size: 15px;
  letter-spacing: 3px;
}

.page-intro {
  margin: 0;
  color: #f3f6fa;
  font-size: 20px;
  line-height: 1.45;
  min-height: 116px;
}

.about-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 300px;
  gap: 32px;
  max-width: 1120px;
  margin: 46px auto 0;
  padding: 0 0 36px;
}

.about-layout--venues {
  max-width: 1500px;
  grid-template-columns: minmax(0, 1fr) 300px;
}

.about-layout--database {
  max-width: 1160px;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 28px;
}

.about-layout--database .topic-item summary {
  overflow-wrap: anywhere;
}

.about-layout--series {
  max-width: 1320px;
  grid-template-columns: minmax(0, 1fr) 300px;
  gap: 34px;
}

.about-layout--series .content-card {
  padding: 38px 42px 42px;
}

.about-layout--series .research-intro {
  grid-template-columns: minmax(0, 1.35fr) minmax(240px, 300px);
  gap: 42px;
  margin-bottom: 30px;
}

.about-layout--series .research-intro__text h2 {
  max-width: 760px;
}

.about-layout--series .research-intro__text p {
  max-width: 820px;
}

.about-layout--series .publication-showcase--slideshow {
  box-shadow: 0 14px 28px rgba(9, 31, 51, 0.16);
}

.about-layout--series .profile-note {
  grid-template-columns: 112px minmax(0, 1fr);
  margin: 34px 0 36px;
  padding: 22px 24px;
  background: #f5f8fb;
  border-left: 4px solid #f28628;
}

.about-layout--series .profile-note img {
  width: 112px;
  height: 112px;
  border-radius: 50%;
}

.about-layout--series .profile-note p {
  font-size: 18px;
}

.about-layout--series .resource-list {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
  margin-top: 30px;
}

.about-layout--series .resource-card {
  min-height: 210px;
}

.about-layout--series .resource-card--media {
  grid-template-columns: 94px minmax(0, 1fr);
  gap: 18px;
}

.about-layout--series .resource-card__media img {
  width: 78px;
  height: 110px;
}

.about-layout--series .resource-card h4 {
  font-size: 21px;
}

.about-layout--series .resource-card p {
  font-size: 17px;
}

.about-layout--series .resource-card .cta-link {
  margin-top: 18px;
}

.about-layout--series .resource-card--wide {
  grid-column: 1 / -1;
  min-height: 0;
}

.about-layout--series .resource-card--wide .resource-card__media img {
  width: 96px;
  height: 110px;
}

.content-card,
.side-card {
  background: #ffffff;
  border: 1px solid #d7dde3;
  box-shadow: 0 10px 24px rgba(9, 31, 51, 0.08);
}

.content-card {
  padding: 34px 36px 38px;
}

.content-card h2 {
  margin: 0 0 20px;
  color: #005192;
  font-size: 34px;
  line-height: 1.08;
}

.content-card p,
.content-card li {
  font-size: 19px;
  line-height: 1.55;
  color: #23313d;
}

.content-card p {
  margin: 0 0 18px;
}

.content-card strong {
  color: #102231;
}

.content-list {
  margin: 0 0 20px;
  padding-left: 24px;
}

.content-list li + li {
  margin-top: 12px;
}

.benefits {
  margin-top: 34px;
  margin-bottom: 34px;
}

.benefits h3,
.side-card h3 {
  margin: 0 0 18px;
  color: #005192;
  font-size: 30px;
  line-height: 1.15;
}

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

.benefit-card {
  min-height: 210px;
  padding: 22px 22px 24px;
  background: linear-gradient(160deg, #0a2a49 0%, #005b9d 100%);
  color: #ffffff;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.benefit-card:nth-child(2n) {
  background: linear-gradient(160deg, #f28628 0%, #c96a1a 100%);
}

.benefit-card h4 {
  margin: 0 0 14px;
  font-size: 22px;
  line-height: 1.18;
}

.benefit-card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.94);
  font-size: 17px;
  line-height: 1.45;
}

.side-card {
  padding: 28px 24px;
  align-self: start;
  position: sticky;
  top: 40px;
}

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

.side-card li + li {
  margin-top: 12px;
}

.side-card a {
  display: block;
  text-decoration: none;
  color: #6e7f90;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.25;
  padding-bottom: 10px;
  border-bottom: 2px solid #e4e8ec;
}

.side-card a:hover,
.side-card a:focus-visible,
.side-card a.is-active {
  color: #be8c16;
  border-bottom-color: #be8c16;
}

.side-card .cta-link,
.side-card .cta-link:hover,
.side-card .cta-link:focus-visible {
  color: #ffffff;
  border-bottom: 0;
}

.entity-list {
  display: grid;
  gap: 22px;
}

.entity-card {
  display: grid;
  grid-template-columns: 180px minmax(0, 1fr);
  gap: 24px;
  padding: 22px;
  border: 1px solid #d7dde3;
  background: linear-gradient(180deg, #ffffff 0%, #f7f9fb 100%);
}

.entity-card__media {
  display: flex;
  align-items: center;
  justify-content: center;
}

.entity-card__media img {
  width: 100%;
  max-width: 160px;
  height: auto;
  object-fit: contain;
}

.entity-card__body h3 {
  margin: 0 0 10px;
  color: #005192;
  font-size: 28px;
  line-height: 1.15;
}

.entity-card__body p {
  margin: 0;
}

.entity-card__link {
  text-decoration: none;
  color: inherit;
}

.entity-card__link:hover .entity-card,
.entity-card__link:focus-visible .entity-card {
  border-color: #be8c16;
  box-shadow: 0 10px 22px rgba(190, 140, 22, 0.12);
}

.center-media {
  margin: 0 0 24px;
  text-align: center;
}

.center-media img {
  max-width: 100%;
  height: auto;
}

.note-card {
  margin-top: 22px;
  padding: 18px 20px;
  background: #f5f8fb;
  border-left: 4px solid #f28628;
  color: #23313d;
  font-size: 18px;
  line-height: 1.5;
}

.resource-list {
  display: grid;
  gap: 18px;
  margin-top: 22px;
}

.resource-card {
  padding: 20px 22px;
  border: 1px solid #d7dde3;
  background: #ffffff;
}

.resource-card--media {
  display: grid;
  grid-template-columns: 112px minmax(0, 1fr);
  gap: 22px;
  align-items: start;
}

.resource-card__media {
  display: flex;
  justify-content: center;
}

.resource-card__media img {
  width: 84px;
  height: 118px;
  object-fit: contain;
}

.resource-card h4 {
  margin: 0 0 10px;
  color: #005192;
  font-size: 23px;
  line-height: 1.2;
}

.resource-card p {
  margin: 0;
}

.research-intro {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 300px;
  gap: 34px;
  align-items: start;
  margin-bottom: 28px;
}

.research-intro__text h2 {
  margin-bottom: 18px;
}

.publication-showcase--slideshow {
  position: relative;
  width: 300px;
  aspect-ratio: 300 / 426;
  margin: 0;
}

.publication-showcase--slideshow img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  border: 1px solid #d7dde3;
  background: #ffffff;
  box-shadow: 0 10px 24px rgba(9, 31, 51, 0.16);
  opacity: 0;
  animation: publicationCoverFade 20s infinite;
}

.publication-showcase--slideshow img:nth-child(1) {
  animation-delay: 0s;
}

.publication-showcase--slideshow img:nth-child(2) {
  animation-delay: 4s;
}

.publication-showcase--slideshow img:nth-child(3) {
  animation-delay: 8s;
}

.publication-showcase--slideshow img:nth-child(4) {
  animation-delay: 12s;
}

.publication-showcase--slideshow img:nth-child(5) {
  animation-delay: 16s;
}

@keyframes publicationCoverFade {
  0%,
  16% {
    opacity: 1;
  }

  20%,
  100% {
    opacity: 0;
  }
}

.profile-note {
  display: grid;
  grid-template-columns: 130px minmax(0, 1fr);
  gap: 22px;
  align-items: start;
  margin: 24px 0 28px;
}

.profile-note img {
  width: 130px;
  height: 130px;
  object-fit: cover;
}

.resource-links {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  margin: 20px 0 0;
  padding: 0;
  list-style: none;
}

.resource-links li {
  margin: 0;
}

.article-links {
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
}

.article-links li + li {
  margin-top: 12px;
}

.article-links a {
  color: #005192;
  text-decoration: none;
  font-size: 18px;
  line-height: 1.45;
}

.article-links a:hover,
.article-links a:focus-visible {
  color: #be8c16;
}

.event-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-top: 22px;
}

.about-layout--venues .event-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.event-card-link {
  display: flex;
  height: 100%;
  text-decoration: none;
  color: inherit;
}

.event-card {
  flex: 1 1 auto;
  width: 100%;
  height: 100%;
  border: 1px solid #d7dde3;
  background: #ffffff;
  display: grid;
  grid-template-rows: 220px 1fr;
  box-shadow: 0 10px 24px rgba(9, 31, 51, 0.06);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.event-card-link:hover .event-card,
.event-card-link:focus-visible .event-card {
  transform: translateY(-3px);
  border-color: #be8c16;
  box-shadow: 0 14px 30px rgba(9, 31, 51, 0.12);
}

.event-card__media {
  background: #dfe7ef;
  overflow: hidden;
}

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

.event-card__body {
  padding: 18px 18px 20px;
  display: flex;
  flex-direction: column;
  height: 100%;
  min-height: 0;
  box-sizing: border-box;
}

.event-card__title {
  margin: 0 0 10px;
  color: #005192;
  font-size: 25px;
  line-height: 1.2;
}

.event-card__text {
  margin: 0 0 14px;
  color: #23313d;
  font-size: 17px;
  line-height: 1.45;
}

.event-card__meta {
  margin: 0 0 14px;
  color: #6e7f90;
  font-size: 16px;
  line-height: 1.35;
}

.event-card__action {
  display: inline-block;
  align-self: flex-start;
  margin-top: auto;
  padding: 11px 18px;
  color: #ffffff;
  background: #c99722;
  font-size: 16px;
  text-decoration: none;
}

.cta-link,
.resource-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 250px;
  max-width: 100%;
  height: 42px;
  box-sizing: border-box;
  margin-top: 20px;
  color: #ffffff;
  background: #005b9d;
  text-decoration: none;
  padding: 11px 16px;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.15;
  text-align: center;
  white-space: nowrap;
  margin-bottom: 20px;
}

.resource-links a {
  margin-top: 0;
}

.cta-link:hover,
.cta-link:focus-visible,
.resource-links a:hover,
.resource-links a:focus-visible {
  color: #ffffff;
  background: #00477c;
}

.topic-list {
  display: grid;
  gap: 10px;
  margin-top: 22px;
}

.topic-item {
  border: 1px solid #d6dee7;
  background: #fdfefe;
  overflow: hidden;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}

.topic-item:not([open]) > *:not(summary) {
  display: none;
}

.topic-item:hover,
.topic-item:focus-within {
  border-color: #be8c16;
  box-shadow: 0 8px 18px rgba(9, 31, 51, 0.08);
}

.topic-item[open] {
  background: linear-gradient(180deg, #ffffff 0%, #f6f9fc 100%);
  border-color: #be8c16;
  box-shadow: 0 10px 22px rgba(190, 140, 22, 0.12);
}

.topic-item summary {
  cursor: pointer;
  list-style: none;
  padding: 17px 50px 17px 18px;
  color: #005192;
  font-size: 17px;
  font-weight: 700;
  line-height: 1.3;
  position: relative;
}

.topic-item summary::-webkit-details-marker {
  display: none;
}

.topic-item summary::after {
  content: "+";
  position: absolute;
  top: 50%;
  right: 18px;
  transform: translateY(-50%);
  color: #be8c16;
  font-size: 26px;
  font-weight: 700;
  line-height: 1;
}

.topic-item[open] summary::after {
  content: "−";
}

.topic-item[open] summary {
  padding-bottom: 12px;
}

.topic-item p {
  margin: 0;
  padding: 0 18px 10px;
  border-top: 1px solid #e3e9ef;
  padding-top: 14px;
  color: #314251;
  font-size: 15px;
  line-height: 1.45;
}

.topic-item__link {
  display: table;
  margin: 0 18px 18px auto;
  padding: 7px 16px;
  color: #ffffff !important;
  background: #00558f;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.2;
  text-decoration: none;
  border-bottom: 0;
}

.topic-item__link:hover,
.topic-item__link:focus-visible {
  color: #ffffff !important;
  background: #be8c16;
  border-bottom: 0;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-top: 22px;
}

.contact-card {
  padding: 22px;
  border: 1px solid #d7dde3;
  background: linear-gradient(180deg, #ffffff 0%, #f7f9fb 100%);
}

.contact-card h4 {
  margin: 0 0 12px;
  color: #005192;
  font-size: 23px;
  line-height: 1.2;
}

.contact-card p {
  margin: 0;
}

.contact-card p + p {
  margin-top: 12px;
}

.about-layout--publication {
  max-width: 1280px;
}

.about-layout--water-energy .legacy-content .textblock:first-child > .leftblock2 {
  display: block;
  grid-column: 1;
}

.about-layout--water-energy .legacy-content .textblock:first-child > .rightblock2 {
  grid-column: 2;
  grid-row: auto;
  align-self: start;
}

.about-layout--water-energy .legacy-content .textblock:has(.present1) {
  grid-template-columns: minmax(0, 1fr) minmax(260px, 340px);
}

.about-layout--water-energy .legacy-content .textblock:has(.present1) > .leftblock2 {
  grid-column: 1;
}

.about-layout--water-energy .legacy-content .textblock:has(.present1) > .rightblock2 {
  grid-column: 2;
  justify-self: center;
  max-width: 340px;
}

.about-layout--water-energy .legacy-content .publication-download {
  width: 100%;
  max-width: 720px;
}

.about-layout--water-energy .legacy-content .publication-download__title {
  max-width: 100%;
}

.about-layout--water-energy .legacy-content .publication-download__button {
  width: fit-content;
}

.publication-detail {
  overflow: hidden;
}

.legacy-content .textblock {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 340px);
  gap: 34px;
  align-items: start;
  margin-bottom: 32px;
}

.legacy-content .textblock:first-child > h1 {
  grid-column: 1 / -1;
}

.legacy-content .textblock:first-child > .leftblock2 {
  display: contents;
}

.legacy-content .textblock:first-child > .leftblock2 > h2,
.legacy-content .textblock:first-child > .leftblock2 > .cite {
  grid-column: 1;
}

.legacy-content .textblock:first-child > .leftblock2 > :not(h2):not(.cite) {
  grid-column: 1 / -1;
}

.legacy-content .textblock:first-child > .rightblock2 {
  grid-column: 2;
  grid-row: 2 / span 4;
}

.legacy-content .textblock > .leftblock1 {
  grid-column: 1 / -1;
}

.legacy-content .textblock > .leftblock2 {
  grid-column: 1;
  min-width: 0;
}

.legacy-content .textblock > .rightblock1,
.legacy-content .textblock > .rightblock2 {
  grid-column: 2;
  min-width: 0;
  justify-self: center;
  width: 100%;
  max-width: 340px;
  text-align: center;
}

.legacy-content .textblock:has(.present1) {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px;
}

.legacy-content .textblock:first-child:has(.present1) {
  grid-template-columns: minmax(0, 1fr) minmax(260px, 340px);
  gap: 34px;
}

.legacy-content .textblock:has(.present1) > .leftblock2,
.legacy-content .textblock:has(.present1) > .rightblock2 {
  grid-column: auto;
  justify-self: stretch;
  max-width: none;
}

.legacy-content .textblock:first-child:has(.present1) > .rightblock2 {
  grid-column: 2;
  grid-row: 2 / span 4;
  justify-self: center;
  max-width: 340px;
}

.legacy-content .textblock:has(.present1) .present1 {
  height: 100%;
}

.legacy-content .textblock:first-child:has(.present1) .present1 {
  height: auto;
}

.publication-summary h2 {
  margin-bottom: 18px;
}

.publication-summary .txt {
  margin: 0 0 14px;
  font-size: 18px;
  line-height: 1.55;
}

.legacy-content .publication-download {
  display: grid;
  grid-template-columns: 96px minmax(0, 1fr);
  gap: 18px;
  align-items: start;
  justify-self: start;
  width: calc(50% - 9px);
  margin: 10px 0 22px;
  padding: 18px 20px;
  border: 1px solid #d7dde3;
  background: #ffffff;
  color: inherit;
  text-decoration: none;
  box-shadow: 0 8px 18px rgba(9, 31, 51, 0.06);
}

.publication-download__media {
  display: flex;
  justify-content: center;
}

.publication-download__title {
  display: block;
  margin-bottom: 16px;
  color: #005192;
  font-size: 17px;
  line-height: 1.32;
  font-weight: 800;
}

.publication-download__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 180px;
  min-height: 40px;
  padding: 9px 18px;
  background: #0064a0;
  color: #ffffff;
  font-size: 16px;
  font-weight: 800;
  text-decoration: none;
}

.legacy-content .publication-download:hover .publication-download__button,
.legacy-content .publication-download:focus-visible .publication-download__button {
  background: #be8c16;
  color: #ffffff;
}

.legacy-content .leftblock1 {
  grid-column: 1 / -1;
}

.legacy-content .leftblock1,
.legacy-content .leftblock2 {
  min-width: 0;
}

.legacy-content .rightblock1,
.legacy-content .rightblock2 {
  min-width: 0;
}

.legacy-content h1 {
  margin: 0 0 18px;
  color: #005192;
  font-size: 32px;
  line-height: 1.12;
  font-weight: 800;
}

.legacy-content h2 {
  margin: 0 0 18px;
  color: #005192;
  font-size: 28px;
  line-height: 1.18;
}

.legacy-content .txt,
.legacy-content .cite,
.legacy-content p,
.legacy-content li {
  color: #23313d;
  font-size: 18px;
  line-height: 1.55;
}

.legacy-content .cite {
  margin: 0 0 18px;
  padding: 18px 20px;
  background: #f5f8fb;
  border-left: 4px solid #f28628;
}

.legacy-content .expert-portrait {
  float: left;
  margin: 0 15px 10px 0;
}

.legacy-content a {
  color: #005192;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.legacy-content a:hover,
.legacy-content a:focus-visible {
  color: #be8c16;
}

.legacy-content a:has(.present1) {
  display: block;
  color: inherit;
  text-decoration: none;
}

.legacy-content ul,
.legacy-content ol {
  padding-left: 24px;
}

.legacy-content img {
  max-width: 100%;
  height: auto;
}

.legacy-content .pub11 {
  display: block;
  width: auto;
  max-width: 100%;
  margin: 0 auto 18px;
}

.legacy-content .pub {
  width: 86px;
  height: 120px;
  object-fit: contain;
}

.legacy-content .present1 {
  display: grid;
  grid-template-columns: 96px minmax(0, 1fr);
  gap: 18px;
  align-items: start;
  width: 100%;
  max-width: 720px;
  margin: 8px 0 22px;
  padding: 18px 20px;
  border: 1px solid #d7dde3;
  background: #ffffff;
  box-shadow: 0 8px 18px rgba(9, 31, 51, 0.06);
}

.legacy-content .present1-left {
  grid-column: 1;
  grid-row: 1 / span 2;
  text-align: center;
}

.legacy-content .present1 > a {
  display: contents;
  color: inherit;
  text-decoration: none;
}

.legacy-content .present1-right {
  grid-column: 2;
  min-width: 0;
  text-align: left;
}

.legacy-content .present1 > br {
  display: none;
}

.legacy-content .present1 > p:not(.rt) {
  grid-column: 2;
}

.legacy-content .present1 h1,
.legacy-content .present1 p {
  color: #23313d;
  text-decoration: none;
  font-size: 14px;
  margin: 0 0 10px;
}

.legacy-content .present1 h1 {
  color: #005192;
  font-size: 18px;
}

.legacy-content .present1 .rt {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 180px;
  min-height: 40px;
  margin-top: 8px;
  padding: 10px 16px;
  color: #ffffff;
  background: #005b9d;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.15;
  text-align: center;
}

.cta-link--disabled {
  background: #aeb9c4;
  color: #ffffff;
  cursor: default;
  pointer-events: none;
}
