.rate-count {
  display: flex;
  align-items: center;
  gap: var(--indent-s);
  font-family: "Roboto", "Arial", sans-serif;
  font-size: 12px;
  line-height: 14px;
  font-weight: 400;
  color: var(--cl-grey-dark);
}
@media screen and (min-width: 1000px) {
  .rate-count {
    font-family: "Roboto", "Arial", sans-serif;
    font-size: 14px;
    line-height: 18px;
    font-weight: 400;
  }
}
.rate-count .rate-count__item {
  margin: 0;
  white-space: nowrap;
  display: flex;
  gap: 2px;
  align-items: start;
}
.rate-count .rate-count__item svg {
  fill: var(--cl-yellow-rate);
}
.rate-count .rate-count__count {
  color: var(--cl-black-main);
  font-weight: 600;
}

@media screen and (min-width: 1000px) {
  .estimation {
    display: flex;
    gap: var(--indent-s);
    align-items: center;
  }
}

.estimation__title {
  margin: 0 0 16px;
  font-family: "Roboto", "Arial", sans-serif;
  font-size: 14px;
  line-height: 18px;
  font-weight: 400;
}
@media screen and (min-width: 1000px) {
  .estimation__title {
    margin-bottom: 0;
    font-family: "Roboto", "Arial", sans-serif;
    font-size: 16px;
    line-height: 20px;
    font-weight: 400;
  }
}
.estimation__title svg {
  fill: var(--cl-yellow-rate);
}

.estimation__fields {
  display: flex;
  gap: var(--indent-s);
  justify-content: flex-end;
  align-items: center;
}
@media screen and (min-width: 1000px) {
  .estimation__fields {
    flex: 1 1 auto;
  }
}

.estimation__fields:has(form) {
  justify-content: space-between;
}

.comments {
  width: 100%;
  max-width: 100%;
  overflow: hidden;
}

.comments__form {
  height: 0;
  overflow: hidden;
  transition: var(--transition-main), height 0.3s ease-in;
}

.comments__list {
  width: 100%;
}

.comment {
  padding: 12px;
  height: 100%;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  border-radius: var(--indent-m);
  background: var(--cl-background);
}
.comment .comment__header {
  margin-bottom: 12px;
  display: flex;
  gap: var(--indent-s);
  align-items: center;
}
.comment .comment__avatar {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  background: var(--cl-white);
}
.comment .comment__avatar svg,
.comment .comment__avatar img {
  width: 100%;
  height: auto;
  min-height: 100%;
  display: block;
  -o-object-fit: cover;
     object-fit: cover;
}
.comment .comment__name {
  margin: 0 0 var(--indent-s);
  font-family: "Roboto", "Arial", sans-serif;
  font-size: 14px;
  line-height: 16px;
  font-weight: 700;
}
@media screen and (min-width: 1000px) {
  .comment .comment__name {
    font-family: "Roboto", "Arial", sans-serif;
    font-size: 18px;
    line-height: 22px;
    font-weight: 700;
  }
}
.comment .comment__rate {
  display: flex;
  gap: var(--indent-xs);
}
.comment .comment__rate-item svg {
  fill: var(--cl-grey-light);
}
.comment .comment__rate-item.active svg {
  fill: var(--cl-yellow-rate);
}
.comment .comment__text-block {
  margin-bottom: 44px;
  flex: 1 1 auto;
  color: var(--cl-grey-dark);
}
.comment .comment__date-block {
  display: flex;
  gap: var(--indent-s);
  justify-content: space-between;
  font-family: "Roboto", "Arial", sans-serif;
  font-size: 12px;
  line-height: 14px;
  font-weight: 400;
  color: var(--cl-grey-light);
}
@media screen and (min-width: 1000px) {
  .comment .comment__date-block {
    font-family: "Roboto", "Arial", sans-serif;
    font-size: 14px;
    line-height: 18px;
    font-weight: 400;
  }
}
.comment .comment__date-block p {
  margin: 0;
}

.category-info {
  font-family: "Roboto", "Arial", sans-serif;
  font-size: 14px;
  line-height: 18px;
  font-weight: 400;
  color: var(--cl-grey-dark);
  display: flex;
  flex-direction: column;
  gap: var(--indent-m);
}
@media screen and (min-width: 1000px) {
  .category-info {
    font-family: "Roboto", "Arial", sans-serif;
    font-size: 16px;
    line-height: 20px;
    font-weight: 400;
  }
}

.category-info__title {
  margin-bottom: var(--indent-m);
  color: var(--cl-black-main);
}

.category-info__summary {
  padding: 0 0 var(--indent-m);
  margin: 0 0 var(--indent-s);
  box-sizing: border-box;
  border-bottom: 1px solid var(--cl-background);
}

