.NewsItem {
  display: flex;
  flex-direction: column;
  font-size: 1rem;
  color: var(--colorTextBody);
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.15);
  transition: all .3s;
}

.NewsItem:hover {
  box-shadow: 0px 20px 35px #334350;
}

.NewsItem-more {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.NewsItem-more a {
  width: 40px;
  height: 40px;
}

.NewsItem-inner {
  padding: var(--spaceLg);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-bottom: var(--spaceRg);
  background-color: #f5f5f5;
}

.NewsItem-picture {
  position: relative;
  aspect-ratio: 1;
  flex: 0 0 10em;
}

.NewsItem-picture img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.NewsItem-hover {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  background: hsla(var(--colorBrand-h), calc(var(--colorBrand-s) * 1%), calc(var(--colorBrand-l) * 1%), 0.7);
  opacity: 0;
  transition: var(--animationBase);
}

.NewsItem-hover:hover {
  opacity: 1;
}

.NewsItem-hoverBtn {
  border: 1px solid hsl(0, 0%, calc((var(--colorBrand-l) - 60) * -100%));
  color: hsl(0, 0%, calc((var(--colorBrand-l) - 60) * -100%));
  display: flex;
  align-items: center;
  font-size: var(--textSm);
  padding: var(--spaceSm);
  transition: var(--animationBase);
}

.NewsItem-hoverBtn:hover {
  background: hsl(0, 0%, calc((var(--colorBrand-l) - 60) * -100%));
  color: var(--colorBrand);
}

.NewsItem-date {
  display: block;
  font-size: var(--textXs);
  color: #9FA0A3;
  margin-bottom: var(--spaceSm);
}

.NewsItem-title {
  font-size: var(--textRg);
  font-size: 1.4em;
}

.NewsItem-title a {
  color: inherit;
}

.NewsItem-perex {
  margin-bottom: var(--spaceMd);
  font-size: var(--textSm);
  color: var(--colorText);
  line-height: 2;
}

.NewsItem-perex:empty {
  display: none;
}

.NewsItem .ButtonBase {
  background-color: transparent;
  padding: 0;
  color: var(--colorBrand);
  text-decoration: underline;
  font-weight: 300;
}

.NewsItem .ButtonBase--ghost {
  display: none;
  border: none;
  padding: 0;
  font-size: var(--spaceMd);
}

@media (max-width: 1000px) {
  .NewsItem {
    margin-bottom: var(--spaceXs);
  }
}

@media (max-width: 600px) {
  .NewsItem {
    margin-bottom: var(--spaceXs);
  }
  .NewsItem:nth-child(2), .NewsItem:nth-child(3) {
    display: none;
  }
  .NewsItem-inner {
    padding: var(--spaceMd);
  }
  .NewsItem-perex {
    line-height: 1.4;
  }
  .NewsItem .ButtonBase--ghost {
    display: block;
  }
}

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