#news-block {
  padding: 80px 0;
}
#news-block .block-title {
  margin-bottom: 80px;
}
#news-block .news {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-gap: 30px;
}
#news-block .news__link {
  width: calc(50% - 15px);
  margin-left: auto;
  display: flex;
  align-items: center;
  font-weight: 600;
  font-size: 18.604px;
  line-height: 150%;
  color: #406CB4;
  opacity: 0.6;
}
#news-block .news__link svg {
  margin-left: 10px;
}
#news-block .news__link:hover {
  opacity: 1;
}
#news-block .item {
  padding-bottom: 15px;
  border-bottom: 1px solid #EBEBEC;
}
#news-block .item:first-child {
  grid-row: 1/5;
  padding-bottom: 0;
  border-bottom: none;
}
#news-block .item__img {
  margin-bottom: 20px;
}
#news-block .item__img img {
  display: block;
  -o-object-fit: contain;
     object-fit: contain;
}
#news-block .item__data {
  display: inline-block;
  margin-bottom: 15px;
  font-weight: 400;
  font-size: 16px;
  line-height: 150%;
  color: #797A84;
}
#news-block .item__title {
  margin: 0;
  font-weight: 500;
  font-size: 24px;
  line-height: 150%;
  color: #262838;
}

#news-block {
  padding: 30px 0;
}
@media (max-width: 860px) {
  #news-block .item__title {
    font-size: 20px;
  }
}
@media (max-width: 600px) {
  #news-block .block-title {
    margin-bottom: 30px;
  }
  #news-block .news {
    grid-template-columns: 1fr;
  }
  #news-block .news__link {
    margin-top: 20px;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
  }
  #news-block .item:first-child {
    grid-row: auto;
  }
}/*# sourceMappingURL=block.css.map */