.NewsList--List .NewsListItem {
  display: block;
  padding: 10px 0;
  border-bottom: 3px solid var(--clr-decent);
  color: var(--font-clr-primary);
}

.NewsList--List .NewsListItem:first-of-type {
  margin-top: 15px;
  border-top: 0;
}

.NewsList--Block .NewsListItem {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  margin-top: 0;
  background-color: #f7fbf5;
  transition: box-shadow 0.2s;
}

.NewsList--Block .NewsListItem:hover {
    box-shadow: 5px 5px 20px 1px rgba(0, 0, 0, 0.3);
  }

@media screen and (max-width: 1200px) {

.NewsList--Block .NewsListItem {
    flex-direction: column-reverse;
    max-width: 500px;
    margin-right: auto;
    margin-left: auto;
}
  }

.NewsList--Block .NewsListItem + .NewsListItem {
  margin-top: 20px;
}

.NewsList--Block .NewsListItem .content {
  padding: 20px;
  color: var(--font-clr-primary);
}

@media screen and (min-width: 1200px) {

.NewsList--Block .NewsListItem .content {
    max-width: 400px;
}
  }

.NewsList--Block .NewsListItem .date {
  margin-bottom: 5px;
  font-weight: 700;
  color: var(--clr-primary);
}

.NewsList--Block .NewsListItem .title {
  margin-bottom: 15px;
  font-size: 1.75rem;
  font-weight: 700;
  line-height: 2.125rem;
}

.NewsList--Block .NewsListItem .image img {
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 100%;
}

@media screen and (min-width: 1200px) {
  .NewsList--Block .NewsListItem .image img {
    width: 200px;
  }
}

@media screen and (min-width: 1450px) {
  .NewsList--Block .NewsListItem .image img {
    width: 300px;
  }
}

.NewsList--Block .NewsListItem .link {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 35px;
  height: 35px;
  margin-left: auto;
  padding: 10px;
  border-radius: 50%;
  background-color: var(--clr-primary);
  color: #ffffff;
}
