body {
    background-color: rgb(243, 243, 243);
}

.container-news {
    width: 70%;
    margin: 0 auto;
    background-color: #fff;
}


.article a {
    display: flex;
    margin-bottom: 20px;
    border-bottom: 1px solid #eee;
  }
  .article img {
    width: 300px;
    height: 200px;
    object-fit: cover;
    margin-right: 10px;
  }
  .article-content {
    flex: 1;
    color: #999;
    line-height: 25px;
  }
  .article-title {
    font-weight: bold;
    font-size: 18px;
    margin-bottom: 5px;
    color: #000;
  }
  .article-body {
    font-size: 16px;
  }

  
  @media (max-width: 1000px) {
    .container-news {
      width: 100%;
    }
    .article a {

      flex-direction: column;
    }
    .article-content {
      padding: 0 10px;
    }
    .article img {
      width: 100%;
      height: auto;
      margin-right: 0;
      margin-bottom: 10px;
    }
  }

  @media (max-width: 600px) {
    .container-news  {
      width: 100%;
    }
    .article a {

      flex-direction: column;
    }
    .article-content {
      padding: 0 10px;
    }
    .article img {
      width: 100%;
      height: auto;
      margin-right: 0;
      margin-bottom: 10px;
    }
  }


.banner {
    height: 400px !important;
    margin-bottom: 20px;
 }