/* Цвета */
/* Шрифты */
/* Контейнер */
/* Breakpoints */
/* Heading size */
/*---------------------------------------------------
    LESS Elements 0.9
  ---------------------------------------------------
    A set of useful LESS mixins
    More info at: http://lesselements.com
  ---------------------------------------------------*/
.rich[contenteditable="true"] {
  -webkit-user-modify: read-only;
  -moz-user-modify: read-only;
  user-modify: read-only;
}
.also-viewed {
  display: grid;
  grid-template-columns: 100%;
  gap: 20px;
}
@media (min-width: 768px) {
  .also-viewed {
    gap: 24px;
  }
}
.also-viewed__title {
  font-size: 1.25rem;
  letter-spacing: -0.03em;
  line-height: 1.3em;
  font-weight: 500;
  color: #0D0D0D;
}
@media (min-width: 768px) and (max-width: 1024px) {
  .also-viewed__title {
    font-size: 1.75rem;
  }
}
@media (min-width: 1024px) {
  .also-viewed__title {
    font-size: 2rem;
  }
}
@media (min-width: 768px) and (max-width: 1024px) {
  .also-viewed__title {
    line-height: 1.286em;
  }
}
@media (min-width: 1024px) {
  .also-viewed__title {
    line-height: 1.25em;
  }
}
.also-viewed__list {
  display: flex;
  flex-direction: column;
  gap: 12px 20px;
}
@media (min-width: 768px) and (max-width: 1023px) {
  .also-viewed__list {
    flex-direction: row;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    overflow-y: auto;
    margin: 0 -34px;
    padding: 0 34px;
    scroll-padding: 0 34px;
  }
}
@media (min-width: 1024px) {
  .also-viewed__list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
  }
}
.also-viewed__link {
  display: grid;
  grid-template-columns: 40px auto 48px;
  padding: 16px;
  gap: 16px;
  align-items: center;
  background-color: #36393E;
  color: #fff;
  font-size: 1rem;
  line-height: 1.25em;
  letter-spacing: -0.02em;
  font-weight: 500;
  border-radius: 24px;
  scroll-padding: 0 8px;
  scroll-snap-align: start;
}
@media (min-width: 768px) {
  .also-viewed__link {
    font-size: 1.25rem;
    line-height: 1.2em;
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  .also-viewed__link {
    min-width: 340px;
  }
}
@media (min-width: 768px) and (max-width: 1439px) {
  .also-viewed__link {
    grid-template-columns: auto 48px;
    gap: 16px 0;
  }
}
@media (min-width: 1024px) {
  .also-viewed__link {
    font-size: 1.25rem;
    line-height: 1.2em;
  }
}
@media (min-width: 1440px) {
  .also-viewed__link {
    padding-left: 24px;
  }
}
@media (hover: hover) {
  .also-viewed__link {
    transition: color 0.35s, background-color 0.35s;
  }
  .also-viewed__link:hover {
    background-color: #0D0D0D;
    color: #fff;
  }
}
.also-viewed__link-name {
  text-transform: lowercase;
}
.also-viewed__link-name::first-letter {
  text-transform: uppercase;
}
.also-viewed__link-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  color: #496090;
  background-color: #fff;
  min-width: 40px;
  width: 40px;
  height: 40px;
}
.also-viewed__link-icon svg {
  display: block;
  width: 24px;
  height: 24px;
}
.also-viewed__link-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 48px;
  width: 48px;
  height: 48px;
}
@media (min-width: 768px) and (max-width: 1439px) {
  .also-viewed__link-arrow {
    grid-column: 2;
    grid-row: 1 / 3;
  }
}

