.sorting.circle-indicator.news-sorting:before {
  margin-left: 19px;
  margin-right: 11px;
}

.sorting.circle-indicator.news-category-sorting:before {
  margin-left: 19px;
  margin-right: 21px;
}

.news {
  background: var(--base-3);
  border: 1px solid var(--base-border);
  border-radius: 25px;
  padding: 10px;
  width: 100%;
  overflow: hidden;
}
.news__no-more {
  padding: 10px;
}
.news__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 10px;
}
.news__item {
  border: 1px solid var(--base-border);
  border-radius: 15px;
  padding: 15px;
  -webkit-transition: 0.2s;
  transition: 0.2s;
  -ms-flex-preferred-size: calc(50% - 5px);
      flex-basis: calc(50% - 5px);
  position: relative;
  overflow: hidden;
}
.news__item .circle-indicator::before {
  margin-right: 5px;
  margin-left: 9px;
}
.news__item .favorite-button {
  position: absolute;
  right: 15px;
  top: 17px;
  border: none;
  width: 24px;
  height: 24px;
}
.news__item .favorite-button:not(.active) {
  display: none;
}
.news__item .favorite-button.active {
  background: transparent;
}
.news__item:hover .favorite-button {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.news__item-box {
  border: 1px solid var(--hover-border);
}
.news__item-box .box-body__navigation-fixed {
  background: transparent;
}
.news__item-box .news__title {
  max-width: 90%;
}
.news__item.hover {
  cursor: pointer;
  background: var(--base-4);
  border-color: var(--hover-border);
}
.news__item.hover .news__title {
  color: var(--font-light-1);
}
.news__item.hover .news__row span {
  opacity: 1;
  color: var(--font-light-1);
}
.news__item.loading-card {
  pointer-events: none;
}
.news__item.loading-card::before {
  opacity: 1;
  visibility: visible;
}
.news__item.loading-card:after {
  display: block;
}
.news__item:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: var(--loading-bg);
  z-index: 10;
  -webkit-transition: 0.2s;
  transition: 0.2s;
  opacity: 0;
  visibility: hidden;
  border-radius: 15px;
}
.news__item:after {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  right: 0;
  bottom: 0;
  background: -webkit-gradient(linear, left top, right top, from(transparent), color-stop(50%, var(--loading-shine)), to(transparent));
  background: linear-gradient(90deg, transparent 0%, var(--loading-shine) 50%, transparent 100%);
  z-index: 12;
  width: 200%;
  -webkit-animation: loading-shine 1.5s infinite;
          animation: loading-shine 1.5s infinite;
  -webkit-transition: 0.2s;
  transition: 0.2s;
  display: none;
  border-radius: 15px;
}
.news__title {
  max-height: 63px;
  min-height: 63px;
  height: 63px;
  line-height: 131%;
  color: var(--font-primary);
  -webkit-transition: 0.2s;
  transition: 0.2s;
  overflow: hidden;
  width: calc(100% - 30px);
  display: block;
}
.news-category a {
  color: var(--font-light-2);
}
.news-category a:hover {
  color: var(--font-blue);
  opacity: 1;
}
.news__row {
  font-weight: 500;
  font-size: 13px;
  line-height: 138%;
  color: var(--font-light-2);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-top: 10px;
  min-height: auto;
}
.news__row div, .news__row span {
  -webkit-transition: 0.2s;
  transition: 0.2s;
}
.news__row .news-category-ads {
  margin-left: auto;
  color: var(--font-blue);
}
.news__row .news-category-ads span {
  opacity: 1;
}
.news__row .main__title {
  line-height: 120%;
}

@media (max-width: 980px) {
  .news-sorting {
    margin-right: 15px;
  }
  .news {
    background: none;
    border-radius: 0px;
    padding: 0px;
    border: none;
  }
  .news__item {
    padding-bottom: 13px;
  }
  .news__title {
    font-size: 16px;
    max-height: 42px;
    min-height: 42px;
    line-height: 21px;
    height: 42px;
    font-weight: 400;
  }
  .news__row {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
  .news__row .main__title {
    margin-right: auto;
  }
  .news__row .circle-indicator::before {
    display: none;
  }
}
@media (max-width: 767px) {
  .news__row {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
@media (max-width: 600px) {
  .news__list {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .news__title {
    max-height: auto;
    min-height: auto;
    height: auto;
  }
}