.news-items .news-item {
  margin-bottom: 45px;
}

.news-items .news-item:last-child {
  margin-bottom: 70px;
}

.news-item {
  display: flex;
  flex-direction: row;
  min-height: 550px;
  align-items: stretch;
}
.news-item .preview-image {
  border-radius: 15px 0 0 15px;
  width: 55%;
  object-fit: cover;
  overflow: hidden;
}
.news-item .content {
  font-size: 15px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border: 1px solid rgb(179, 179, 179);
  border-radius: 0 15px 15px 0;
  border-left: none;
  padding: 15px 42px 22px 35px;
  width: 45%;
  gap: 30px;
}
.news-item .date {
  font-size: 15px;
  font-weight: 300;
  line-height: 130%;
  color: rgb(128, 128, 128);
  margin-bottom: 18px;
}
.news-item .title {
  display: block;
  color: var(--primary-color);
  font-size: 25px;
  font-weight: 600;
  line-height: 130%;
  margin-bottom: 18px;
}
.news-item .preview-text {
  line-height: 150%;
}
.news-item .bottom-block {
  justify-content: space-between;
  display: flex;
  flex-direction: row;
}
.news-item .bottom-block .reactions {
  display: flex;
  flex-direction: row;
  gap: 10px;
}
.news-item .go-to-news-button {
  border: 1px solid rgb(142, 141, 145);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  user-select: none;
  font-weight: 600;
  color: var(--blue-primary-color);
  padding: 3px 12px;
}
@media (min-width: 992px) and (max-width: 1399px) {
  .news-item .content {
    padding: 15px 30px 18px 25px;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .news-item .preview-image {
    width: 45%;
  }
  .news-item .content {
    padding: 15px 30px 18px 25px;
    width: 55%;
  }
}
@media (max-width: 767px) {
  .news-item {
    flex-direction: column;
  }
  .news-item .preview-image {
    border-radius: 15px 15px 0 0;
    width: 100%;
  }
  .news-item .content {
    border-radius: 0 0 15px 15px;
    border-left: 1px solid rgb(179, 179, 179);
    border-top: none;
    padding: 20px;
    width: 100%;
  }
}
@media (max-width: 575px) {
  .news-item .go-to-news-button, .news-item .likes-count, .news-item .comments-count {
    border: 1px solid rgb(142, 141, 145);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    user-select: none;
  }
  .news-item .go-to-news-button {
    font-weight: 600;
    font-size: 12px;
    color: var(--blue-primary-color);
    padding: 3px 12px;
  }
  .news-item .likes-count, .news-item .comments-count {
    min-width: 60px;
  }
  .news-item .likes-count img, .news-item .comments-count img {
    width: 20px;
  }
}

/*# sourceMappingURL=style.css.map */
