:root {
  --color-bg-gray: #fafafa;
  --color-bg-yellow: #fff4e9;
  --color-main-accent: #d61115;
  --color-main-black: #000000;
  --color-main-white: #ffffff;
  --color-black-400: #949494;
  --color-black-500: #686868;
  --color-red-800: #950806;
  --font-default: "Geologica", sans-serif;
  --font-primary: "EB Garamond", serif;
  --font-weight-regular: 400;
  --font-weight-medium: 500;
  --font-weight-semibold: 600;
  --font-weight-bold: 700;
  --line-height-base: 1.5;
  --line-height-tight: 1.2;
  --text-base-size: 1.8rem;
  --text-h1-size: 8.8rem;
  --text-h2-size: 5.6rem;
  --text-h3-size: 4rem;
}

/*! modern-normalize v3.0.1 | MIT License | https://github.com/sindresorhus/modern-normalize */
/*
Document
========
*/
/**
Use a better box model (opinionated).
*/
*,
::before,
::after {
  box-sizing: border-box;
}

html {
  /* Improve consistency of default fonts in all browsers. (https://github.com/sindresorhus/modern-normalize/issues/3) */
  font-family: system-ui, "Segoe UI", Roboto, Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji";
  line-height: 1.15; /* 1. Correct the line height in all browsers. */
  -webkit-text-size-adjust: 100%; /* 2. Prevent adjustments of font size after orientation changes in iOS. */
  tab-size: 4; /* 3. Use a more readable tab size (opinionated). */
}

/*
Sections
========
*/
body {
  margin: 0; /* Remove the margin in all browsers. */
}

/*
Text-level semantics
====================
*/
/**
Add the correct font weight in Chrome and Safari.
*/
b,
strong {
  font-weight: bolder;
}

/**
1. Improve consistency of default fonts in all browsers. (https://github.com/sindresorhus/modern-normalize/issues/3)
2. Correct the odd 'em' font sizing in all browsers.
*/
code,
kbd,
samp,
pre {
  font-family: ui-monospace, SFMono-Regular, Consolas, "Liberation Mono", Menlo, monospace; /* 1 */
  font-size: 1em; /* 2 */
}

/**
Add the correct font size in all browsers.
*/
small {
  font-size: 80%;
}

/**
Prevent 'sub' and 'sup' elements from affecting the line height in all browsers.
*/
sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

/*
Tabular data
============
*/
/**
Correct table border color inheritance in Chrome and Safari. (https://issues.chromium.org/issues/40615503, https://bugs.webkit.org/show_bug.cgi?id=195016)
*/
table {
  border-color: currentcolor;
}

/*
Forms
=====
*/
/**
1. Change the font styles in all browsers.
2. Remove the margin in Firefox and Safari.
*/
button,
input,
optgroup,
select,
textarea {
  font-family: inherit; /* 1 */
  font-size: 100%; /* 1 */
  line-height: 1.15; /* 1 */
  margin: 0; /* 2 */
}

/**
Correct the inability to style clickable types in iOS and Safari.
*/
button,
[type=button],
[type=reset],
[type=submit] {
  -webkit-appearance: button;
}

/**
Remove the padding so developers are not caught out when they zero out 'fieldset' elements in all browsers.
*/
legend {
  padding: 0;
}

/**
Add the correct vertical alignment in Chrome and Firefox.
*/
progress {
  vertical-align: baseline;
}

/**
Correct the cursor style of increment and decrement buttons in Safari.
*/
::-webkit-inner-spin-button,
::-webkit-outer-spin-button {
  height: auto;
}

/**
1. Correct the odd appearance in Chrome and Safari.
2. Correct the outline style in Safari.
*/
[type=search] {
  -webkit-appearance: textfield; /* 1 */
  outline-offset: -2px; /* 2 */
}

/**
Remove the inner padding in Chrome and Safari on macOS.
*/
::-webkit-search-decoration {
  -webkit-appearance: none;
}