.category-info__table {
  width: 100%;
  border-collapse: collapse;
  border-spacing: 0;
  font-family: "Roboto", "Arial", sans-serif;
  font-size: 14px;
  line-height: 18px;
  font-weight: 600;
  color: var(--cl-grey-dark);
}

.category-info__table-row td {
  padding: var(--indent-s) 0;
}
.category-info__table-row td:last-child {
  text-align: right;
  color: var(--cl-black-main);
}

.category-info__conditions-list {
  display: flex;
  justify-content: space-between;
  gap: var(--indent-s);
  font-family: "Roboto", "Arial", sans-serif;
  font-size: 14px;
  line-height: 18px;
  font-weight: 400;
}

.category-info__condition-item {
  flex: 0 0 calc((100% - var(--indent-s)) / 2);
}

.category-info__condition {
  display: flex;
  align-items: center;
  gap: var(--indent-xs);
}
@media screen and (min-width: 1000px) {
  .category-info__condition {
    align-items: flex-start;
  }
}

.category-info__conditions-icon {
  flex: 0 0 16px;
  width: 16px;
  aspect-ratio: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}
.category-info__conditions-icon svg {
  width: 100%;
  height: auto;
  display: block;
  -o-object-fit: contain;
     object-fit: contain;
  fill: var(--cl-purple-accent);
}

.category-info.category-info--article .category-info__content {
  background: var(--cl-background);
  padding: var(--indent-m);
  box-sizing: border-box;
  border-radius: var(--radius-m);
}
.category-info.category-info--article .category-info__summary {
  border-bottom-color: var(--cl-grey-light);
}

.article-block {
  padding: var(--indent-m);
  width: 100%;
  height: 100%;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  gap: var(--indent-s);
  background: var(--cl-background);
  border-radius: var(--radius-m);
}
@media screen and (min-width: 1000px) {
  .article-block {
    gap: var(--indent-m);
  }
}
.article-block .article-block__header {
  font-family: "Roboto", "Arial", sans-serif;
  font-size: 14px;
  line-height: 16px;
  font-weight: 700;
  color: var(--cl-grey-dark);
  text-transform: uppercase;
}
@media screen and (min-width: 1000px) {
  .article-block .article-block__header {
    font-family: "Roboto", "Arial", sans-serif;
    font-size: 18px;
    line-height: 22px;
    font-weight: 700;
  }
}
.article-block .article-block__title {
  font-family: "Roboto", "Arial", sans-serif;
  font-size: 16px;
  line-height: 18px;
  font-weight: 700;
  color: var(--cl-black-main) !important;
}
@media screen and (min-width: 1000px) {
  .article-block .article-block__title {
    font-family: "Roboto", "Arial", sans-serif;
    font-size: 18px;
    line-height: 22px;
    font-weight: 700;
  }
}

.article-header {
  display: flex;
  flex-direction: column;
  gap: var(--indent-l);
  overflow: hidden;
}

.article-nav {
  padding-bottom: var(--indent-xs);
  width: 100%;
  height: -moz-fit-content;
  height: fit-content;
  overflow-x: auto;
  overflow-y: hidden;
  scrollbar-color: var(--cl-purple-accent) var(--cl-background);
  scrollbar-width: thin;
}
.article-nav::-webkit-scrollbar {
  height: 3px;
  width: 0;
}
.article-nav::-webkit-scrollbar-thumb:vertical, .article-nav::-webkit-scrollbar-track:vertical {
  display: none;
}
.article-nav::-webkit-scrollbar-thumb {
  background: var(--cl-purple-accent);
  border-radius: 5px;
}
.article-nav::-webkit-scrollbar-track {
  background: var(--cl-shadow);
  border-radius: 5px;
}
.article-nav::-webkit-scrollbar-button {
  display: none;
  opacity: 0;
}

.article-nav.sticky {
  padding: var(--indent-sm) 20px var(--indent-s);
  width: 100%;
  box-sizing: border-box;
  top: 0;
  left: 0;
  height: -moz-fit-content;
  height: fit-content;
  position: fixed;
  z-index: 1000;
  background: var(--cl-background);
  box-shadow: 0 0 10px 0 var(--cl-shadow-secondary);
}
.article-nav.sticky .article-nav__list {
  padding-bottom: var(--indent-xs);
  overflow-x: auto;
  overflow-y: hidden;
  scrollbar-color: var(--cl-purple-accent) var(--cl-background);
  scrollbar-width: thin;
}
.article-nav.sticky .article-nav__list::-webkit-scrollbar {
  height: 3px;
  width: 0;
}
.article-nav.sticky .article-nav__list::-webkit-scrollbar-thumb:vertical, .article-nav.sticky .article-nav__list::-webkit-scrollbar-track:vertical {
  display: none;
}
.article-nav.sticky .article-nav__list::-webkit-scrollbar-thumb {
  background: var(--cl-purple-accent);
  border-radius: 5px;
}
.article-nav.sticky .article-nav__list::-webkit-scrollbar-track {
  background: var(--cl-shadow);
  border-radius: 5px;
}
.article-nav.sticky .article-nav__list::-webkit-scrollbar-button {
  display: none;
  opacity: 0;
}

