.news-list {
  display: flex;
  flex-direction: column;
}

.news-item {
  display: flex;
  flex-direction: column;
  margin: 40px 0 40px 0;
}
.news-item img {
  max-width: 100%;
  height: fit-content;
  margin: 0;
  width: 100%;
}
.news-item h3 {
  margin-top: 15px;
  margin-bottom: 5px;
  text-transform: uppercase;
}
.news-item p {
  margin: 0;
}

@media screen and (min-width: 576px) {
  .news-item img {
    max-width: 100%;
    width: 50%;
  }
}
@media screen and (min-width: 768px) {
  .news-item {
    display: flex;
    flex-direction: row;
    margin-bottom: 20px;
  }
  .news-item img {
    max-width: 30%;
    width: 30%;
    height: fit-content;
    margin-right: 40px;
  }
  .news-item h3 {
    margin-top: 0;
    margin-bottom: 10px;
  }
}

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