.quote-block, .quote-block-light, .article-text blockquote, .quote-block-dark {
  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, .article-text blockquote, .quote-block-dark {
    --icon-size: 36px;
  }
}
@media screen and (min-width: 560px) and (max-width: 1559px) {
  .quote-block, .quote-block-light, .article-text blockquote, .quote-block-dark {
    --left-pad: 4.5rem;
  }
}
@media screen and (min-width: 1560px) {
  .quote-block, .quote-block-light, .article-text blockquote, .quote-block-dark {
    --left-pad: 5rem;
  }
}
.quote-block-dark {
  background-image: url(/assets/icon-blockquote-white-b7550725cbd4d7354afba3b57d0d8f6b139bd2f1487c6090e18d730c0e4e84f1.svg);
}

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

/* 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;
  }
}
.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;
  }
}
.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;
}

.content-gallery-slider {
  width: 100%;
  background: #fff;
  overflow: hidden;
}

.content-gallery-picture {
  position: relative;
}

.swiper-thumbs .content-gallery-picture {
  opacity: 0.5;
  transition: opacity 0.5s;
}

.swiper-thumbs .swiper-slide-thumb-active .content-gallery-picture {
  opacity: 1;
}

.content-gallery-slider .swiper-slide {
  background: var(--color-bb-gray);
}

@supports (aspect-ratio: 900/502) {
  .content-gallery-picture {
    aspect-ratio: 900/502;
  }
}
@supports not (aspect-ratio: 900/502) {
  .content-gallery-picture::before {
    content: "";
    display: block;
    width: 100%;
    height: 0;
    padding-top: 55.77%;
  }
}
/* Thumb slider */
.swiper-thumbs {
  --swiper-navigation-sides-offset: calc(-1 * var(--custom-button-size));
  --swiper-navigation-top-offset: 0;
  --swiper-navigation-size: 12px;
  --swiper-navigation-color: #000;
  overflow: visible;
  margin-top: 6px;
  margin-left: auto;
  margin-right: auto;
  width: calc(100% - 2 * var(--custom-button-size));
}

.swiper-thumbs .swiper-button-prev,
.swiper-thumbs .swiper-button-next {
  width: var(--custom-button-size);
  height: 100%;
  margin-top: 0;
  background: #fff;
}

.swiper-thumbs .swiper-button-prev {
  justify-content: flex-start;
}

.swiper-thumbs .swiper-button-next {
  justify-content: flex-end;
}

@media screen and (max-width: 559px) {
  .swiper-thumbs {
    --custom-button-size: 16px;
  }
}
@media screen and (min-width: 560px) and (max-width: 1559px) {
  .swiper-thumbs {
    --custom-button-size: 18px;
  }
}
@media screen and (min-width: 1280px) and (max-width: 1559px) {
  .swiper-thumbs {
    --custom-button-size: 24px;
    --swiper-navigation-size: 18px;
    margin-top: 8px;
  }
}
@media screen and (min-width: 1560px) {
  .swiper-thumbs {
    --custom-button-size: 24px;
    --swiper-navigation-size: 20px;
    margin-top: 12px;
  }
}
.article-layout {
  margin-top: var(--header-height);
  padding-top: var(--x-pad);
  padding-bottom: var(--x-pad);
}

.article-box {
  padding: var(--x-pad);
  background-color: #fff;
  color: #494747;
}

@media screen and (min-width: 560px) {
  .article-layout {
    padding-left: var(--x-pad);
    padding-right: var(--x-pad);
  }
}
@media screen and (min-width: 768px) {
  .article-layout {
    padding-top: 1.15rem;
  }
}
@media screen and (min-width: 1024px) {
  .article-layout {
    padding-top: 1.75rem;
  }
}
@media screen and (min-width: 1280px) {
  .article-layout {
    padding-top: 2.25rem;
  }
}
@media screen and (min-width: 1560px) {
  .article-layout {
    padding-top: 1.25rem;
  }
  .section-layout-main .article,
  .section-layout-copyright .copyright-contaier {
    max-width: 900px;
  }
}
.section-layout {
  display: grid;
  gap: var(--x-pad);
  width: 100%;
}

.section-layout-main {
  grid-area: main;
  min-width: 0;
}

.section-layout-breadcrumbs {
  grid-area: breadcrumbs;
  min-width: 0;
  align-self: center;
}