/**
1. Correct the inability to style clickable types in iOS and Safari.
2. Change font properties to 'inherit' in Safari.
*/
::-webkit-file-upload-button {
  -webkit-appearance: button; /* 1 */
  font: inherit; /* 2 */
}

/*
Interactive
===========
*/
/*
Add the correct display in Chrome and Safari.
*/
summary {
  display: list-item;
}

:focus,
:focus-visible {
  outline: none;
  box-shadow: none;
}

html {
  font-size: 10px;
  line-height: 1;
}

html,
body {
  height: 100%;
}

body {
  background: var(--color-bg-gray);
  color: var(--color-main-black);
  font-size: var(--text-base-size);
  font-family: var(--font-default);
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  -webkit-text-size-adjust: none;
}
body.page--locked {
  overflow: hidden;
}

a {
  transition: color 0.3s;
  color: var(--color-main-black);
  text-decoration: none;
}
@media (hover: hover) {
  a:hover {
    color: var(--color-main-accent);
  }
}

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

p {
  margin: 0;
}

.backdrop {
  position: fixed;
  inset: 0;
  z-index: 50;
  background-color: rgba(0, 0, 0, 0.8);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.25s ease, visibility 0.25s ease;
}

.backdrop--visible {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  font-family: var(--font-serif);
  font-weight: var(--font-weight-semibold);
  line-height: var(--line-height-tight);
}

h1 {
  font-size: var(--text-h1-size);
}

h2 {
  font-size: var(--text-h2-size);
}

h3 {
  font-size: var(--text-h3-size);
}

.container {
  margin-left: auto;
  margin-right: auto;
  width: 100%;
  max-width: 144rem;
  padding-left: 8rem;
  padding-right: 8rem;
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 70;
  transition: background-color 0.3s ease, box-shadow 0.3s ease;
}
.header--scrolled {
  background-color: var(--color-bg-gray);
  box-shadow: 0 0.1rem 1rem 0 rgba(0, 0, 0, 0.2);
}
.header--search-open {
  background-color: var(--color-bg-yellow);
  overflow-y: auto;
  max-height: 100vh;
}
.header--search-open .header__top {
  background-color: var(--color-bg-yellow);
  position: sticky;
  top: 0;
}
.header__nav--hidden {
  display: none;
}
.header__top {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  padding: 1.2rem 0;
}
.header__main {
  border-top: 0.1rem solid rgba(0, 0, 0, 0.1);
  max-height: 8.4rem;
  overflow: visible;
  opacity: 1;
  visibility: visible;
  transform: translate3d(0, 0, 0);
  transform-origin: top center;
  pointer-events: auto;
  will-change: transform, opacity;
  transition: max-height 0.6s cubic-bezier(0.22, 1, 0.36, 1), transform 0.3s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.3s ease, border-color 0.3s ease, visibility 0s linear 0s;
}
.header--menu-collapsed .header__main {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  visibility: hidden;
  border-top-color: transparent;
  transform: translate3d(0, -1.2rem, 0);
  pointer-events: none;
  transition: max-height 0.3s cubic-bezier(0.4, 0, 1, 1), transform 0.3s cubic-bezier(0.4, 0, 1, 1), opacity 0.3s ease, border-color 0.3s ease, visibility 0s linear 0.3s;
}
.header__list {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0;
  margin: 0;
  list-style: none;
  gap: 2rem;
}
.header__link {
  font-size: 1.1rem;
  line-height: 1;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  display: block;
  padding: 2rem 0;
}
.header__item {
  position: relative;
}
@media (hover: hover) {
  .header__item:hover [data-header-dropdown] {
    opacity: 1;
    transform: translateY(0);
    visibility: visible;
  }
}
.header__dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 23rem;
  box-shadow: 0 0 4rem 0 rgba(0, 0, 0, 0.05);
  background-color: var(--color-main-white);
  border-radius: 0.4rem;
  display: flex;
  flex-direction: column;
  gap: 2.4rem;
  list-style: none;
  padding: 2.4rem;
  margin: 0;
  visibility: hidden;
  opacity: 0;
  transform: translateY(-1rem);
  transition: opacity 0.6s, visibility 0.3s, transform 0.3s;
}
.header__dropdown-link {
  font-size: 1.1rem;
  line-height: 1;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}