.article-nav.hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  position: absolute;
  z-index: -1;
  width: 0;
  height: 0;
  overflow: hidden;
  clip: rect(0 0 0 0);
  margin: -1px;
  padding: 0;
}

.article-nav__list {
  display: flex;
  align-items: stretch;
  gap: var(--indent-s);
}

.article-nav__item {
  width: -moz-fit-content;
  width: fit-content;
  min-height: 100%;
  flex: 0 0 fit-content;
}

.article-nav__link {
  width: -moz-fit-content;
  width: fit-content;
  min-height: 100%;
  box-sizing: border-box;
  display: flex;
  align-items: center;
  gap: var(--indent-s);
  cursor: pointer;
  padding: 16px;
  box-sizing: border-box;
  background-color: var(--cl-white);
  border-radius: var(--indent-m);
}
.article-nav__link svg {
  width: 100%;
  height: auto;
  display: block;
  -o-object-fit: contain;
     object-fit: contain;
}

.article-nav__icon-block {
  flex: 0 0 16px;
  width: 16px;
  aspect-ratio: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}
.article-nav__icon-block svg {
  width: 100%;
  height: auto;
  display: block;
  -o-object-fit: contain;
     object-fit: contain;
}

.article-paper {
  padding: var(--indent-m);
  box-sizing: border-box;
  background-color: var(--cl-white);
  border-radius: var(--radius-s);
}
@media screen and (min-width: 1000px) {
  .article-paper {
    padding: var(--indent-l);
    box-sizing: border-box;
    background-color: var(--cl-white);
    border-radius: var(--radius-m);
  }
}

.article-detailed__header {
  width: 100%;
}

.article-detailed__stats {
  margin-bottom: var(--indent-s);
}
@media screen and (min-width: 1000px) {
  .article-detailed__stats {
    margin-bottom: 20px;
  }
}

.article-detailed__content {
  display: grid;
  grid-template-rows: repeat(2, auto);
  grid-template-columns: 100%;
  row-gap: var(--indent-s);
}
@media screen and (min-width: 1000px) {
  .article-detailed__content {
    -moz-column-gap: 20px;
         column-gap: 20px;
    grid-template-rows: auto;
    grid-template-columns: calc(100% - 390px - 20px) 390px;
  }
}

.article-detailed__main {
  grid-row: 2/3;
  grid-column: 1/2;
}
@media screen and (min-width: 1000px) {
  .article-detailed__main {
    grid-row: 1/2;
    grid-column: 1/2;
  }
}

.article-detailed__aside {
  grid-row: 1/2;
  grid-column: 1/2;
}
@media screen and (min-width: 1000px) {
  .article-detailed__aside {
    grid-row: 1/2;
    grid-column: 2/3;
  }
}

.article-stats {
  display: flex;
  flex-direction: column;
  gap: var(--indent-m);
}
@media screen and (min-width: 1000px) {
  .article-stats {
    flex-direction: row;
    flex-wrap: wrap;
  }
}

.article-stats__info,
.article-stats__dates {
  display: flex;
  gap: var(--indent-m);
}
@media screen and (min-width: 1000px) {
  .article-stats__info,
  .article-stats__dates {
    flex: 0 0 calc((100% - var(--indent-m)) / 2);
  }
}

.stats-info {
  display: flex;
  align-items: center;
  gap: var(--indent-s);
  font-family: "Roboto", "Arial", sans-serif;
  font-size: 14px;
  line-height: 18px;
  font-weight: 600;
  color: var(--cl-grey-dark);
}
@media screen and (min-width: 1000px) {
  .stats-info {
    font-family: "Roboto", "Arial", sans-serif;
    font-size: 16px;
    line-height: 20px;
    font-weight: 600;
  }
}

.stats-info__icon-block {
  width: 24px;
  aspect-ratio: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}
.stats-info__icon-block svg {
  width: 100%;
  height: auto;
  display: block;
  -o-object-fit: contain;
     object-fit: contain;
}

.stats-date {
  font-family: "Roboto", "Arial", sans-serif;
  font-size: 14px;
  line-height: 18px;
  font-weight: 600;
  font-family: "Roboto", "Arial", sans-serif;
  font-size: 14px;
  line-height: 18px;
  font-weight: 600;
  color: var(--cl-grey-dark);
}
@media screen and (min-width: 1000px) {
  .stats-date {
    font-family: "Roboto", "Arial", sans-serif;
    font-size: 16px;
    line-height: 20px;
    font-weight: 600;
  }
}

.stats-date__label {
  color: var(--cl-black-main);
}

