.news-post {
   width: 100%;
   height: 217px;
   padding: 14px;
   border-radius: 16px;
   background-color: #FFFFFF;
   display: flex;
   flex-direction: column;
   align-items: start;
   justify-content: space-between;
   box-sizing: border-box;
}

.news-post_left {
   width: 100%;
   height: 196px;
   padding: 14px;
   border-radius: 16px;
   background-color: #FFFFFF;
   display: flex;
   flex-direction: column;
   align-items: start;
   justify-content: space-between;
   box-sizing: border-box;
}

.news-post__title {
   width: 100%;
   /* height: 40px; */
   font-size: 18px;
   font-weight: 600;
   line-height: 20px;
   letter-spacing: 0;

   display: -webkit-box;
   -webkit-box-orient: vertical;
   -webkit-line-clamp: 2;
   overflow: hidden;
   text-overflow: ellipsis;
   max-height: 3em;
   word-wrap: break-word;
   white-space: normal;
   margin-bottom: 6px;
   color: #131313;

   flex-shrink: 0;
}

.news-post__title_2 {
   width: 100%;
   /* height: 40px; */
   font-size: 18px;
   font-weight: 600;
   line-height: 20px;
   letter-spacing: 0;

   display: -webkit-box;
   -webkit-box-orient: vertical;
   -webkit-line-clamp: 2;
   overflow: hidden;
   text-overflow: ellipsis;
   max-height: 3em;
   word-wrap: break-word;
   white-space: normal;
   margin-bottom: 6px;
   color: #131313;

   flex-shrink: 0;
}

.news-post__text {
   width: 100%;
   font-size: 14px;
   font-weight: 400;
   letter-spacing: 0;
   flex-grow: 1;
   display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    overflow: hidden;
    text-overflow: ellipsis;
    line-height: 130%;
    letter-spacing: 0%;
    margin-bottom: 20px;
    color: #454F5B;
    word-wrap: break-word;
    white-space: normal;
}

.news-post__text_2 {
   width: 100%;
   font-size: 14px;
   font-weight: 400;
   letter-spacing: 0;
   flex-grow: 1;
   display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
    text-overflow: ellipsis;
    line-height: 115%;
    letter-spacing: 0%;
    margin-bottom: 5px;
    color: #454F5B;
    word-wrap: break-word;
    white-space: normal;
}

.news-post__footer {
   width: 100%;
   display: flex;
   align-items: center;
   justify-content: space-between;
}

.news-post__date {
   color: #C4CDD5;
   font-size: 16px;
   font-weight: 400;
   line-height: 1;
   margin: 0;
}

.news-post__info {
   width: 100%;
   
   display: flex;
   align-items: center;
   justify-content: space-between;
   margin-bottom: 12px;
}

.news-post__info-items {
   width: 100%;
   
   display: flex;
   align-items: center;
   justify-content: right;
}

.news-post__info-list {
   list-style-type: none;
   margin: 0;
   padding: 0;
   display: flex;
   align-items: center;
   flex-wrap: nowrap;
   & li:last-child {
      margin-right: 0;
   }
}


.news-post__info-icon {
   margin: 0 3px 0 10px;
}

.news-post__info-count {
   font-size: 12px;
   font-weight: 500;
   letter-spacing: 0%;
   line-height: 1px;
   color: #919EAB;
}

.news-post__info-list-item {
   width: max-content;
   margin-right: 4px;
   padding: 4px 7px;
   background-color: #F3F3F7;
   border-radius: 6px;

   font-size: 12px;
   font-weight: 500;
   line-height: 14.4px;
   letter-spacing: 0%;
   color: #637381;
}