.section-layout-sharing {
  grid-area: sharing;
}

.section-layout-sharing .post-sharing-list {
  justify-content: flex-start;
}

.section-layout-aside {
  grid-area: aside;
}

.section-layout-additional {
  grid-area: additional;
}

.section-layout-copyright {
  grid-area: copyright;
}

.section-layout-navigation {
  grid-area: navigation;
  align-self: center;
}

.section-layout-navigation .trans-y-controls {
  justify-content: flex-end;
}

.section-layout-navigation .trans-y-label {
  text-align: right;
}

.section-layout-navigation,
.section-layout-breadcrumbs {
  padding-bottom: var(--x-pad);
}

.section-layout-breadcrumbs {
  position: relative;
}

.section-layout-breadcrumbs::before {
  content: "";
  display: block;
  height: 1px;
  position: absolute;
  bottom: 0;
  left: 0;
  background: #000000;
}

@media screen and (max-width: 559px) {
  .section-layout-breadcrumbs::before {
    width: calc(100vw - 2 * var(--x-pad));
  }
}
@media screen and (min-width: 560px) {
  .section-layout-breadcrumbs::before {
    width: calc(100vw - 4 * var(--x-pad));
  }
}
@media screen and (max-width: 1023px) {
  .section-layout-breadcrumbs,
  .section-layout-navigation {
    display: none;
  }
}
@media screen and (max-width: 767px) {
  .section-layout {
    grid-template-columns: 1fr auto;
    grid-template-areas: "aside aside" "main main" "sharing sharing" "copyright copyright" "additional additional";
  }
  .section-layout-navigation .trans-y-label {
    display: none;
  }
}
@media screen and (min-width: 768px) and (max-width: 1023px) {
  .section-layout {
    grid-template-columns: 1fr 32%;
    grid-template-rows: auto auto auto 1fr;
    grid-template-areas: "main aside" "main additional" "main sharing" "copyright sharing";
  }
}
@media screen and (min-width: 1024px) {
  .section-layout {
    grid-template-columns: 1fr 32%;
    grid-template-rows: auto auto auto auto 1fr;
    grid-template-areas: "breadcrumbs navigation" "main aside" "main additional" "main sharing" "copyright sharing";
  }
}
.article-author,
.article-views {
  color: #A4A4A4;
  font-size: 14px;
}

.article-title {
  font-size: 24px;
  font-weight: 600;
  line-height: 1.1;
  margin-top: 0.5rem;
}

.article-views {
  margin-top: 0.5rem;
  font-weight: 600;
}

.article-text {
  margin-top: 1.25rem;
  line-height: 1.37;
  text-align: justify;
}

.article-text > *:not(:first-child) {
  margin-top: 1.2em;
}

.article-text figure {
  display: block;
  width: 100%;
  text-align: center;
}

.article-text figure img {
  display: inline-block;
  width: auto;
  height: auto;
  max-width: 100%;
  object-fit: contain;
  max-height: 570px;
}

.article-text a {
  text-decoration: underline;
}

.article-text a:hover {
  text-decoration: none;
}

@media screen and (min-width: 1280px) and (max-width: 1559px) {
  .article-title {
    font-weight: 40px;
    margin-top: 1rem;
  }
  .article-views {
    margin-top: 1rem;
  }
  .article-text {
    font-size: 18px;
  }
  .article > .article-text:first-child {
    margin-top: 0;
  }
}
@media screen and (min-width: 1560px) {
  .article-author,
  .article-views {
    font-size: 20px;
  }
  .article-title {
    font-size: 58px;
    margin-top: 1rem;
  }
  .article-text {
    margin-top: 2rem;
    font-size: 24px;
  }
  .article > .article-text:first-child {
    margin-top: 0;
  }
}
/*
.yt-frame,
.youtube_holder {
  width: 100%;
  position: relative;
  aspect-ratio: var(--box-width, 560) / var(--box-height, 315);
}

@supports not (aspect-ratio: 560 / 325) {
  .yt-frame::before,
  .youtube_holder::before {
    content: '';
    display: block;
    width: 100%;
    height: 0;
    padding-top: 56.25%
  }

}
.yt-frame iframe,
.youtube_holder iframe {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
*/
.audio-player {
  display: flex;
  flex-flow: row nowrap;
  align-items: center;
  width: 100%;
  margin-top: var(--x-pad);
  height: auto;
  position: relative;
}