.header__search-toggle {
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  cursor: pointer;
  border: none;
  padding: 0;
  margin: 0;
  background-color: transparent;
  transition: color 0.3s;
}
@media (hover: hover) {
  .header__search-toggle:hover {
    color: var(--color-main-accent);
  }
}
.header__search-icon {
  display: block;
  width: 3.2rem;
  height: 3.2rem;
}
.header__search-icon[data-search-icon-hide] {
  display: none;
}
.header__search-toggle--active [data-search-icon-show] {
  display: none;
}
.header__search-toggle--active [data-search-icon-hide] {
  display: block;
}
.header__search {
  padding: 2rem 0;
  display: none;
  max-width: 75.2rem;
  margin: 0 auto;
}
.header__search--active {
  display: block;
}
.header__search-tags {
  padding: 0;
  margin: 1.2rem 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  gap: 2.4rem;
  font-size: 1.8rem;
  line-height: 1.3;
  color: var(--color-main-black);
  font-family: var(--font-primary);
}
.header__search-results {
  margin: 5.6rem 0;
}
.header__search-list {
  padding: 0;
  margin: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
}
.header__search-list-item {
  padding-top: 3.2rem;
  padding-bottom: 3.2rem;
  border-bottom: 0.1rem dashed rgba(0, 0, 0, 0.1);
}
.header__search-list-item:first-child {
  padding-top: 0;
}
.header__search-list-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.global-search__input {
  color: var(--color-main-black);
  flex: 1 1 auto;
  min-width: 0;
  border: 0;
  background: transparent;
  font-size: 3.2rem;
  line-height: 1;
  font-weight: 400;
  font-family: var(--font-primary);
  -webkit-appearance: none;
  appearance: none;
}
.global-search__input::placeholder {
  color: var(--color-black-500);
  transition: opacity 0.3s;
}
.global-search__input::-webkit-search-cancel-button {
  display: none;
  -webkit-appearance: none;
  appearance: none;
}
.global-search__input:focus::placeholder {
  opacity: 0;
}
.global-search__clear {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translate(var(--clear-offset, 0), -50%);
  border: none;
  background: transparent;
  color: var(--color-black-500);
  width: 3.2rem;
  height: 3.2rem;
  padding: 0;
  margin: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.2s ease, color 0.2s ease;
}
.global-search__clear svg {
  width: 100%;
  height: 100%;
  display: block;
}
.global-search__clear--visible {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
.global-search__field {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  border-bottom: 0.1rem solid rgb(0, 0, 0);
  padding-bottom: 2rem;
  position: relative;
}
.global-search__submit {
  border: none;
  background-color: transparent;
  padding: 0;
  margin: 0;
  cursor: pointer;
  color: var(--color-main-black);
}
.global-search__submit:hover {
  color: var(--color-main-accent);
}
.global-search__submit-icon {
  width: 3.2rem;
  height: 3.2rem;
}

.layout-footer {
  background-color: var(--color-main-black);
  color: var(--color-black-400);
}
.layout-footer__top {
  padding-top: 2.8rem;
  padding-bottom: 2.8rem;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
}
.layout-footer__top-right {
  justify-self: end;
}
.layout-footer__logo {
  display: block;
  max-width: 18.4rem;
}
.layout-footer__title {
  display: block;
  text-transform: uppercase;
  font-family: var(--font-primary);
  font-weight: 600;
  letter-spacing: 0.05em;
  font-size: 1.4rem;
  line-height: 1;
  color: var(--color-main-white);
  margin-bottom: 2rem;
}
.layout-footer__body {
  border-top: 0.1rem solid rgba(255, 255, 255, 0.2);
  padding: 3.2rem 0;
}
.layout-footer__bottom {
  border-top: 0.1rem solid rgba(255, 255, 255, 0.2);
  padding-top: 2rem;
  padding-bottom: 3.2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.layout-footer__copyright {
  margin: 0;
  font-size: 1.1rem;
  line-height: 1;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}
.layout-footer__grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 2.85fr;
  gap: 4.8rem;
}

.footer-menu {
  padding: 0;
  margin: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}
.footer-menu__link {
  font-weight: 300;
  font-size: 1.4rem;
  line-height: 1.4;
  color: var(--color-black-400);
}

.footer-legal {
  padding: 0;
  margin: 0;
  list-style: none;
  display: flex;
  flex-direction: row;
  gap: 3.2rem;
}
.footer-legal__link {
  text-transform: uppercase;
  color: var(--color-black-400);
  letter-spacing: 0.03em;
  font-size: 1.1rem;
  line-height: 1;
}

.footer-contacts {
  color: var(--color-black-400);
  font-weight: 300;
  font-size: 1.4rem;
  line-height: 1.4;
  max-width: 42rem;
  margin-left: auto;
}
.footer-contacts__address {
  font-style: normal;
  margin-bottom: 1.2rem;
}
.footer-contacts__line + .footer-contacts__line {
  margin-top: 1.2rem;
}
.footer-contacts__link {
  color: var(--color-black-400);
}
.footer-contacts__socials {
  margin: 2rem 0 0 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: row;
  gap: 1.2rem;
}
.footer-contacts__social-link {
  color: var(--color-main-white);
}
.footer-contacts__social-icon {
  width: 3.2rem;
  height: 3.2rem;
  display: block;
}

.mode-inclusive {
  padding: 0;
  margin: 0 0 0 auto;
  cursor: pointer;
  border: none;
  background-color: transparent;
  color: var(--color-main-white);
  width: 3.2rem;
  height: 3.2rem;
  transition: color 0.3s;
}
.mode-inclusive__icon {
  width: 3.2rem;
  height: 3.2rem;
}
@media (hover: hover) {
  .mode-inclusive:hover {
    color: var(--color-main-accent);
  }
}

.card-primary {
  background-color: var(--color-main-black);
  color: var(--color-main-white);
  border-radius: 0.4rem;
  display: block;
  padding: 2.4rem;
}
.card-primary__title {
  display: block;
  font-weight: 500;
  font-size: 2.4rem;
  line-height: 1.1;
  font-family: var(--font-primary);
}
.card-primary__description {
  margin-top: 0.4rem;
  font-size: 1.8rem;
  line-height: 1.3;
  font-style: italic;
  font-family: var(--font-primary);
}
.card-primary__description p {
  margin: 0;
}
.card-primary__footer {
  margin-top: 1.4rem;
}
.card-primary__link {
  text-transform: uppercase;
  line-height: 1;
  letter-spacing: 0.03em;
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.6);
}

