.journalist-list {
   @media (max-width: 767.98px) {
      overflow-x: auto;
      overflow-y: hidden;

      .journalist-item {
         min-width: 10rem;
      }
   }
}

.news {
   .news-item {
      .news-category {
         margin-bottom: .25rem;
      }

      .news-title {
         margin-bottom: 1rem;
         font-size: 1.5em;

         @media (min-width: 768px) {
            /* font-size: 2rem; */
         }

         &.hot-news {
            font-size: 2rem;

            @media (min-width: 768px) {
               font-size: 2.25rem;
            }
         }
      }

      .news-img {
         margin-bottom: 1rem;
      }

      .news-text {
         margin-bottom: 1.5rem;
      }
   }

   &>*:nth-last-of-type(1),
   &>*:nth-last-of-type(2) {
      display: none !important;
   }
}

.news-category .news>*:last-of-type {
   display: block !important;
}

.more .more-item {
   display: -webkit-box;
   -webkit-line-clamp: 3;
   -webkit-box-orient: vertical;
   overflow: hidden;
   text-overflow: ellipsis;
   line-height: 1.5em;
   max-height: 6em;
}