.audio-player-wave {
  flex: 1 0 auto;
}

.audio-player-control {
  padding: 16px;
}

.audio-player-play-toggle {
  display: block;
  margin: 0;
  padding: 0;
  border: 0 none;
  outline: 0 none;
  width: 21px;
  height: 26px;
  color: var(--audio-toggle-color, #454444);
  background: transparent none;
  transition: color 0.25s;
  position: relative;
}

.audio-player-play-toggle::before {
  content: "";
  display: block;
  width: 9px;
  height: 24px;
  position: absolute;
  top: 50%;
  left: 2px;
  transform: translate(0, -50%);
  border-left: 1px solid currentColor;
  border-right: 1px solid currentColor;
  opacity: 0;
}

.audio-player-play-toggle:hover {
  color: var(--color-bb-gray);
}

.audio-player[data-audio-playing=true] .audio-player-play-toggle svg {
  opacity: 0;
}

.audio-player[data-audio-playing=true] .audio-player-play-toggle::before {
  opacity: 1;
}

.audio-player-loading .audio-player-control,
.audio-player-loading .audio-player-wave {
  opacity: 0;
}

.audio-player-preloader {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(3px);
  opacity: 0;
  visibility: hidden;
}

.audio-player-loading .audio-player-preloader {
  opacity: 1;
  visibility: visible;
}

.audio-player-preloader svg {
  display: block;
  width: 36px;
  height: 36px;
}

.audio-player-preloader svg rect {
  fill: var(--audio-preloader-color, currentColor);
}

.copyright-contaier {
  padding-top: var(--x-pad);
  font-size: 14px;
  color: #494747;
  line-height: 1.4;
  border-top: 1px solid #D9D9D9;
}

.copyright-box {
  margin-top: var(--x-pad);
  padding: var(--x-pad);
  border: 1px solid #D9D9D9;
}

.copyright-box-text a {
  color: var(--color-accent);
  text-decoration: underline;
}

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

.copyright-box-logos {
  margin-top: var(--x-pad);
  display: flex;
  flex-flow: row nowrap;
  align-items: center;
  justify-content: flex-start;
}

.copyright-box-logo {
  display: block;
}

.copyright-box-logo svg {
  display: block;
  object-fit: contain;
}

@media screen and (max-width: 559px) {
  .copyright-logo-museum {
    width: 55%;
    margin-right: 5%;
  }
  .copyright-logo-fund {
    width: 40%;
  }
  .copyright-logo-museum svg,
  .copyright-logo-fund svg {
    max-width: 100%;
    height: auto;
  }
}
@media screen and (min-width: 560px) {
  .copyright-box-logos {
    margin-top: 8px;
    display: flex;
    flex-flow: row wrap;
    align-items: center;
    justify-content: flex-start;
  }
  .copyright-logo-fund {
    margin-left: 16px;
  }
  .copyright-logo-museum svg {
    width: 182px;
    height: 48px;
  }
  .copyright-logo-fund svg {
    width: 142px;
    height: 34px;
  }
}
@media screen and (min-width: 768px) {
  .copyright-contaier {
    padding-top: 1rem;
  }
  .copyright-box {
    padding: 1rem;
    margin-top: 1rem;
  }
}
@media screen and (min-width: 1560px) {
  .copyright-contaier {
    font-size: 20px;
    padding-top: 2rem;
  }
  .copyright-box {
    padding: 1.5rem;
    margin-top: 1rem;
  }
  .copyright-box-logos {
    margin-top: 2rem;
  }
  .copyright-logo-museum svg {
    width: 256px;
    height: 68px;
  }
  .copyright-logo-fund svg {
    width: 198px;
    height: 48px;
  }
}
.article-info {
  display: flex;
  flex-flow: row nowrap;
  align-items: flex-start;
  justify-content: flex-start;
}

.article-info-favorite {
  width: 3rem;
  min-width: 3rem;
}

@media screen and (min-width: 1280px) {
  .article-info-favorite {
    min-width: 5rem;
    width: 5rem;
  }
}
.article-info-data {
  flex-grow: 2;
}

/* Favorite */
/* Article info */
.article-info-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  font-size: 12px;
}

.article-info-dd {
  font-weight: 600;
  padding-top: 0.25rem;
}