.editorial-grid {
  --gap: 4rem;
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(0, 1fr) minmax(0, 1fr);
  column-gap: var(--gap);
  align-items: start;
}
.editorial-grid__main {
  grid-column: 1/span 2;
  min-width: 0;
}
.editorial-grid__aside {
  grid-column: 3;
  min-width: 0;
}
.editorial-grid__columns {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(0, 1fr);
  column-gap: var(--gap);
  align-items: start;
  width: 100%;
  min-width: 0;
}
.editorial-grid__column {
  min-width: 0;
}
.editorial-grid__column--border {
  position: relative;
  height: 100%;
}
.editorial-grid__column--border:before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  bottom: 0;
  left: -2rem;
  border-left: 0.1rem dashed rgba(0, 0, 0, 0.1);
}

.post-list {
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  list-style: none;
  gap: 4.8rem;
}

.bookshelf {
  --book-w: 27.4rem;
  --book-h: 37.2rem;
  --overlap: 0px;
  --hover-x: -1.2rem;
  --hover-y: 0;
  --hover-duration: 0.32s;
}
.bookshelf__list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  width: 100%;
  --count: 1;
}
.bookshelf__item {
  position: relative;
  flex: 0 0 var(--book-w);
  height: var(--book-h);
  z-index: 1;
  transition: transform var(--hover-duration) ease;
}
.bookshelf__item + .bookshelf__item {
  margin-inline-start: calc(var(--overlap) * -1);
}
@media (hover: hover) {
  .bookshelf__item:not(:last-child):hover {
    transform: translate(var(--hover-x), var(--hover-y));
  }
}
.bookshelf__cover {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: filter var(--hover-duration) ease;
}
.bookshelf__link {
  display: block;
  width: var(--book-w);
  height: var(--book-h);
}

