.NewsItem {
  display: flex;
  flex-direction: column;
}

.NewsItem-picture svg {
  display: none;
}

.NewsItem:nth-of-type(1) .NewsItem-picture svg:nth-of-type(1) {
  display: block;
}

.NewsItem:nth-of-type(2) .NewsItem-picture svg:nth-of-type(2) {
  display: block;
}

.NewsItem:nth-of-type(3) .NewsItem-picture svg:nth-of-type(3) {
  display: block;
}

.NewsItem-picture {
  position: relative;
  margin-bottom: var(--spaceSm);
  transition: var(--animationBase);
}

.NewsItem-picture:hover {
  transform: scale(1.02);
}

.NewsItem-picture picture {
  filter: grayscale(1);
}

.NewsItem-picture img {
  background: var(--Dark, #18161A);
  background-blend-mode: luminosity, normal;
  display: block;
  width: 100%;
  border-radius: 50%;
}

.NewsItem-picture svg {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  mix-blend-mode: difference;
}

.NewsItem-date {
  display: block;
  font-size: clamp(0.875rem, calc(0.798rem + 0.327vw), 1.125rem);
  margin-bottom: var(--spaceSm);
}

.NewsItem-title {
  font-size: clamp(1rem, calc(0.847rem + 0.653vw), 1.5rem);
  font-weight: 600;
  text-transform: none;
}

.NewsItem-title a {
  color: inherit;
}

.NewsItem-more {
  font-size: clamp(1.125rem, calc(1.087rem + 0.163vw), 1.25rem);
  margin-top: auto;
}

.NewsItem-more a {
  color: var(--colorText);
  text-decoration: underline;
}

.NewsItem-more a:hover {
  text-decoration: none;
}

/*# sourceMappingURL=news-item.min.css.map */