.article-aside {
  display: flex;
  flex-direction: column;
  gap: var(--indent-s);
  overscroll-behavior: contain;
}
@media screen and (min-width: 1000px) {
  .article-aside {
    gap: 20px;
  }
}

.article-aside__article-navigation {
  overflow-x: auto;
  overflow-y: hidden;
  scrollbar-color: var(--cl-purple-accent) var(--cl-background);
  scrollbar-width: thin;
}
.article-aside__article-navigation::-webkit-scrollbar {
  height: 3px;
  width: 0;
}
.article-aside__article-navigation::-webkit-scrollbar-thumb:vertical, .article-aside__article-navigation::-webkit-scrollbar-track:vertical {
  display: none;
}
.article-aside__article-navigation::-webkit-scrollbar-thumb {
  background: var(--cl-purple-accent);
  border-radius: 5px;
}
.article-aside__article-navigation::-webkit-scrollbar-track {
  background: var(--cl-shadow);
  border-radius: 5px;
}
.article-aside__article-navigation::-webkit-scrollbar-button {
  display: none;
  opacity: 0;
}
@media screen and (min-width: 1000px) {
  .article-aside__article-navigation {
    padding: var(--indent-l);
    box-sizing: border-box;
    background-color: var(--cl-white);
    border-radius: var(--radius-s);
  }
}

.author__header {
  display: flex;
  gap: var(--indent-m);
  align-items: center;
}

.author__image-block {
  flex: 0 0 40px;
  width: 40px;
  aspect-ratio: 1;
  display: flex;
  justify-content: center;
  align-items: stretch;
  border-radius: 50%;
  overflow: hidden;
  background: var(--cl-background);
}
.author__image-block img {
  height: auto;
  min-width: 100%;
  min-height: 100%;
  display: block;
  -o-object-fit: cover;
     object-fit: cover;
}

.author__name-block {
  display: flex;
  flex-direction: column;
  gap: var(--indent-xs);
  font-family: "Roboto", "Arial", sans-serif;
  font-size: 16px;
  line-height: 20px;
  font-weight: 600;
  color: var(--cl-grey-dark);
}

.author__name {
  color: var(--cl-black-main);
}

.author__description {
  margin: 0;
}

.article-content__product-card .card-horizontal__image-block {
  flex: 0 0 50%;
  max-width: 200px;
}
@media screen and (min-width: 768px) {
  .article-content__product-card .card-horizontal__image-block {
    max-width: 240px;
    flex: 0 0 240px;
  }
}

.article-content__intro-text {
  font-family: "Roboto", "Arial", sans-serif;
  font-size: 14px;
  line-height: 117%;
  font-weight: 600;
  font-style: italic;
}
@media screen and (min-width: 1000px) {
  .article-content__intro-text {
    font-family: "Roboto", "Arial", sans-serif;
    font-size: 16px;
    line-height: 20px;
    font-weight: 600;
    font-style: italic;
  }
}
.article-content__intro-text a {
  color: var(--cl-purple-dark);
  font-weight: 700;
  text-decoration: none;
}
.article-content__intro-text mark {
  color: inherit;
  background-color: var(--cl-purple-light);
}
.article-content__intro-text > * {
  margin: 0 0 var(--indent-m);
}
.article-content__intro-text > *:last-child {
  margin-bottom: 0;
}