.section {
  margin-top: 10.4rem;
  margin-bottom: 10.4rem;
}

.section-header {
  padding-top: 1.6rem;
  border-top: 0.1rem solid rgba(0, 0, 0, 0.1);
  margin-bottom: 5.6rem;
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}
.section-header--left {
  align-items: flex-start;
  text-align: left;
}
.section-header--center {
  align-items: center;
  text-align: center;
}
.section-header--right {
  align-items: flex-end;
  text-align: right;
}
.section-header__title {
  display: block;
  font-family: var(--font-primary);
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: 0.08em;
  font-size: 2.8rem;
  line-height: 1.1;
  text-align: inherit;
}
.section-header__description {
  width: 100%;
  max-width: 56rem;
  font-size: 1.8rem;
  line-height: 1.3;
  text-align: inherit;
  font-style: italic;
  font-family: var(--font-primary);
}
.section-header__description p {
  margin: 0;
}

.section-hero {
  background-color: var(--color-bg-yellow);
  padding-top: 11.2rem;
  padding-bottom: 18rem;
  margin: 0;
}
.section-hero__media {
  margin: 15rem -8rem 8rem;
  aspect-ratio: 1482/248;
  background: url("../../images/elements/nii-iat.svg") 50% 50% no-repeat;
  background-size: contain;
  position: relative;
}
.section-hero__cover {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -62%);
  width: 35%;
  aspect-ratio: 508/333;
}
.section-hero__image {
  width: 100%;
  height: auto;
  display: block;
  opacity: 0;
  transition: opacity 0.45s ease;
  will-change: opacity;
}
.section-hero__image--loaded {
  opacity: 1;
}
.section-hero__body {
  text-align: center;
  color: var(--color-main-black);
  max-width: 75rem;
  margin-left: auto;
  margin-right: auto;
  font-family: var(--font-primary);
}
.section-hero__title {
  font-size: 4rem;
  line-height: 1;
  font-weight: 400;
}
.section-hero__content {
  margin-top: 1.6rem;
  font-style: italic;
  font-size: 1.8rem;
  line-height: 1.3;
}
.section-hero__content p {
  margin: 0;
}

.section-directions {
  margin: -10rem 0 10rem;
}
.section-directions__list {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 4rem;
}

.section-activities__list {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 2.4rem;
  margin: 0;
  padding: 0;
  list-style: none;
}
.section-activities__item {
  min-width: 0;
}

.section-feed__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  column-gap: 4rem;
  row-gap: 3.2rem;
}
.section-feed__header {
  margin-bottom: 0;
}
.section-feed__col {
  display: grid;
  gap: 3.2rem;
  margin: 0;
  padding: 0;
  list-style: none;
  align-content: start;
}
.section-feed__item {
  min-width: 0;
}

