/* News */
.news-list {
    background: var(--bg-color-light);
    border: 1px solid var(--news-list-border-color);
    border-bottom: 2px solid var(--border-color2);
  }
  .news-list a {
    display: block;
    color: var(--news-list-text-color);
  }
  .news-list a img {
    height: 240px;
  }
  .news-list a .news-list-content {
    display: block;
    padding: 0 20px;
  }
  .news-list a .news-list-content h4 {
    font-family: var(--ff-robotocondensed);
    font-size: 22px;
    color: var(--text-color1);
    margin: 0;
    height: 48px;
    line-height: 24px;
    overflow: hidden;
    margin-bottom: 5px;
  }
  .news-list a .news-list-content span {
    display: block;
    height: 70px;
    overflow: hidden;
    font-family: var(--ff-opensans);
    font-size: 14px;
    color: var(--news-list-text-color);
    line-height: 18px;
    margin-bottom: 10px;
  }
  .news-list a .news-list-content .createdbydate {
    font-family: var(--ff-robotocondensed) !important;
    font-size: 13px !important;
    color: var(--news-list-text-color);
    padding: 10px 0;
  }
  .news-list a:hover {
    text-decoration: none;
  }
  .news-list a:hover h4 {
    color: var(--text-color-dark) !important;
  }
  .news-list a:hover span {
    color: var(--text-color1) !important;
  }
  .news-list .news-list-details {
    background: var(--news-list-details-bg-color);
    height: 50px;
    padding: 0 20px;
    margin: 0;
  }
  .news-list .news-list-details li {
    display: inline-flex;
    font-family: var(--ff-robotocondensed);
    font-size: 13px;
    font-weight: 500;
    margin-right: 13px;
    margin-top: 16px;
  }
  .news-list .news-list-details li i {
    font-size: 16px;
    margin-right: 6px;
    color: var(--text-color2);
  }
  .news-list .news-list-details:hover .readmore {
    color: var(--text-color-dark);;
  }
  /* News */