.article-elements {
  border-radius: 15px;
  background: linear-gradient(180deg, #1d2228 0%, #1c2125 100%);
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 10px;
}

.article-elements_img {
  width: 100%;
  max-width: max-content;
  min-width: 125px;
}

.article-elements_img img {
  border-radius: 10px;
  background: lightgray 50% / cover no-repeat;
  width: 100%;
  min-width: max-content;
}

.article-elements_content {
  display: flex;
  flex-direction: column;
  gap: 8px;
}


.article-elements_provider {
  font-size: 14px;
  line-height: 100%;
  color: #7D8494;
  display: flex;
  align-items: center;
  gap: 5px;
}

.article-elements_provider img {
  width: 20px;
  height: 20px;
}

@media (max-width: 650px) {
  .article-elements_img {
    max-width: 98px !important;
  }

  .article-elements_img, .article-elements_img img {
    min-width: 98px;
  }
}