@media (max-width: 1200px) {
  .section-activities__list {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}
@media (max-width: 900px) {
  .section-feed__grid {
    grid-template-columns: 1fr;
  }
  .section-activities__list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 640px) {
  .section-activities__list {
    grid-template-columns: 1fr;
  }
}
.section-media-facts .post-list {
  gap: 4rem;
}

.section-intro {
  margin: 0;
}
.section-intro__hero {
  background-color: var(--color-main-black);
  padding-top: 19.2rem;
  padding-bottom: 8rem;
  border-bottom: 0.1rem solid rgba(255, 255, 255, 0.2);
}
.section-intro__hero-body {
  text-align: center;
}
.section-intro__hero-title {
  font-family: var(--font-primary);
  font-size: 5.6rem;
  line-height: 1;
  font-weight: 400;
  color: var(--color-main-white);
}
.section-intro__tabs {
  background-color: var(--color-main-black);
  border-bottom: 0.1rem solid rgba(255, 255, 255, 0.2);
  padding: 3.2rem 0;
}
.section-intro__footer-strip {
  height: 10.4rem;
  background-color: var(--color-main-black);
}

.intro-tabs {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2rem;
}
.intro-tabs__link {
  min-height: 3.1rem;
  padding: 0.1rem 1.6rem 0.4rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-primary);
  font-style: italic;
  font-size: 1.8rem;
  line-height: 1.3;
  color: var(--color-main-white);
  border: 0.1rem solid transparent;
  border-radius: 10rem;
}
.intro-tabs__link--active {
  color: var(--color-main-accent);
  border-color: var(--color-main-accent);
}

.intro-group {
  padding-top: 10.4rem;
  background-color: var(--color-main-white);
}
.intro-group__inner {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.intro-list {
  width: 100%;
  max-width: 75.2rem;
  margin: 0;
  padding: 0;
  list-style: none;
}
.intro-list__item {
  padding-bottom: 3.2rem;
  border-bottom: 0.1rem solid rgba(0, 0, 0, 0.1);
}
.intro-list__item + .intro-list__item {
  padding-top: 3.2rem;
}

.section-research-catalog {
  margin: 0;
}
.section-research-catalog__hero {
  background-color: var(--color-main-black);
  padding-top: 16rem;
  padding-bottom: 5.6rem;
  border-bottom: 0.1rem solid rgba(255, 255, 255, 0.2);
}
.section-research-catalog__hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(24rem, 36rem);
  align-items: center;
  gap: 4rem;
}
.section-research-catalog__hero-title {
  color: var(--color-main-white);
  font-family: var(--font-primary);
  font-size: 5.6rem;
  line-height: 1;
  font-weight: 400;
}
.section-research-catalog__hero-description {
  margin-top: 1.6rem;
  color: rgba(255, 255, 255, 0.7);
  font-family: var(--font-primary);
  font-style: italic;
  font-size: 1.8rem;
  line-height: 1.3;
}
.section-research-catalog__hero-description p {
  margin: 0;
}
.section-research-catalog__hero-media img {
  display: block;
  width: 100%;
  max-width: 34rem;
  margin-left: auto;
  opacity: 0.85;
}
.section-research-catalog__tabs {
  background-color: var(--color-main-black);
  border-bottom: 0.1rem solid rgba(255, 255, 255, 0.2);
  padding: 2.4rem 0 3.2rem;
}
.section-research-catalog__footer-strip {
  height: 10.4rem;
  background-color: var(--color-main-black);
}

.section-research-catalog-group {
  margin-top: 10.4rem;
  margin-bottom: 10.4rem;
}

