<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">.detail {
  display: grid;
  gap: calc(var(--grid-gap) / 2) var(--grid-gap);
  margin: 32px 0 10px 0;
  grid-template-columns: calc(100vw - var(--grid-gap));
}

.detail__footer {
  padding-top: 15px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  font-size: calc(14rem/var(--initial-font-multiplier));
  color: var(--text-color-light-gray);
  border-top: 1px solid var(--border-color);
}

.detail__footer-item {
  margin: 5px 60px 5px 5px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}

.detail__footer-item &gt; div {
  display: flex;
  align-items: center;
}

.detail__footer-item &gt; .js-show-counter {
  margin-left: 5px;
}

.detail__footer-label {
  margin: 5px 20px 5px 0;
}

:root.root--special .detail__footer {
  color: var(--special-text-color);
}

:root.root--special .detail__footer {
  border-color: var(--special-text-color);
}

@media (hover: hover) {
  .detail__text a:hover {
    text-decoration: underline;
    text-decoration-color: var(--primary-color-25);
  }
}

@media screen and (max-width: 895px) {
  .detail__photos picture {
    flex: 0 0 auto;
    width: calc(100vw - var(--grid-gap));
    height: calc(220 * (100vw - var(--grid-gap)) / 350)
  }

  .detail__photos img {
    margin: 0 auto;
  }
}

@media screen and (min-width: 896px) and (max-width: 1087px) {
  .detail {
    grid-template-columns: 1fr 350px;
    grid-template-rows: 0fr 0fr 1fr 0fr;
  }

  .detail__title {
    grid-column: 1 / -1;
  }

  .detail__meta-wrapper {
    grid-column: 1 / -1;
  }

  .detail__aside {
    grid-column: -2;
    grid-row: 3 / -2;
  }

  .detail__text {
    grid-column: 1;
  }

  .detail__footer {
    grid-column: 1 / -1;
    grid-row: -2;
  }
}

@media screen and (min-width: 1088px) {
  .detail {
    grid-template-columns: 1fr 350px;
    grid-template-rows: 0fr 0fr 1fr 0fr;
  }

  .detail__title {
    grid-column: 1;
    grid-row: 1;
  }

  .detail__meta-wrapper {
    grid-column: 1;
    grid-row: 2;
  }

  .detail__aside {
    grid-column: 2;
    grid-row: 1 / 4;
  }

  .detail__text {
    grid-column: 1;
    grid-row: 3;
  }

  .detail__footer {
    grid-column: 1 / 3;
    grid-row: 4;
  }
}
</pre></body></html>