.quote-block, .quote-block-light, .quote-block-dark, .review-card__message p:first-child {
  display: block;
  width: 100%;
  min-height: var(--icon-size, 40px);
  position: relative;
  padding-left: var(--left-pad, 3rem);
  font-size: 1.16em;
  font-weight: 600;
  text-align: left;
  line-height: 1.4;
  background-position: 0 0;
  background-size: var(--icon-size);
  background-repeat: no-repeat;
}

@media screen and (max-width: 559px) {
  .quote-block, .quote-block-light, .quote-block-dark, .review-card__message p:first-child {
    --icon-size: 36px;
  }
}
@media screen and (min-width: 560px) and (max-width: 1559px) {
  .quote-block, .quote-block-light, .quote-block-dark, .review-card__message p:first-child {
    --left-pad: 4.5rem;
  }
}
@media screen and (min-width: 1560px) {
  .quote-block, .quote-block-light, .quote-block-dark, .review-card__message p:first-child {
    --left-pad: 5rem;
  }
}
.quote-block-dark, .review-card__message p:first-child {
  background-image: url(/assets/icon-blockquote-white-b7550725cbd4d7354afba3b57d0d8f6b139bd2f1487c6090e18d730c0e4e84f1.svg);
}

.quote-block-light {
  background-image: url(/assets/icon-blockquote-991d07cd45e5ef90949cb77bc08338225b17d450447f0e407df362b8e95ff918.svg);
}

.load-more-btn {
  display: inline-flex;
  flex-flow: row nowrap;
  align-items: center;
  justify-content: center;
  text-transform: uppercase;
  color: #868686;
  font-weight: 700;
  line-height: 1;
  transition: color 0.25s;
  font-size: 14px;
}

.load-more-btn:hover {
  color: var(--color-accent);
}

.load-more-btn span,
.load-more-btn svg {
  display: block;
}

.load-more-btn svg {
  width: 40px;
  height: 40px;
  margin-right: 0.5rem;
}

@media screen and (min-width: 1559px) {
  .load-more-btn {
    font-size: 20px;
  }
  .load-more-btn svg {
    width: 58px;
    height: 58px;
  }
}
.btn-transparent {
  --font-size: 12px;
  --btn-height: 40px;
  --padding-x: 2rem;
  display: inline-block;
  height: var(--btn-height);
  line-height: calc(var(--btn-height) - 2px);
  margin: 0;
  padding: 0 var(--padding-x);
  background: transparent none;
  outline: 0 none;
  text-transform: uppercase;
  font-weight: 600;
  font-size: var(--font-size);
  border: 1px solid transparent;
}

@media screen and (min-width: 768px) and (max-width: 1559px) {
  .btn-transparent {
    --padding-x: 3rem;
  }
}
@media screen and (min-width: 1560px) {
  .btn-transparent {
    --padding-x: 6rem;
    --btn-height: 78px;
    --font-size: 20px;
  }
}
.btn-transparent {
  border-color: #fff;
  color: #fff;
  background-color: transparent;
  transition: border-color 0.25s, background-color 0.25s, color 0.25s;
}

.btn-transparent:hover {
  color: var(--color-bb-black);
  background-color: var(--color-accent);
  border-color: var(--color-accent);
}

.btn-yellow {
  --font-size: 12px;
  --btn-height: 40px;
  --padding-x: 2rem;
  display: inline-block;
  height: var(--btn-height);
  line-height: calc(var(--btn-height) - 2px);
  margin: 0;
  padding: 0 var(--padding-x);
  background: transparent none;
  outline: 0 none;
  text-transform: uppercase;
  font-weight: 600;
  font-size: var(--font-size);
  border: 1px solid transparent;
}

@media screen and (min-width: 768px) and (max-width: 1559px) {
  .btn-yellow {
    --padding-x: 3rem;
  }
}
@media screen and (min-width: 1560px) {
  .btn-yellow {
    --padding-x: 6rem;
    --btn-height: 78px;
    --font-size: 20px;
  }
}
.btn-yellow {
  border-color: var(--color-accent);
  color: var(--color-bb-black);
  background-color: var(--color-accent);
  transition: border-color 0.25s, background-color 0.25s, color 0.25s;
}

.btn-yellow:hover {
  color: var(--color-accent);
  background-color: transparent;
}

@media screen and (max-width: 559px) {
  .btn-filter {
    --btn-x-pad: 0.5rem;
    --btn-height: 32px;
    --btn-icon-size: 15px;
  }
  .btn-filter-label {
    display: none;
  }
}
@media screen and (min-width: 560px) and (max-width: 1559px) {
  .btn-filter {
    --btn-x-pad: 1.5rem;
    --btn-height: 40px;
    --btn-icon-size: 19px;
    --label-font-size: 14px;
    --label-x-marg: 0.5rem;
  }
}
@media screen and (min-width: 1560px) {
  .btn-filter {
    --btn-x-pad: 2.5rem;
    --btn-height: 64px;
    --btn-icon-size: 30px;
    --label-font-size: 20px;
    --label-x-marg: 0.75rem;
  }
}
.btn-filter {
  display: inline-flex;
  flex-flow: row nowrap;
  align-items: center;
  justify-content: flex-end;
  margin: 0;
  padding: 0 var(--btn-x-pad);
  height: var(--btn-height);
  line-height: var(--btn-height);
  color: var(--color-bb-black);
  background-color: var(--color-accent);
  border: 1px solid var(--color-accent);
  outline: 0 none;
}

.btn-filter-label {
  margin-right: var(--label-x-marg, 0);
  text-transform: uppercase;
  font-weight: 600;
  font-size: var(--label-font-size, 14px);
  line-height: 1;
}