@media screen and (min-width: 559px) and (max-width: 767px) {
  .article-info-list {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media screen and (min-width: 768px) and (max-width: 1279px) {
  .article-info {
    display: block;
  }
  .article-info-list {
    margin-top: 1.5rem;
    column-gap: 0.5rem;
  }
}
@media screen and (min-width: 1024px) {
  .article-info-list {
    font-size: 14px;
  }
  .article-info-list {
    gap: 1rem;
  }
}
@media screen and (min-width: 1559px) {
  .article-info-list {
    font-size: 18px;
    row-gap: 2rem;
  }
  .article-info-dd {
    padding-top: 0.5rem;
  }
}
.tag-list-wrap {
  display: block;
  width: 100%;
  overflow: hidden;
  --line-gap: 0.75rem;
  --row-gap: 0.5rem;
}

.tag-list {
  margin-top: calc(-1 * var(--line-gap));
  width: calc(100% + var(--row-gap));
}

.tag-item {
  display: inline-block;
  margin-top: var(--line-gap);
  margin-right: var(--row-gap);
}

.tag-btn {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  min-width: 96px;
  max-width: 186px;
  min-height: 26px;
  padding: 2px 8px;
  text-transform: uppercase;
  font-size: 11px;
  border: 1px solid #D9D9D9;
  border-radius: 13px;
  transition: color 0.25s, background-color 0.25s, border-color 0.25s;
}

.tag-btn:hover {
  color: var(--color-text-base);
  background-color: #0E0E0E;
  border-color: #0E0E0E;
}

.tag-btn:hover {
  color: #000;
  background-color: var(--color-accent);
  border-color: var(--color-accent);
}

.tag-btn_light {
  color: #6F6F6F;
  border-color: #D9D9D9;
}

@media screen and (min-width: 1280px) {
  .tag-list-wrap {
    --line-gap: 0.75rem;
    --row-gap: 0.75rem;
  }
  .tag-btn {
    font-size: 14px;
    min-width: 116px;
    max-width: 308px;
    min-height: 32px;
    padding: 4px 16px;
    border-radius: 16px;
  }
}
@media screen and (min-width: 1560px) {
  .tag-list-wrap {
    --line-gap: 0.75rem;
    --row-gap: 0.75rem;
  }
  .tag-btn {
    font-size: 16px;
    min-width: 148px;
    max-width: 394px;
    min-height: 42px;
    padding: 4px 16px;
    border-radius: 21px;
  }
}
.tag-box {
  border-top: 1px solid #3B3B3B;
  padding-top: var(--x-pad);
}

.post-sharing {
  --icon-size: 32px;
}

.post-sharing-title {
  margin-bottom: 8px;
  font-size: 14px;
}

.post-sharing-list {
  display: flex;
  align-items: center;
}

.post-sharing-list {
  flex-flow: row nowrap;
}

.post-sharing-item:not(:first-child) {
  margin-left: 0.75rem;
}

.post-sharing-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: var(--icon-size);
  height: var(--icon-size);
  border-radius: 50%;
  color: var(--color-text-base);
  background-color: var(--color-bg);
  transition: background-color 0.25s;
}

.post-sharing-link svg {
  display: block;
  max-width: calc(var(--icon-size) / 2);
  max-height: calc(var(--icon-size) / 2);
}

.post-sharing-link:hover {
  background-color: var(--color-accent);
}

@media screen and (min-width: 1024px) {
  .post-sharing {
    --icon-size: 40px;
  }
}
@media screen and (min-width: 768px) {
  .post-sharing-list {
    width: 100%;
    justify-content: flex-end;
  }
}
@media screen and (max-width: 559px) {
  .post-sharing-list {
    justify-content: center;
  }
}
@media screen and (min-width: 1024px) {
  .post-sharing {
    --icon-size: 40px;
  }
  .post-sharing-title {
    display: block;
    font-size: 14px;
    margin-right: 1rem;
  }
}
@media screen and (min-width: 1559px) {
  .post-sharing {
    --icon-size: 60px;
  }
  .post-sharing-title {
    font-size: 20px;
    margin-bottom: 16px;
  }
  .post-sharing-link svg {
    width: calc(var(--icon-size) / 1.75);
    height: calc(var(--icon-size) / 1.75);
  }
}
.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;
  }
}
@media screen and (max-width: 739px) {
  .other-articles {
    display: flex;
    flex-flow: row nowrap;
    width: calc(100% + 2 * var(--x-pad));
    margin-left: calc(-1 * var(--x-pad));
    overflow: auto;
  }
  .other-articles > * {
    min-width: 70vw;
    margin-right: var(--x-pad);
  }
  .other-articles > *:first-child {
    margin-left: var(--x-pad);
  }
}
@media screen and (min-width: 560px) and (max-width: 739px) {
  .other-articles > * {
    min-width: 40vw;
  }
}
@media screen and (min-width: 740px) {
  .other-articles {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
  }
}
@media screen and (min-width: 1024px) and (max-width: 1279px) {
  .other-articles {
    gap: 1.5rem;
  }
}
@media screen and (min-width: 1280px) {
  .other-articles {
    gap: 2rem;
  }
}
.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;
  }
}
.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 */
.trans-y-wrap {
  position: relative;
  height: 0;
  z-index: 10;
}

