.news-card {
  position: relative;
  z-index: 1;
  height: 100%;
}
.news-card__date {
  margin: 0 24px 12px;
  font-size: 12px;
  line-height: 14px;
  color: var(--color-grey-1);
  display: block;
}
@media screen and (min-width: 1440px) {
  .news-card__date {
    margin: 0 24px 16px;
    font-size: 16px;
    line-height: 20px;
  }
}
.news-card__card {
  background-color: var(--color-grey-2);
  border-radius: 16px;
  height: calc(100% - 26px);
  position: relative;
}
@media screen and (min-width: 1440px) {
  .news-card__card {
    height: calc(100% - 38px);
  }
}
.news-card__image-container {
  height: 63vw;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .news-card__image-container {
    height: 26vw;
  }
}
@media screen and (min-width: 1024px) {
  .news-card__image-container {
    height: 23vw;
  }
}
@media screen and (min-width: 1440px) {
  .news-card__image-container {
    height: 240px;
  }
}
.news-card__image {
  border-radius: 16px;
  height: 100%;
  width: 100%;
  object-fit: cover;
}
.news-card__info {
  padding: 24px;
}
@media screen and (min-width: 768px) {
  .news-card__info_text {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
  }
}
.news-card__title {
  display: block;
  margin-bottom: 16px;
  font-size: 24px;
  line-height: 28px;
  font-weight: 400;
}
.news-card__title_big {
  margin-bottom: 64px;
}
.news-card__cropped-corner {
  position: absolute;
  bottom: -1px;
  right: 0;
  z-index: 1;
}
.news-card__file {
  display: flex;
  align-items: center;
}
.news-card__file-size {
  font-size: var(--font-size-m);
  line-height: var(--line-height-m);
  margin-left: 16px;
}
