.news-list {
  display: flex;
  flex-wrap: wrap;
}

.news-item {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: var(--margin);
  background-color: var(--bg-gray-color);
  border-radius: var(--border-radius);
  border: var(--border-width) var(--border-style) var(--bg-gray-color);
}

.preview_picture_wrapper {
  flex-basis: 33%;
  line-height: 0;
  display: flex;
  align-items: flex-start;
}

.news_text_wrapper {
  flex-basis: 67%;
  padding: var(--padding);
}

.preview_picture {
  border-radius: var(--border-radius);
}

.news_title,
.news-meta,
.preview_text {
  flex-basis: 100%;
}

.news-list .news_title h3, .news-list .news_title {
  border: none;
  margin: 0 !important;
  font-size: 1.33rem !important;
  color: var(--main-blue-color);
}
.news-list .news_title h3:hover {
  color: var(--link-hover-color);
}



.news_title:hover,
.news_title:focus {
  text-decoration: none;
}

.news_meta {
  font-weight: 600;
  border-bottom: solid 1px;
  margin-bottom: var(--margin-small);
  padding-bottom: var(--padding-small);
}

.news_meta a:hover,
.news_meta a:focus {
  text-decoration: none;
}

.news_meta .meta_news_category {
  color: var(--main-text-color);
}
.news_meta .meta_news_category:hover {
  color: var(--link-hover-color);
}

.live_badge {
  width: 100px;
  position: absolute;
  margin: 0.5rem;
}

.news_navigation{
  display: flex;
  flex-basis: 100%;
  justify-content: center;
}

@media only screen and (max-width: 767px) {
  .preview_picture_wrapper,
  .news_text_wrapper {
    flex-basis: 100%;
  }

}