.post-card {
  font-family: var(--font-primary);
}
.post-card__category {
  color: var(--color-main-accent);
  font-size: 2rem;
  line-height: 1.2;
  font-style: italic;
  margin-bottom: 0.8rem;
}
.post-card__category-link, .post-card__category-text {
  color: inherit;
}
.post-card__title {
  font-size: 2.4rem;
  font-weight: 500;
  line-height: 1.1;
  margin-bottom: 0.8rem;
}
.post-card__title-link {
  color: var(--color-main-black);
}
.post-card__excerpt {
  font-size: 1.8rem;
  line-height: 1.3;
}
.post-card__excerpt p {
  margin: 0;
}
.post-card__header .post-card__media {
  margin-top: 1.2rem;
  margin-bottom: 1.2rem;
}
.post-card__content .post-card__media {
  margin-top: 2rem;
  margin-bottom: 1.6rem;
}
.post-card__image {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 0.4rem;
}
.post-card__author {
  display: flex;
  gap: 1.2rem;
  align-items: center;
}
.post-card__author-avatar {
  width: 4.8rem;
  height: 4.8rem;
  object-fit: contain;
  object-position: 50% 50%;
}
.post-card__author-name {
  margin: 0;
  font-style: italic;
}
.post-card__author-name a {
  color: var(--color-main-accent);
}
@media (hover: hover) {
  .post-card__author-name a:hover {
    color: var(--color-red-800);
  }
}
.post-card__date {
  color: var(--color-black-500);
  font-style: italic;
  font-size: 1.6rem;
  line-height: 1.2;
}
.post-card__footer {
  margin-top: 2rem;
}
.post-card--headline-listing .post-card__category {
  margin-bottom: 1rem;
  font-size: 1.1rem;
  font-style: normal;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  font-family: var(--font-secondary);
}
.post-card--intro-listing .post-card__category {
  font-size: 1.1rem;
  line-height: 1;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}
.post-card--intro-listing .post-card__title {
  margin-bottom: 0.8rem;
  font-size: 2.4rem;
  line-height: 1.1;
  font-weight: 500;
}
.post-card--intro-listing .post-card__excerpt {
  font-size: 1.8rem;
  line-height: 1.3;
}
.post-card--intro-listing .post-card__footer {
  margin-top: 1.6rem;
}
.post-card--intro-listing .post-card__date {
  font-size: 1.6rem;
  line-height: 1.2;
}

.subscribe-card {
  background-color: var(--color-main-black);
  color: var(--color-main-white);
  border-radius: 0.4rem;
  padding: 1.6rem 2rem 2rem;
  min-height: 13.2rem;
  display: flex;
  gap: 2rem;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
  background-image: url("../../images/elements/subscribe.png");
  background-size: 16.3rem 12.4rem;
  background-repeat: no-repeat;
  background-position: 100% 100%;
}
.subscribe-card__title {
  margin: 0;
  font-size: 1.8rem;
  line-height: 1.3;
  font-weight: 400;
  font-family: var(--font-primary);
  max-width: 22rem;
}
.subscribe-card__action {
  text-transform: uppercase;
  letter-spacing: 0.03em;
  font-size: 1.1rem;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.6);
  background-color: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  margin: 0;
  transition: color 0.3s;
}
@media (hover: hover) {
  .subscribe-card__action:hover {
    color: var(--color-main-accent);
  }
}

.facts-card {
  background: var(--color-bg-yellow);
  font-family: var(--font-primary);
  padding: 2.4rem;
  border-radius: 0.4rem;
}
.facts-card__list {
  margin: 0;
  padding: 0;
  list-style: none;
}
.facts-card__item {
  padding: 2rem 0;
  border-bottom: 0.1rem dashed rgba(0, 0, 0, 0.1);
}
.facts-card__item:first-child {
  padding-top: 0;
}
.facts-card__item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}
.facts-card__title {
  margin: 0 0 0.8rem;
  color: var(--color-main-accent);
  font-size: 2.4rem;
  line-height: 1.1;
  font-weight: 500;
}
.facts-card__text {
  font-size: 1.8rem;
  line-height: 1.3;
  font-style: italic;
}
.facts-card__text p {
  margin: 0;
}