.btn-filter-icon {
  display: block;
  width: var(--btn-icon-size);
  height: var(--btn-icon-size);
}

.btn-filter-icon svg {
  display: block;
  width: 100%;
  height: auto;
}

/* Favorite */
.btn-favorite-container {
  position: relative;
}

.btn-favorite {
  --base-color: var(--favorite-base-color, #454444);
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 1px solid var(--base-color);
  outline: 0 none;
  background-color: transparent;
  color: var(--base-color);
  transition: color 0.25s, border-color 0.25s, background-color 0.25s;
  position: relative;
  z-index: 2;
}

.btn-favorite svg {
  display: block;
  width: 16px;
  height: 16px;
  object-fit: contain;
}

.btn-favorite:hover {
  background-color: var(--color-accent);
  border-color: var(--color-accent);
  color: var(--color-text-base);
}

.tooltip-message {
  position: absolute;
  top: 0;
  height: calc(100% + 16px);
  background: rgba(0, 0, 0, 0.8);
  white-space: nowrap;
  font-size: 12px;
  display: flex;
  align-items: center;
  color: #fff;
  z-index: 1;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s, visibility 0s 0.25s;
}

.variant-page {
  left: 0;
  padding-left: 56px;
  padding-right: 16px;
  transform: translate(-8px, -8px);
}

.variant-card {
  right: 0;
  padding-right: 56px;
  padding-left: 16px;
  transform: translate(8px, -8px);
}

@media screen and (min-width: 1560px) {
  .tooltip-message {
    height: calc(100% + 32px);
    font-size: 16px;
  }
  .variant-page {
    padding-left: 80px;
    padding-right: 24px;
    transform: translate(-16px, -16px);
  }
  .variant-card {
    right: 0;
    padding-right: 80px;
    padding-left: 24px;
    transform: translate(16px, -16px);
  }
}
.btn-favorite-container:hover .tooltip-message {
  opacity: 1;
  visibility: visible;
  transition: opacity 0.25s;
}

/*
.tooltip-message {
  position: absolute;
  left: 50%;
  bottom: 100%;
  background-color: var(--tooltip-bg-color, #282828);
  color: var(--tooltip-text-color, #fff);
  font-size: 12px;
  white-space: nowrap;
  padding: 4px 8px;
  // transform: translate(-50%, -16px);
  transform: translate(-50%, -8px);
  opacity: 0;
  // visibility: hidden;

  transition: transform 0.25s,
              opacity 0.25s,
              visibility 0s 0.25s;

  box-shadow: 0 0 2px 0 rgba(255, 255, 255, 0.5);
}

.btn-favorite:hover .tooltip-message {
  transform: translate(-50%, -12px);
  opacity: 1;
  // visibility: visible;

  transition: transform 0.25s,
              opacity 0.25s;
}

.tooltip-message::before {
  content: '';
  display: block;

  position: absolute;
  top: 100%;
  left: 50%;


  width: 0px;
  height: 0px;
  border-style: solid;
  border-width: 8px 8px 0 8px;
  border-color: var(--tooltip-bg-color, #282828) transparent transparent transparent;
  transform: rotate(0deg) translateX(-50%);
}
*/
@media screen and (min-width: 1024px) {
  .btn-favorite {
    width: 40px;
    height: 40px;
  }
  .btn-favorite svg {
    width: 18px;
    height: 18px;
  }
}
@media screen and (min-width: 1560px) {
  .btn-favorite {
    width: 52px;
    height: 52px;
  }
  .btn-favorite svg {
    width: 24px;
    height: 24px;
  }
}
.action-container {
  margin-top: 1rem;
  text-align: center;
  line-height: 1.3;
}

.page-call2action,
.page-call2action-body {
  position: relative;
}

.page-call2action-picture {
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  object-fit: cover;
}

.page-call2action-title {
  text-transform: uppercase;
  font-size: 24px;
  font-weight: 700;
  letter-spacing: 0.15em;
}

.page-call2action-text,
.page-call2action-btn {
  margin-top: 1rem;
}

.page-call2action-btn {
  display: inline-block;
  padding: 0 1rem;
  height: 52px;
  line-height: 52px;
  text-transform: uppercase;
  color: #161616;
  font-weight: 600;
  background-color: var(--color-accent);
  border: 1px solid var(--color-accent);
  transition: color 0.25s, background-color 0.25s;
}

.page-call2action-btn:hover {
  background-color: transparent;
  color: var(--color-accent);
}

@media screen and (max-width: 559px) {
  .action-container {
    padding: 0;
  }
  .page-call2action-body {
    padding: 2rem var(--x-pad);
  }
}
@media screen and (min-width: 560px) {
  .page-call2action-body {
    padding: 5rem var(--x-pad);
  }
}
@media screen and (min-width: 768px) {
  .page-call2action-title {
    font-size: 28px;
  }
}
@media screen and (min-width: 1024px) {
  .page-call2action-title {
    font-size: 32px;
  }
  .page-call2action-text {
    font-size: 20px;
  }
  .page-call2action-btn {
    padding: 0 2rem;
  }
}
@media screen and (min-width: 1560px) {
  .page-call2action-title {
    font-size: 40px;
  }
  .page-call2action-text {
    font-size: 24px;
  }
  .page-call2action-btn {
    font-size: 20px;
    height: 77px;
    line-height: 77px;
    padding: 0 3rem;
  }
}
.big-varaint {
  display: grid;
  grid-template-columns: 100%;
  grid-template-rows: auto;
  align-items: center;
}

.big-varaint::before,
.big-varaint .page-call2action-body {
  grid-row: 1/2;
  grid-column: 1/2;
}

.big-varaint::before {
  content: "";
  display: block;
  width: 100%;
  height: 0;
  padding-top: 35%;
}

.big-varaint .page-call2action-title {
  color: var(--color-accent);
  font-size: 32px;
  letter-spacing: 0;
  font-weight: 800;
}

.big-varaint .page-call2action-text,
.big-varaint .page-call2action-btn {
  margin-top: 1.5em;
}

@media screen and (min-width: 768px) {
  .big-varaint .page-call2action-title {
    font-size: 64px;
  }
}
@media screen and (min-width: 1280px) {
  .big-varaint .page-call2action-title {
    font-size: 72px;
  }
}
@media screen and (min-width: 1560px) {
  .big-varaint .page-call2action-title {
    font-size: 124px;
  }
}
.mvd-counter.with-summary {
  max-width: unset;
}

.summary-small {
  border: 1px solid white;
  display: inline-flex;
}

.summary-big {
  display: inline-grid;
  grid-template-columns: auto;
  grid-template-rows: 1fr 1fr;
}

.counter-small-data {
  display: flex;
  flex-flow: row nowrap;
  align-items: center;
  justify-content: center;
  padding: 0.5em 3em;
}

.counter-small-desc {
  text-transform: uppercase;
  font-size: 0.6em;
  line-height: 1.1;
  font-weight: 600;
  margin-left: 1em;
  padding-top: 0.1em;
}

.counter-small-value {
  font-size: 1.166em;
  font-weight: 500;
  letter-spacing: 0.31em;
}

.summary-big .btn-transparent {
  text-align: center;
}

.summary-big .counter-small-data {
  border-style: solid;
  border-color: white;
  border-width: 1px 1px 0;
}

.main-visual {
  display: grid;
  width: 100%;
  grid-template-columns: 100%;
  --viewport-dvh: 100vh;
  position: relative;
}

@supports (height: 100svh) {
  .main-visual {
    --viewport-dvh: 100svh;
  }
}
.main-visual-image {
  z-index: -1;
}

.mvd-header,
.mvd-label {
  text-transform: uppercase;
}

.mvd-lead,
.mvd-label {
  line-height: 1.3;
}

@media screen and (max-width: 767px) {
  .main-visual {
    grid-template-rows: var(--viewport-dvh) auto;
  }
  .main-visual-image,
  .main-visual-content {
    grid-area: 1/1/2/2;
  }
  .main-visual-content {
    align-self: end;
    padding-top: 72px;
    padding-bottom: calc(var(--x-pad) + env(safe-area-inset-bottom));
  }
  .main-visual-news {
    grid-area: 2/1/3/2;
  }
  .mvd-label {
    font-size: 12px;
  }
  .mvd-header {
    font-size: 42px;
  }
  .mvd-lead {
    font-size: 14px;
    line-height: 1.3;
  }
  .mvd-header,
  .mvd-header + .mvd-label,
  .mvd-lead {
    margin-top: 0.5rem;
  }
  .mvd-counter {
    margin-top: 1rem;
  }
}
@media screen and (max-width: 767px) and (orientation: landscape) {
  .main-visual-content {
    padding-bottom: calc(var(--x-pad) + env(safe-area-inset-bottom));
  }
}
@media screen and (min-width: 768px) {
  .main-visual {
    min-height: var(--viewport-dvh);
    grid-template-rows: 1fr auto 1fr;
  }
  .main-visual-news {
    align-self: end;
  }
  .main-visual-image {
    grid-area: 1/1/4/2;
  }
  .main-visual-content {
    grid-area: 2/1/3/2;
  }
  .main-visual-news {
    grid-area: 3/1/4/2;
  }
  .mvd-lead {
    max-width: 500px;
  }
  .mvd-label {
    margin-top: 1rem;
  }
}
@media screen and (min-width: 768px) and (max-width: 1559px) {
  .mvd-counter {
    max-width: 310px;
  }
}
@media screen and (min-width: 1560px) {
  .mvd-counter {
    max-width: 430px;
  }
}
@media screen and (min-width: 768px) and (max-width: 1559px) {
  .mvd-label {
    font-size: 20px;
  }
  .mvd-header {
    font-size: 96px;
  }
  .mvd-header_subheader {
    font-size: 52px;
  }
  .mvd-lead {
    margin-top: 1rem;
  }
  .mvd-counter {
    margin-top: 2rem;
  }
}
@media screen and (min-width: 1280px) {
  .mvd-header {
    max-width: 76%;
  }
  .mvd-header_subheader {
    max-width: 70%;
  }
}
@media screen and (min-width: 1560px) {
  .mvd-label {
    font-size: 30px;
  }
  .mvd-header {
    font-size: 138px;
    max-width: 85%;
  }
  .mvd-header_subheader {
    font-size: 74px;
    max-width: 60%;
  }
  .mvd-lead {
    font-size: 24px;
    max-width: 752px;
    margin-top: 1.5rem;
  }
  .mvd-counter {
    margin-top: 2rem;
  }
}
.text-box-content {
  line-height: 1.6;
}

.text-box-content > *:not(:first-child) {
  /* margin-top: 1.78em; last comments */
  margin-top: 1.5em;
}

.text-box-content blockquote {
  display: block;
  width: 100%;
  position: relative;
  padding-left: 3rem;
  font-weight: 600;
}

.text-box-content blockquote::before {
  content: "";
  display: block;
  width: 40px;
  height: 40px;
  position: absolute;
  top: 0;
  left: 0;
  background: url(/assets/icon-blockquote-991d07cd45e5ef90949cb77bc08338225b17d450447f0e407df362b8e95ff918.svg) 0 0/contain no-repeat;
}

.text-box-content ul,
.text-box-content ol {
  padding-left: 2em;
}

.text-box-content li {
  display: list-item;
}

.text-box-content li:not(:first-child) {
  margin-top: 1em;
}

.text-box-content ul li {
  list-style-type: disc;
}

.text-box-content ol li {
  list-style-type: decimal;
}

.text-box-content a {
  text-decoration: underline;
}

.text-box-content a:hover {
  text-decoration: none;
}

.text-box-content img {
  display: block;
  width: 100%;
  height: auto;
}

.cols-2-list {
  display: grid;
  width: 100%;
  column-gap: var(--x-pad);
  row-gap: calc(1.5 * var(--x-pad));
}

@media screen and (min-width: 480px) {
  .cols-2-list {
    grid-template-columns: repeat(2, 1fr);
  }
}
/* new variant */
.pdf-file-list {
  display: grid;
  width: 100%;
  column-gap: var(--x-pad);
  row-gap: calc(1.5 * var(--x-pad));
}

@media screen and (min-width: 480px) {
  .pdf-file-list {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (min-width: 1560px) {
  .pdf-file-list {
    column-gap: calc(1.5 * var(--x-pad));
  }
}
.presentation-preview-list {
  display: grid;
  width: 100%;
}

@media screen and (max-width: 480px) {
  .presentation-preview-list {
    grid-template-columns: 100%;
    gap: 1.5rem;
  }
  .presentation-preview-item:not(:first-child) {
    border-top: 1px solid #3B3B3B;
    padding-top: 1.5rem;
  }
}
@media screen and (min-width: 479px) and (max-width: 767px) {
  .presentation-preview-list {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
}
@media screen and (min-width: 768px) and (max-width: 1023px) {
  .presentation-preview-list {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
}
@media screen and (min-width: 1024px) and (max-width: 1279px) {
  .presentation-preview-list {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
  }
}
@media screen and (min-width: 1280px) and (max-width: 1559px) {
  .presentation-preview-list {
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
  }
}
@media screen and (min-width: 1560px) {
  .presentation-preview-list {
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
  }
}
.collection-pic,
.publication-pic {
  display: block;
}

.collection-pic img {
  display: block;
  width: 100%;
  height: auto;
}

.publication-pic img {
  display: block;
  width: 100%;
  object-fit: cover;
}

.locked-pic {
  position: relative;
  cursor: pointer;
}

.locked-pic::after {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  background: rgba(0, 0, 0, 0.5);
}

.locked-pic svg {
  display: block;
  width: 42px;
  height: 42px;
  height: auto;
  position: absolute;
  top: 8px;
  left: 8px;
  z-index: 3;
}

@supports (aspect-ratio: 16/9) {
  .publication-pic img {
    height: auto;
    aspect-ratio: 16/9;
  }
}
@supports not (aspect-ratio: 16/9) {
  .publication-pic {
    position: relative;
  }
  .publication-pic::before {
    content: "";
    display: block;
    width: 100%;
    padding-top: 56.25%;
  }
  .publication-pic img {
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
  }
}
.collection-desc,
.collection-title,
.collection-author {
  margin-top: 0.25em;
}

.collection-desc {
  line-height: 1.3;
}

.collection-date,
.collection-author {
  font-size: 12px;
  font-weight: 300;
}

.collection-title {
  font-weight: 600;
  transition: color 0.25s;
}

.collection-title span {
  cursor: pointer;
}

.collection-title:hover {
  color: var(--color-accent);
}

@media screen and (min-width: 1024px) {
  .locked-pic svg {
    left: 16px;
    top: 16px;
  }
}
@media screen and (min-width: 1280px) {
  .locked-pic svg {
    width: 52px;
    height: 52px;
  }
}
@media screen and (min-width: 560px) and (max-width: 1559px) {
  .collection-desc {
    margin-top: 1rem;
  }
  .collection-date,
  .collection-author {
    font-size: 14px;
  }
  .collection-title {
    font-size: 21px;
  }
}
@media screen and (min-width: 1560px) {
  .collection-desc {
    margin-top: 1.25rem;
  }
  .collection-date,
  .collection-author {
    font-size: 18px;
  }
  .collection-title {
    font-size: 32px;
  }
}
@supports selector(:has(a:hover)) {
  .collection-card:has(a:hover) .collection-title,
  .collection-card:has(.locked-pic:hover) .collection-title {
    color: var(--color-accent);
  }
}
@supports not selector(:has(a:hover)) {
  .collection-card:hover .collection-title {
    color: var(--color-accent);
  }
}
/* MODS */
.inactive-item .publication-pic {
  position: relative;
}

.inactive-item .publication-pic::after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
}

/* MODS */
.book-card {
  line-height: 1.3;
  display: flex;
  width: 100%;
  justify-content: flex-start;
  align-items: flex-start;
}

.book-card-cover {
  display: block;
  position: relative;
}

@supports not (aspect-ratio: 256/354) {
  .book-card-cover {
    aspect-ratio: 256/354;
  }
}
@supports (aspect-ratio: 256/354) {
  .book-card-cover::before {
    display: block;
    content: "";
    width: 100%;
    height: 0;
    padding-top: 138%;
  }
}
.book-card-cover {
  min-width: 40%;
  width: 40%;
}

.book-card-desc {
  padding-left: 16px;
}

.book-card-info {
  color: #BABABA;
  font-weight: 300;
  text-transform: uppercase;
}

.book-card-title {
  margin-top: 0.25em;
  margin-bottom: 0.5em;
  font-weight: 600;
}

.book-card-info a svg {
  display: inline-block;
  height: 0.9em;
  width: auto;
}

.book-card-link:hover {
  color: var(--color-accent);
}

.book-card-link-download:hover {
  color: var(--color-accent);
}

@media screen and (max-width: 767px) {
  .book-card-info {
    font-size: 12px;
  }
}
@media screen and (min-width: 768px) {
  .book-card-info {
    font-size: 14px;
  }
  .book-card-title {
    font-size: 21px;
  }
}
@media screen and (min-width: 1024px) {
  .book-card {
    align-items: center;
  }
  .book-card-desc {
    padding-left: 20px;
  }
}
@media screen and (min-width: 1560px) {
  .book-card-info {
    font-size: 18px;
  }
  .book-card-title {
    font-size: 32px;
  }
}
.about-review-block {
  padding-bottom: 32px;
  position: relative;
  overflow: hidden;
  user-select: none;
}

@media screen and (max-width: 559px) {
  .about-review-block .base-slider-button-prev,
  .about-review-block .base-slider-button-next {
    display: none;
  }
  .review-pagination {
    position: relative;
    margin-top: 24px;
    --swiper-pagination-color: var(--color-accent);
    --swiper-pagination-bullet-inactive-color: #fff;
    --swiper-pagination-bullet-inactive-opacity: 1;
  }
}
@media screen and (min-width: 560px) {
  .review-pagination {
    display: none;
  }
  .block-review-slider {
    width: calc(100% - 84px);
    margin-left: auto;
    margin-right: auto;
  }
}
@media screen and (min-width: 768px) {
  .about-review-block {
    max-width: 925px;
    margin-left: auto;
    margin-right: auto;
  }
  .block-review-slider {
    width: 75%;
  }
}
.review-card {
  line-height: 1.5;
}

.review-card__message p:not(:first-child) {
  margin-top: 1em;
}

.review-card__author {
  margin-top: 2em;
  font-weight: 600;
  font-size: 1.33em;
}

.review-card__position {
  color: #868686;
}

.text-box {
  padding: var(--x-pad);
}

.text-theme-light {
  background: #fff;
  color: #494747;
}

.text-box-btn {
  margin-top: var(--x-pad);
}

.text-box-btn .page-call2action-btn {
  margin-top: 0;
}

@media screen and (max-width: 559px) {
  .text-box {
    width: calc(100% + 2 * var(--x-pad));
    margin-left: calc(-1 * var(--x-pad));
  }
  .text-box-data {
    margin-top: 1.5rem;
  }
}
@media screen and (min-width: 560px) and (max-width: 1023px) {
  .text-box-data {
    margin-top: 1.5rem;
  }
}
@media screen and (min-width: 1024px) and (max-width: 1559px) {
  .text-box-data {
    margin-top: 2rem;
  }
}
@media screen and (min-width: 1560px) {
  .text-box-data {
    margin-top: 2.5rem;
  }
}
@media screen and (min-width: 768px) {
  .text-box-container {
    max-width: 75%;
    margin-left: auto;
    margin-right: auto;
  }
}
.text-box-head {
  font-weight: 600;
  line-height: 1.3;
}

.text-box-info {
  font-size: 1em;
  margin-top: 1em;
  margin-bottom: 2em;
  color: #989898;
}

@media screen and (max-width: 559px) {
  .text-box-head {
    font-size: 24px;
  }
}
@media screen and (min-width: 560px) and (max-width: 1023px) {
  .text-box-head {
    font-size: 26px;
  }
}
@media screen and (min-width: 1024px) and (max-width: 1279px) {
  .text-box-head {
    font-size: 32px;
  }
}
@media screen and (min-width: 1280px) and (max-width: 1559px) {
  .text-box-head {
    font-size: 40px;
  }
}
@media screen and (min-width: 1560px) {
  .text-box-head {
    font-size: 58px;
  }
}
@media screen and (min-width: 1280px) {
  .text-box-centered {
    max-width: 80%;
    margin-left: auto;
    margin-right: auto;
  }
}
.text-box-content {
  line-height: 1.6;
}

.text-box-content > *:not(:first-child) {
  /* margin-top: 1.78em; last comments */
  margin-top: 1.5em;
}

.text-box-content blockquote {
  display: block;
  width: 100%;
  position: relative;
  padding-left: 3rem;
  font-weight: 600;
}

.text-box-content blockquote::before {
  content: "";
  display: block;
  width: 40px;
  height: 40px;
  position: absolute;
  top: 0;
  left: 0;
  background: url(/assets/icon-blockquote-991d07cd45e5ef90949cb77bc08338225b17d450447f0e407df362b8e95ff918.svg) 0 0/contain no-repeat;
}

.text-box-content ul,
.text-box-content ol {
  padding-left: 2em;
}

.text-box-content li {
  display: list-item;
}

.text-box-content li:not(:first-child) {
  margin-top: 1em;
}

.text-box-content ul li {
  list-style-type: disc;
}

.text-box-content ol li {
  list-style-type: decimal;
}

.text-box-content a {
  text-decoration: underline;
}

.text-box-content a:hover {
  text-decoration: none;
}

.text-box-content img {
  display: block;
  width: 100%;
  height: auto;
}

.block-page-title {
  text-align: center;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
}

.block-page-title > div:not(:first-child) {
  margin-top: 1rem;
}

.block-page-title-b,
.block-page-title-name {
  font-weight: 700;
  text-transform: uppercase;
}

.block-page-title-text {
  line-height: 1.4;
}

@media screen and (max-width: 767px) {
  .block-page-title-name {
    font-size: 42px;
  }
  .block-page-title-b {
    font-size: 12px;
  }
  .block-page-title-text {
    font-size: 14px;
  }
}
@media screen and (min-width: 768px) and (max-width: 1559px) {
  .block-page-title {
    max-width: 85%;
  }
  .block-page-title-name {
    font-size: 96px;
  }
  .block-page-title-b {
    font-size: 20px;
  }
}
@media screen and (min-width: 1560px) {
  .block-page-title {
    max-width: 65%;
  }
  .block-page-title-name {
    font-size: 138px;
  }
  .block-page-title-b {
    font-size: 30px;
  }
  .block-page-title-text {
    font-size: 24px;
  }
}
.about-desc .longread-title {
  text-align: center;
}

.about-desc .longread-quote {
  max-width: unset;
  margin-top: 1rem;
}

.about-desc-list {
  margin-top: calc(2 * var(--x-pad));
}

.about-desc-list li:not(:first-child) {
  margin-top: calc(1.5 * var(--x-pad));
}

.about-desc-list-head {
  font-size: 20px;
}

.about-desc .longread-lead {
  text-align: left;
}

.about-desc .longread-lead p:not(:first-child) {
  margin-top: 1em;
}

@media screen and (min-width: 768px) {
  .about-desc {
    max-width: 78%;
    margin-left: auto;
    margin-right: auto;
  }
  .about-desc-list-head {
    font-size: 36px;
  }
}
@media screen and (min-width: 1024px) {
  .about-desc {
    max-width: 64%;
  }
  .about-desc-list,
  .longread-lead {
    max-width: 80%;
    margin-left: auto;
    margin-right: auto;
  }
  .about-desc .longread-lead {
    column-count: 1;
  }
}
.longread-top {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.longread-author {
  font-weight: 600;
}

.longread-title {
  font-weight: 600;
  font-size: 24px;
  line-height: 1.2;
  margin-top: 1.25rem;
}

.longread-lead {
  line-height: 1.5;
  margin-top: 1.25rem;
  text-align: justify;
}

.longread-quote {
  margin-top: 1.5rem;
  display: block;
  width: 100%;
  position: relative;
  padding-left: 3rem;
  font-weight: 600;
  text-align: left;
  line-height: 1.4;
}

.longread-quote::before {
  content: "";
  display: block;
  width: 40px;
  height: 40px;
  position: absolute;
  top: 0;
  left: 0;
  background: url(/assets/icon-blockquote-white-b7550725cbd4d7354afba3b57d0d8f6b139bd2f1487c6090e18d730c0e4e84f1.svg) 0 0/contain no-repeat;
}

@media screen and (min-width: 560px) and (max-width: 767px) {
  .longread-author {
    font-size: 24px;
  }
  .longread-title {
    margin-top: 1.5rem;
    font-size: 32px;
  }
  .longread-lead {
    margin-top: 2rem;
    font-size: 21px;
  }
  .longread-quote {
    margin-top: 2rem;
    font-size: 21px;
    padding-left: 4rem;
  }
}
@media screen and (min-width: 768px) and (max-width: 1023px) {
  .longread-author {
    font-size: 24px;
  }
  .longread-title {
    margin-top: 1.5rem;
    font-size: 40px;
  }
  .longread-lead {
    margin-top: 3rem;
    font-size: 21px;
  }
  .longread-quote {
    margin-top: 3rem;
    font-size: 21px;
    padding-left: 4rem;
  }
}
@media screen and (min-width: 1024px) and (max-width: 1279px) {
  .longread-author {
    font-size: 24px;
  }
  .longread-title {
    margin-top: 1.5rem;
    font-size: 40px;
  }
  .longread-lead {
    margin-top: 3rem;
    font-size: 21px;
    column-count: 2;
    column-gap: 3rem;
  }
  .longread-quote {
    margin-top: 3rem;
    font-size: 21px;
    padding-left: 4rem;
    max-width: 650px;
    margin-left: auto;
    margin-right: auto;
  }
}
@media screen and (min-width: 1280px) and (max-width: 1559px) {
  .longread-top {
    max-width: 1060px;
  }
  .longread-author {
    font-size: 24px;
  }
  .longread-title {
    margin-top: 1.5rem;
    font-size: 40px;
  }
  .longread-lead {
    margin-top: 3rem;
    font-size: 21px;
    column-count: 2;
    column-gap: 3rem;
  }
  .longread-quote {
    margin-top: 4rem;
    font-size: 21px;
    padding-left: 4rem;
    max-width: 650px;
    margin-left: auto;
    margin-right: auto;
  }
  .longread-quote::before {
    width: 52px;
    height: 52px;
  }
}
@media screen and (min-width: 1560px) {
  .longread-top {
    max-width: 1210px;
  }
  .longread-author {
    font-size: 32px;
  }
  .longread-title {
    margin-top: 2rem;
    font-size: 58px;
  }
  .longread-lead {
    margin-top: 4rem;
    font-size: 24px;
    column-count: 2;
    column-gap: 3rem;
  }
  .longread-quote {
    margin-top: 4rem;
    font-size: 24px;
    padding-left: 5rem;
    max-width: 650px;
    margin-left: auto;
    margin-right: auto;
  }
  .longread-quote::before {
    width: 52px;
    height: 52px;
  }
}
.collection-pic,
.publication-pic {
  display: block;
}

.collection-pic img {
  display: block;
  width: 100%;
  height: auto;
}

.publication-pic img {
  display: block;
  width: 100%;
  object-fit: cover;
}

.locked-pic {
  position: relative;
  cursor: pointer;
}

.locked-pic::after {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  background: rgba(0, 0, 0, 0.5);
}

.locked-pic svg {
  display: block;
  width: 42px;
  height: 42px;
  height: auto;
  position: absolute;
  top: 8px;
  left: 8px;
  z-index: 3;
}

@supports (aspect-ratio: 16/9) {
  .publication-pic img {
    height: auto;
    aspect-ratio: 16/9;
  }
}
@supports not (aspect-ratio: 16/9) {
  .publication-pic {
    position: relative;
  }
  .publication-pic::before {
    content: "";
    display: block;
    width: 100%;
    padding-top: 56.25%;
  }
  .publication-pic img {
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
  }
}
.collection-desc,
.collection-title,
.collection-author {
  margin-top: 0.25em;
}

.collection-desc {
  line-height: 1.3;
}

.collection-date,
.collection-author {
  font-size: 12px;
  font-weight: 300;
}

.collection-title {
  font-weight: 600;
  transition: color 0.25s;
}

.collection-title span {
  cursor: pointer;
}

.collection-title:hover {
  color: var(--color-accent);
}

@media screen and (min-width: 1024px) {
  .locked-pic svg {
    left: 16px;
    top: 16px;
  }
}
@media screen and (min-width: 1280px) {
  .locked-pic svg {
    width: 52px;
    height: 52px;
  }
}
@media screen and (min-width: 560px) and (max-width: 1559px) {
  .collection-desc {
    margin-top: 1rem;
  }
  .collection-date,
  .collection-author {
    font-size: 14px;
  }
  .collection-title {
    font-size: 21px;
  }
}
@media screen and (min-width: 1560px) {
  .collection-desc {
    margin-top: 1.25rem;
  }
  .collection-date,
  .collection-author {
    font-size: 18px;
  }
  .collection-title {
    font-size: 32px;
  }
}
@supports selector(:has(a:hover)) {
  .collection-card:has(a:hover) .collection-title,
  .collection-card:has(.locked-pic:hover) .collection-title {
    color: var(--color-accent);
  }
}
@supports not selector(:has(a:hover)) {
  .collection-card:hover .collection-title {
    color: var(--color-accent);
  }
}
/* MODS */
.inactive-item .publication-pic {
  position: relative;
}

.inactive-item .publication-pic::after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
}

/* MODS */
.story-preview-card {
  display: flex;
  flex-flow: column wrap;
  width: 100%;
  height: 100%;
  position: relative;
  --color-bg-desc: #363636;
  --color-bg-desc-hover: var(--color-accent);
  --color-text-info: #BABABA;
  --color-text-info-hover: #000;
  --color-text-title: #fff;
  --color-text-title-hover: #000;
}

.story-preview-card_white {
  --color-bg-desc: transparent;
  --color-bg-desc-hover: #363636;
  --color-text-info: #838383;
  --color-text-info-hover: #BABABA;
  --color-text-title: #111111;
  --color-text-title-hover: #FFFFFF;
}

.story-add-to-favorite {
  display: block;
  position: absolute;
  top: 1rem;
  right: 1rem;
  --favorite-base-color: var(--color-accent);
  opacity: 0;
  visibility: hidden;
  transform: scale(0.5);
  transition: opacity 0.25s, visibility 0 0.25s, transform 0.25s;
}

.story-preview-card.is-favorite .btn-favorite {
  border-color: transparent;
}

.story-preview-card.is-favorite .story-add-to-favorite,
.story-preview-card:hover .story-add-to-favorite {
  opacity: 1;
  visibility: visible;
  transform: scale(1);
  transition: opacity 0.25s, transform 0.25s;
}

.story-preview-card.is-favorite:hover .btn-favorite {
  border-color: var(--color-accent);
}

.story-preview-picture {
  display: block;
  width: 100%;
  overflow: hidden;
}

.story-preview-image {
  display: block;
  width: 100%;
  object-fit: cover;
  overflow: hidden;
}

@supports (aspect-ratio: 560/314) {
  .story-preview-image {
    aspect-ratio: 560/314;
    height: auto;
  }
}
@supports not (aspect-ratio: 560/314) {
  .story-preview-picture::before {
    content: "";
    display: block;
    width: 100%;
    height: 0;
    padding-top: 56.07%;
  }
  .story-preview-image {
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
  }
}
.story-preview-desc {
  padding: 1rem;
  background-color: var(--color-bg-desc);
  flex: 1 auto;
  transition: background-color 0.25s;
}

.story-preview-card:hover .story-preview-desc {
  background-color: var(--color-bg-desc-hover);
}

.story-desc-full {
  width: 100%;
  display: flex;
  flex-flow: row nowrap;
  align-items: flex-start;
  justify-content: space-between;
}

.story-preview-author {
  margin-top: 0.4em;
}

.story-preview-title {
  margin-top: 0.85em;
  margin-top: clamp(0.5rem, 0.85em, 1rem);
  font-weight: 600;
  line-height: 1.2;
}

.story-preview-title span {
  cursor: pointer;
}

.story-desc-info {
  color: var(--color-text-info);
}

.story-preview-card:hover .story-desc-info {
  color: var(--color-text-info-hover);
}

.story-preview-title {
  color: var(--color-text-title);
}

.story-preview-card:hover .story-preview-title {
  color: var(--color-text-title-hover);
}

.story-preview-icon svg {
  display: block;
  width: 100%;
}

@media screen and (max-width: 559px) {
  .story-desc-info {
    font-size: 12px;
  }
  .story-preview-title {
    font-size: 14px;
  }
  .story-preview-icon {
    width: 22px;
  }
}
@media screen and (min-width: 560px) and (max-width: 767px) {
  .story-desc-info {
    font-size: 12px;
  }
  .story-preview-title {
    font-size: 14px;
  }
  .story-preview-icon {
    width: 20px;
  }
}
@media screen and (min-width: 768px) and (max-width: 1023px) {
  .story-preview-desc {
    padding: 1.25rem;
  }
  .story-desc-info {
    font-size: 14px;
  }
  .story-preview-title {
    font-size: 16px;
  }
  .story-preview-icon {
    width: 26px;
  }
}
@media screen and (min-width: 1024px) and (max-width: 1279px) {
  .story-preview-desc {
    padding: 1rem 1.25rem 1.5rem;
  }
  .story-desc-info {
    font-size: 14px;
  }
  .story-preview-title {
    font-size: 16px;
  }
  .story-preview-icon {
    width: 24px;
  }
}
@media screen and (min-width: 1280px) and (max-width: 1559px) {
  .story-preview-desc {
    padding: 1rem 1.5rem 2rem;
  }
  .story-desc-info {
    font-size: 14px;
  }
  .story-preview-title {
    font-size: 21px;
  }
  .story-preview-icon {
    width: 24px;
  }
}
@media screen and (min-width: 1560px) {
  .story-preview-desc {
    padding: 1.5rem 2rem 3.5rem;
  }
  .story-desc-info {
    font-size: 18px;
  }
  .story-preview-title {
    font-size: 28px;
  }
  .story-preview-icon {
    width: 40px;
  }
}
.top-gallery-slider {
  width: 100%;
  overflow: hidden;
}

.top-gallery-picture {
  display: block;
  position: relative;
  opacity: 0.5;
  transition: opacity 0.3s;
}

.swiper-slide-active .top-gallery-picture {
  opacity: 1;
}

@supports (aspect-ratio: 1230/686) {
  .top-gallery-picture {
    aspect-ratio: 1230/686;
  }
}
@supports not (aspect-ratio: 1230/686) {
  .top-gallery-picture::before {
    content: "";
    display: block;
    width: 100%;
    height: 0;
    padding-top: 55.77%;
  }
}
@media screen and (max-width: 767px) {
  .top-gallery-slider .swiper {
    padding-left: var(--x-pad);
  }
  .top-gallery-slider .swiper-slide {
    width: calc(100% - 2 * var(--x-pad));
  }
  .top-gallery-slider .swiper-button-next,
  .top-gallery-slider .swiper-button-prev {
    display: none;
  }
}
@media screen and (min-width: 768px) {
  .top-gallery-slider {
    overflow: hidden;
  }
  .top-gallery-slider .swiper {
    width: 76%;
    overflow: visible;
  }
  .top-gallery-slider {
    --swiper-navigation-color: #fff;
    --swiper-navigation-size: 28px;
    --swiper-navigation-sides-offset: -64px;
  }
  .top-gallery-slider .swiper-button-next,
  .top-gallery-slider .swiper-button-prev {
    width: 64px;
  }
}
@media screen and (min-width: 1280px) {
  .top-gallery-slider .swiper {
    width: 55%;
  }
}
@media screen and (min-width: 1560px) {
  .top-gallery-slider .swiper {
    width: 64%;
  }
}
.inside-container-gallery .top-gallery-slider {
  width: calc(100% + 2 * var(--x-pad));
  margin-left: calc(-1 * var(--x-pad));
}

.top-gallery-caption {
  line-height: 1.3;
  font-size: 1em;
  margin-top: 1em;
  display: none;
}

.swiper-slide-active .top-gallery-caption {
  display: block;
}

.top-gallery-slider .top-gallery-picture {
  background-color: black;
}

.top-gallery-slider .top-gallery-picture .abs-image {
  object-fit: contain;
}

.join-competition {
  border-top: 1px solid #3B3B3B;
  padding-top: 2.5em;
}

.join-button {
  flex-flow: row nowrap;
  align-items: center;
  justify-content: flex-start;
  color: var(--color-accent);
}

.join-button span {
  font-size: 14px;
  text-transform: uppercase;
  font-weight: 600;
  transform: translate(-10px, 0);
}

@media screen and (max-width: 767px) {
  .join-competition {
    text-align: center;
  }
  .join-button {
    display: inline-flex;
  }
  .join-center {
    margin-top: 1em;
  }
}
@media screen and (min-width: 768px) {
  .join-button {
    display: flex;
  }
  .join-competition {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    align-items: center;
    justify-items: center;
  }
  .join-left {
    justify-self: start;
  }
}
.project-counter {
  max-width: 500px;
  display: inline-grid;
  grid-template-columns: auto auto auto;
  border: 1px solid #fff;
  margin-top: 16px;
  align-items: center;
  gap: 16px;
  font-size: 18px;
}

.project-counter-icon .counter-container-icon {
  margin-right: 0;
}

.project-counter-value,
.project-counter-text {
  padding-top: 4px;
  padding-bottom: 4px;
}

.project-counter-icon {
  padding-left: 16px;
}

.project-counter-text {
  padding-right: 16px;
}

.project-counter-value {
  font-weight: 500;
  letter-spacing: 0.31em;
}

.project-counter-text {
  font-weight: 600;
  font-size: 0.6666em;
  text-transform: uppercase;
  text-align: left;
  line-height: 1.2;
}

@media screen and (min-width: 768px) and (max-width: 1559px) {
  .project-counter {
    font-size: 21px;
    margin-top: 2rem;
  }
}
@media screen and (min-width: 1560px) {
  .project-counter {
    margin-top: 2rem;
    font-size: 30px;
    max-width: 752px;
  }
}