.trans-y {
  transform: translateY(-100%);
}

.trans-y-row {
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
  display: flex;
  flex-flow: row-reverse nowrap;
  align-items: center;
  justify-content: space-between;
}

.trans-y-col {
  max-width: 45%;
}

.trans-y-controls {
  display: flex;
  flex-flow: row nowrap;
  align-items: center;
  justify-content: flex-start;
}

.trans-y-controls > *:first-child {
  margin-right: 0.5rem;
}

.trans-y-label {
  text-transform: uppercase;
  font-size: 10px;
  font-weight: 700;
  line-height: 1.3;
}

.trans-y-col:first-child .trans-y-label {
  text-align: right;
}

.trans-y-btns {
  display: flex;
  flex-flow: row nowrap;
  align-items: center;
  justify-content: flex-start;
}

.trans-y-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  border: 0 none;
  outline: 0 none;
  background: transparent none;
  margin: 0;
  padding: 0;
}

.trans-y-btn:not(:first-child) {
  margin-left: 0.5rem;
}

.trans-y-btn svg {
  display: block;
  width: 24px;
  height: 24px;
  object-fit: contain;
}

a.trans-y-btn,
a.trans-y-controls,
button.trans-y-btn,
button.trans-y-controls {
  transition: color 0.25s;
}

a.trans-y-btn:hover,
a.trans-y-controls:hover,
button.trans-y-btn:hover,
button.trans-y-controls:hover {
  color: var(--color-accent);
}

@media screen and (min-width: 768px) and (max-width: 1559px) {
  .trans-y-row {
    padding-top: 1rem;
    padding-bottom: 1rem;
  }
  .trans-y-label {
    font-size: 14px;
  }
  .trans-y-btn svg {
    width: 40px;
    height: 40px;
  }
}
@media screen and (min-width: 1560px) {
  .trans-y-row {
    padding-top: 1.5rem;
    padding-bottom: 1.5rem;
  }
  .trans-y-label {
    font-size: 20px;
  }
  .trans-y-btn svg {
    width: 56px;
    height: 56px;
  }
}
.trans-y-tooltip {
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s, visibility 0s 0.25s;
}

.trans-y-tooltip.visible {
  opacity: 1;
  visibility: visible;
  transition: opacity 0.25s;
}

.story-author-block {
  margin-top: var(--x-pad);
}

@media screen and (min-width: 768px) {
  .story-author-block {
    width: calc(68% - var(--x-pad));
    max-width: 900px;
  }
}
.story-author-header {
  text-transform: uppercase;
  font-weight: 700;
  font-size: 1.7em;
  color: #000;
}

.story-author-image {
  position: relative;
  width: 100%;
  margin-top: calc(var(--x-pad) / 2);
}

@supports (aspect-ratio: 750/418) {
  .story-author-image {
    aspect-ratio: 750/418;
  }
}
@supports not (aspect-ratio: 750/418) {
  .story-author-image::before {
    content: "";
    display: block;
    width: 100%;
    height: auto;
    padding-top: 55.73%;
  }
}
.story-author-info {
  margin-top: 1.11em;
  line-height: 1.3;
}

.story-author-date {
  color: #8B8B8B;
  font-size: 0.77em;
}

.story-author-title {
  font-size: 1.16em;
  font-weight: 600;
  color: #000;
}