.article-text > p,
.article-text > span,
.article-text > ul,
.article-text > ol,
.article-text > div > p,
.article-text > div > span,
.article-text > div > ul,
.article-text > div > ol,
.article-text > div:not([class]) > p,
.article-text > div:not([class]) > span,
.article-text > div:not([class]) > ul,
.article-text > div:not([class]) > ol,
.article-text > div:not([class]) > div > p,
.article-text > div:not([class]) > div > span,
.article-text > div:not([class]) > div > ul,
.article-text > div:not([class]) > div > ol {
  font-family: "Roboto", "Arial", sans-serif;
  font-size: 14px;
  line-height: 18px;
  font-weight: 400;
  color: var(--cl-grey-dark);
}
@media screen and (min-width: 1000px) {
  .article-text > p,
  .article-text > span,
  .article-text > ul,
  .article-text > ol,
  .article-text > div > p,
  .article-text > div > span,
  .article-text > div > ul,
  .article-text > div > ol,
  .article-text > div:not([class]) > p,
  .article-text > div:not([class]) > span,
  .article-text > div:not([class]) > ul,
  .article-text > div:not([class]) > ol,
  .article-text > div:not([class]) > div > p,
  .article-text > div:not([class]) > div > span,
  .article-text > div:not([class]) > div > ul,
  .article-text > div:not([class]) > div > ol {
    font-family: "Roboto", "Arial", sans-serif;
    font-size: 16px;
    line-height: 20px;
    font-weight: 400;
  }
}
.article-text b,
.article-text > div:not([class]) b {
  color: var(--cl-black-main);
}
.article-text > ul,
.article-text > div > ul,
.article-text > div:not([class]) > ul,
.article-text > div:not([class]) > div > ul {
  display: flex;
  flex-direction: column;
  gap: var(--indent-xs);
}
.article-text > h2,
.article-text > div > h2,
.article-text > div:not([class]) > h2,
.article-text > div:not([class]) > div > h2 {
  margin: 0 0 36px;
  font-family: "Roboto", "Arial", sans-serif;
  font-size: 20px;
  line-height: 24px;
  font-weight: 700;
  color: var(--cl-black-main);
}
.article-text > h3,
.article-text > div > h3,
.article-text > div:not([class]) > h3,
.article-text > div:not([class]) > div > h3 {
  margin: 0 0 30px;
  font-family: "Roboto", "Arial", sans-serif;
  font-size: 16px;
  line-height: 18px;
  font-weight: 700;
  color: var(--cl-black-main);
}
@media screen and (min-width: 1000px) {
  .article-text > h3,
  .article-text > div > h3,
  .article-text > div:not([class]) > h3,
  .article-text > div:not([class]) > div > h3 {
    font-family: "Roboto", "Arial", sans-serif;
    font-size: 24px;
    line-height: 28px;
    font-weight: 700;
  }
}
.article-text > h4,
.article-text > div > h4,
.article-text > div:not([class]) > h4,
.article-text > div:not([class]) > div > h4 {
  margin: 0 0 24px;
  font-family: "Roboto", "Arial", sans-serif;
  font-size: 14px;
  line-height: 16px;
  font-weight: 700;
  color: var(--cl-black-main);
}
@media screen and (min-width: 1000px) {
  .article-text > h4,
  .article-text > div > h4,
  .article-text > div:not([class]) > h4,
  .article-text > div:not([class]) > div > h4 {
    font-family: "Roboto", "Arial", sans-serif;
    font-size: 18px;
    line-height: 22px;
    font-weight: 700;
  }
}
.article-text .article-content__product,
.article-text > div:not([class]) .article-content__product {
  padding: 30px 0;
}
.article-text .article-content__product:last-child,
.article-text > div:not([class]) .article-content__product:last-child {
  padding-bottom: 0;
}
@media screen and (min-width: 1000px) {
  .article-text .article-content__product,
  .article-text > div:not([class]) .article-content__product {
    padding: 50px 0;
  }
  .article-text .article-content__product:last-child,
  .article-text > div:not([class]) .article-content__product:last-child {
    padding-bottom: 0;
  }
}
.article-text .article-content__product + .article-content__product,
.article-text > div:not([class]) .article-content__product + .article-content__product {
  padding: 0 0 30px;
}
@media screen and (min-width: 1000px) {
  .article-text .article-content__product + .article-content__product,
  .article-text > div:not([class]) .article-content__product + .article-content__product {
    padding: 0 0 50px;
  }
}
.article-text .article-content__theme,
.article-text > div:not([class]) .article-content__theme {
  padding: 30px 0;
}
.article-text .article-content__theme:first-child,
.article-text > div:not([class]) .article-content__theme:first-child {
  padding-top: 0;
}
@media screen and (min-width: 1000px) {
  .article-text .article-content__theme,
  .article-text > div:not([class]) .article-content__theme {
    padding: 30px 0;
  }
}
.article-text .article-content__category-info,
.article-text > div:not([class]) .article-content__category-info {
  padding: 30px 0;
}
.article-text .article-content__category-info:first-child,
.article-text > div:not([class]) .article-content__category-info:first-child {
  padding-top: 0;
}
@media screen and (min-width: 1000px) {
  .article-text .article-content__category-info,
  .article-text > div:not([class]) .article-content__category-info {
    padding: 30px 0;
  }
}
.article-text .article-content__category-info + .article-content__theme,
.article-text > div:not([class]) .article-content__category-info + .article-content__theme {
  padding: 0 0 30px;
}
@media screen and (min-width: 1000px) {
  .article-text .article-content__category-info + .article-content__theme,
  .article-text > div:not([class]) .article-content__category-info + .article-content__theme {
    padding: 0 0 30px;
  }
}
.article-text .article-content__product-list,
.article-text > div:not([class]) .article-content__product-list {
  padding: 30px 0;
}
.article-text .article-content__product-list:first-child,
.article-text > div:not([class]) .article-content__product-list:first-child {
  padding-top: 0;
}
@media screen and (min-width: 1000px) {
  .article-text .article-content__product-list,
  .article-text > div:not([class]) .article-content__product-list {
    padding: 30px 0;
  }
}
.article-text > *,
.article-text > div > *,
.article-text > div:not([class]) > *,
.article-text > div:not([class]) > div > * {
  margin: 0 0 var(--indent-m);
}
.article-text > *:has(+ h2),
.article-text > div > *:has(+ h2),
.article-text > div:not([class]) > *:has(+ h2),
.article-text > div:not([class]) > div > *:has(+ h2) {
  margin-bottom: 30px;
}
.article-text > *:has(+ h3),
.article-text > div > *:has(+ h3),
.article-text > div:not([class]) > *:has(+ h3),
.article-text > div:not([class]) > div > *:has(+ h3) {
  margin-bottom: 30px;
}
.article-text > *:has(+ h4),
.article-text > div > *:has(+ h4),
.article-text > div:not([class]) > *:has(+ h4),
.article-text > div:not([class]) > div > *:has(+ h4) {
  margin-bottom: 24px;
}
.article-text > *:has(+ blockquote),
.article-text > div > *:has(+ blockquote),
.article-text > div:not([class]) > *:has(+ blockquote),
.article-text > div:not([class]) > div > *:has(+ blockquote) {
  margin-bottom: 24px;
}
.article-text > *:has(+ .adv),
.article-text > div > *:has(+ .adv),
.article-text > div:not([class]) > *:has(+ .adv),
.article-text > div:not([class]) > div > *:has(+ .adv) {
  margin-bottom: 30px;
}
@media screen and (min-width: 1000px) {
  .article-text > *:has(+ .adv),
  .article-text > div > *:has(+ .adv),
  .article-text > div:not([class]) > *:has(+ .adv),
  .article-text > div:not([class]) > div > *:has(+ .adv) {
    margin-bottom: 30px;
  }
}
.article-text > *.article-content__product, .article-text > *.article-content__theme, .article-text > *.article-content__product-list,
.article-text > div > *.article-content__product,
.article-text > div > *.article-content__theme,
.article-text > div > *.article-content__product-list,
.article-text > div:not([class]) > *.article-content__product,
.article-text > div:not([class]) > *.article-content__theme,
.article-text > div:not([class]) > *.article-content__product-list,
.article-text > div:not([class]) > div > *.article-content__product,
.article-text > div:not([class]) > div > *.article-content__theme,
.article-text > div:not([class]) > div > *.article-content__product-list {
  margin-bottom: 0;
}
.article-text > *:last-child,
.article-text > div > *:last-child,
.article-text > div:not([class]) > *:last-child,
.article-text > div:not([class]) > div > *:last-child {
  margin-bottom: 0;
}
.article-text > .adv,
.article-text > div > .adv,
.article-text > div:not([class]) > .adv,
.article-text > div:not([class]) > div > .adv {
  margin-bottom: 30px;
}
@media screen and (min-width: 1000px) {
  .article-text > .adv,
  .article-text > div > .adv,
  .article-text > div:not([class]) > .adv,
  .article-text > div:not([class]) > div > .adv {
    margin-bottom: 30px;
  }
}
.article-text > blockquote,
.article-text > div > blockquote,
.article-text > div:not([class]) > blockquote,
.article-text > div:not([class]) > div > blockquote {
  margin-bottom: 30px;
}
.article-text > blockquote:last-child,
.article-text > div > blockquote:last-child,
.article-text > div:not([class]) > blockquote:last-child,
.article-text > div:not([class]) > div > blockquote:last-child {
  margin-bottom: 0;
}
.article-text > *:has(+ .article-content__product),
.article-text > div > *:has(+ .article-content__product),
.article-text > *:has(+ .article-content__theme),
.article-text > div > *:has(+ .article-content__theme),
.article-text > *:has(+ .article-content__category-info),
.article-text > div > *:has(+ .article-content__category-info),
.article-text > div:not([class]) > *:has(+ .article-content__product),
.article-text > div:not([class]) > div > *:has(+ .article-content__product),
.article-text > div:not([class]) > *:has(+ .article-content__theme),
.article-text > div:not([class]) > div > *:has(+ .article-content__theme),
.article-text > div:not([class]) > *:has(+ .article-content__category-info),
.article-text > div:not([class]) > div > *:has(+ .article-content__category-info) {
  margin-bottom: 0;
}
.article-text > div:not([class]):not(:has(+ .article-content__product)):not(:has(+ .article-content__theme)),
.article-text > div:not([class]) > div:not([class]):not(:has(+ .article-content__product)):not(:has(+ .article-content__theme)) {
  margin: 0 0 30px;
}
.article-text .i3,
.article-text > div:not([class]) .i3 {
  display: flex;
  flex-direction: column;
  gap: var(--indent-s);
}
@media screen and (min-width: 768px) {
  .article-text .i3,
  .article-text > div:not([class]) .i3 {
    flex-direction: row;
    justify-content: space-between;
    gap: var(--indent-m);
  }
}
@media screen and (min-width: 1000px) {
  .article-text .i3,
  .article-text > div:not([class]) .i3 {
    gap: var(--indent-l);
  }
}
.article-text .i3 img,
.article-text > div:not([class]) .i3 img {
  max-width: 100%;
  height: auto;
  display: block;
  -o-object-fit: contain;
     object-fit: contain;
}
.article-text .i3 .e,
.article-text > div:not([class]) .i3 .e {
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: var(--indent-s);
}
@media screen and (min-width: 768px) {
  .article-text .i3 .e,
  .article-text > div:not([class]) .i3 .e {
    flex: 0 0 30%;
    gap: var(--indent-m);
  }
}
.article-text .i3 .h,
.article-text > div:not([class]) .i3 .h {
  font-family: "Roboto", "Arial", sans-serif;
  font-size: 14px;
  line-height: 16px;
  font-weight: 700;
}
.article-text .i3 .txt,
.article-text > div:not([class]) .i3 .txt {
  flex: 1 1 auto;
  font-family: "Roboto", "Arial", sans-serif;
  font-size: 12px;
  line-height: 14px;
  font-weight: 400;
  color: var(--cl-grey-dark);
}
.article-text .img,
.article-text > div:not([class]) .img {
  width: 100%;
  height: auto;
  border-radius: var(--radius-s);
  overflow: hidden;
}
.article-text .img img,
.article-text > div:not([class]) .img img {
  width: 100%;
  max-width: 100%;
  height: auto;
  display: block;
  -o-object-fit: contain;
     object-fit: contain;
}
.article-text .table-wrapper,
.article-text > div:not([class]) .table-wrapper {
  font-family: "Roboto", "Arial", sans-serif;
  font-size: 14px;
  line-height: 18px;
  font-weight: 400;
  overflow-x: auto;
  overflow-y: hidden;
  scrollbar-color: var(--cl-purple-accent) var(--cl-background);
  scrollbar-width: thin;
}
.article-text .table-wrapper::-webkit-scrollbar,
.article-text > div:not([class]) .table-wrapper::-webkit-scrollbar {
  height: 3px;
  width: 0;
}
.article-text .table-wrapper::-webkit-scrollbar-thumb:vertical, .article-text .table-wrapper::-webkit-scrollbar-track:vertical,
.article-text > div:not([class]) .table-wrapper::-webkit-scrollbar-thumb:vertical,
.article-text > div:not([class]) .table-wrapper::-webkit-scrollbar-track:vertical {
  display: none;
}
.article-text .table-wrapper::-webkit-scrollbar-thumb,
.article-text > div:not([class]) .table-wrapper::-webkit-scrollbar-thumb {
  background: var(--cl-purple-accent);
  border-radius: 5px;
}
.article-text .table-wrapper::-webkit-scrollbar-track,
.article-text > div:not([class]) .table-wrapper::-webkit-scrollbar-track {
  background: var(--cl-shadow);
  border-radius: 5px;
}
.article-text .table-wrapper::-webkit-scrollbar-button,
.article-text > div:not([class]) .table-wrapper::-webkit-scrollbar-button {
  display: none;
  opacity: 0;
}
.article-text .table-wrapper,
.article-text > div:not([class]) .table-wrapper {
  border: 1px solid var(--cl-grey-light);
}
@media screen and (min-width: 1000px) {
  .article-text .table-wrapper,
  .article-text > div:not([class]) .table-wrapper {
    font-family: "Roboto", "Arial", sans-serif;
    font-size: 16px;
    line-height: 20px;
    font-weight: 400;
  }
}
.article-text table:not([class]),
.article-text > div:not([class]) table:not([class]) {
  min-width: 100%;
  border-collapse: collapse;
  border-spacing: 0;
}
.article-text table:not([class]) tr,
.article-text > div:not([class]) table:not([class]) tr {
  border-bottom: 1px solid var(--cl-grey-light);
}
.article-text table:not([class]) tr:last-child,
.article-text > div:not([class]) table:not([class]) tr:last-child {
  border-bottom: none;
}
.article-text table:not([class]) th,
.article-text table:not([class]) td,
.article-text > div:not([class]) table:not([class]) th,
.article-text > div:not([class]) table:not([class]) td {
  padding: var(--indent-xs);
  width: -moz-fit-content;
  width: fit-content;
  border-right: 1px solid var(--cl-grey-light);
}
.article-text table:not([class]) th:last-child,
.article-text table:not([class]) td:last-child,
.article-text > div:not([class]) table:not([class]) th:last-child,
.article-text > div:not([class]) table:not([class]) td:last-child {
  border-right: none;
}
.article-text table:not([class]) th,
.article-text > div:not([class]) table:not([class]) th {
  text-align: center;
  background: var(--cl-background);
}
.article-text figure img,
.article-text > div:not([class]) figure img {
  width: 100%;
  max-width: 100%;
  height: auto;
  display: block;
  -o-object-fit: contain;
     object-fit: contain;
}
.article-text blockquote,
.article-text > div:not([class]) blockquote {
  padding: var(--indent-xl) var(--indent-l) var(--indent-l);
  box-sizing: border-box;
  position: relative;
  font-family: "Roboto", "Arial", sans-serif;
  font-size: 16px;
  line-height: 128%;
  font-weight: 400;
  font-weight: 600;
  color: var(--cl-black-main);
  z-index: 1;
}
.article-text blockquote:after,
.article-text > div:not([class]) blockquote:after {
  content: "";
  width: 100%;
  position: absolute;
  top: 10px;
  bottom: 0;
  left: 50%;
  z-index: -1;
  transform: translateX(-50%);
  background: var(--cl-background);
  border-radius: var(--radius-m);
}
.article-text blockquote::before,
.article-text > div:not([class]) blockquote::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 35px;
  height: 25px;
  background: url("/build/assets/img/general/quotes.png") no-repeat center/contain;
  z-index: 0;
}
.article-text blockquote iframe,
.article-text > div:not([class]) blockquote iframe {
  width: 100% !important;
  height: auto;
  aspect-ratio: 5/3;
}
.article-text .adv,
.article-text > div:not([class]) .adv {
  counter-reset: lvl1;
  display: flex;
  flex-direction: column;
  gap: var(--indent-l);
}
@media screen and (min-width: 768px) {
  .article-text .adv,
  .article-text > div:not([class]) .adv {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 30px;
  }
}
.article-text .adv > p,
.article-text > div:not([class]) .adv > p {
  margin: 0;
  display: flex;
  flex-direction: column;
  counter-increment: lvl1;
  gap: var(--indent-s);
}
@media screen and (min-width: 768px) {
  .article-text .adv > p,
  .article-text > div:not([class]) .adv > p {
    flex: 0 0 calc((100% - var(--indent-xl)) / 2);
    gap: var(--indent-m);
  }
}
.article-text .adv > p .h,
.article-text > div:not([class]) .adv > p .h {
  display: flex;
  align-items: center;
  gap: var(--indent-s);
  font-family: "Roboto", "Arial", sans-serif;
  font-size: 16px;
  line-height: 18px;
  font-weight: 700;
  line-height: 100%;
  color: var(--cl-black-main);
}
@media screen and (min-width: 1000px) {
  .article-text .adv > p .h,
  .article-text > div:not([class]) .adv > p .h {
    font-family: "Roboto", "Arial", sans-serif;
    font-size: 24px;
    line-height: 28px;
    font-weight: 700;
    line-height: 100%;
    gap: var(--indent-m);
  }
}
.article-text .adv > p .h::before,
.article-text > div:not([class]) .adv > p .h::before {
  content: counter(lvl1, decimal-leading-zero);
  font-family: "Roboto", "Arial", sans-serif;
  font-size: 20px;
  line-height: 24px;
  font-weight: 700;
  line-height: 100%;
  color: var(--cl-grey-light);
}
@media screen and (min-width: 1000px) {
  .article-text .adv > p .h::before,
  .article-text > div:not([class]) .adv > p .h::before {
    font-family: "Roboto", "Arial", sans-serif;
    font-size: 32px;
    line-height: 36px;
    font-weight: 700;
    line-height: 100%;
  }
}
.article-text a:not([class]),
.article-text > div:not([class]) a:not([class]) {
  color: var(--cl-purple-dark);
  font-weight: 700;
  text-decoration: none;
}
.article-text mark,
.article-text > div:not([class]) mark {
  color: inherit;
  background-color: var(--cl-purple-light);
}

.content {
  display: flex;
  align-items: stretch;
  gap: var(--indent-s);
}
@media screen and (min-width: 1000px) {
  .content {
    flex-direction: column;
    gap: var(--indent-m);
  }
}

.content__link {
  display: flex;
  width: -moz-fit-content;
  width: fit-content;
  min-width: 140px;
  height: 100%;
  box-sizing: border-box;
  align-items: center;
  gap: var(--indent-s);
  cursor: pointer;
  padding: var(--indent-sm);
  box-sizing: border-box;
  background-color: var(--cl-white);
  border-radius: var(--radius-s);
  font-family: "Roboto", "Arial", sans-serif;
  font-size: 16px;
  line-height: 20px;
  font-weight: 600;
}
@media screen and (min-width: 1000px) {
  .content__link {
    padding: 0;
    background: transparent;
    border-radius: 0;
    font-family: "Roboto", "Arial", sans-serif;
    font-size: 18px;
    line-height: 22px;
    font-weight: 600;
  }
}

.article-feedback__header {
  margin-bottom: var(--indent-s);
  display: flex;
  gap: var(--indent-s);
  justify-content: space-between;
}/*# sourceMappingURL=article-detailed.css.map */
