.news-card {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  transition: box-shadow .3s ease;
  border-radius: 8px; }
  @media (min-width: 1100px) {
    .news-card {
      cursor: pointer; }
      .news-card:hover {
        z-index: 10;
        box-shadow: 6px 8px 10px 0px rgba(48, 64, 113, 0.15); } }
  .news-card__header {
    position: relative;
    overflow: hidden;
    padding-bottom: 65%;
    border-top-left-radius: 8px;
    border-top-right-radius: 8px; }
    .news-card__header .lazy-img-wrap {
      position: absolute;
      top: 0;
      bottom: 0;
      right: 0;
      left: 0;
      display: flex;
      align-items: center;
      justify-content: center; }
      .news-card__header .lazy-img-wrap img {
        width: 100%;
        height: 100%;
        object-fit: cover; }
      .news-card__header .lazy-img-wrap .swiper-lazy:not(.loaded) {
        min-width: 100%;
        min-height: 100%; }
  .news-card__content {
    position: relative;
    z-index: 10;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    margin-top: -12px;
    padding: 16px;
    gap: 16px;
    border-radius: 8px;
    background-color: #F0F2F6; }
    @media (max-width: 1099px) {
      .news-card__content {
        padding: 12px;
        gap: 12px; } }
  .news-card__mid {
    height: 18px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px; }
    @media (max-width: 1099px) {
      .news-card__mid {
        height: 14px; } }
  .news-card__footer {
    display: flex;
    flex-direction: column;
    gap: 4px; }
  .news-card__title {
    display: -webkit-box;
    overflow: hidden;
    -webkit-box-orient: vertical;
    transition: color ease .3s;
    font-weight: 600;
    -webkit-line-clamp: 2; }
  .news-card__descr {
    display: -webkit-box;
    overflow: hidden;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3; }
    @media (max-width: 767px) {
      .news-card__descr {
        display: none; } }
  .news-card__date {
    color: #9A9CA1; }
