/* .pri_news_list_container {
    overflow-x: scroll;
    overflow-y: hidden;
    white-space: nowrap;
} */

.pri_news_list_container {
    display: flex;
    flex-wrap: nowrap;
    overflow-x: auto;
}

.pri_news_list_container .single_card {
    width: 350px; 
    margin-bottom: 20px;
    margin-left: 10px;
    margin-right: 10px; 
    box-shadow: 0 0 10px 0 rgb(0 0 0 / 15%);
    background: #fff;
    border-radius: 3px;
    flex: 0 0 auto;
}
.pri_news_list_container .single_card:hover {
    box-shadow: 0 0 20px 0 rgb(0 0 0 / 15%);
}

.pri_news_list_container .single_card img {
    width: 100%; 
    height: 250px;
    object-fit: cover;
    object-position: center;
}
.pri_news_list_container .single_card iframe {
    width: 100%;
    height: 250px;
}

.pri_news_list_container .single_card .card_title {
    padding: 0.7em;
}

.pri_news_list_container .single_card .card_title a {
    font-size: 25px;
    line-height: 1.2em;
    white-space: normal; 
    text-decoration: none;
}


#plm_load_more {
    width: 250px;
    margin: 0 auto;
    text-align: center;
    background: #8f6c95;
    color: #fff;
    font-weight: 400;
    font-size: 25px;
    line-height: 50px;
    height: 50px;
    border-radius: 10px;
    cursor: pointer;
}
#plm_load_more:hover {
    background: #42a7c6;
}


.single_card .post_info {
    padding: 0.7em;
}

.single_card .post_info > div {
    font-size: 15px;
    font-weight: 400;
    line-height: 1.6em;
    letter-spacing: 0px;
}

.single_card .post_info > div i {
    padding-right: 5px; 
}

.single_card .post_info .post_read_more { margin-top: 10px; }
.single_card .post_info .post_read_more a {
    font-family: "YuanTi", sans-serif;
    font-size: 15px;
    font-weight: 600;
    line-height: 1.2em;
    letter-spacing: 1.5px;
}


.pri_news_list_container::-webkit-scrollbar {
    height: 5px;
}
.pri_news_list_container::-webkit-scrollbar-thumb {
    background: #42a7c6;
}
.pri_news_list_container::-webkit-scrollbar-track {
    background: #f1f1f1; 
}


@media(max-width: 768px) {
    .pri_news_list_container .single_card {
        width: 47%; 
    }

    .pri_news_list_container .single_card img {
        height: 220px;
    }

    .pri_news_list_container .single_card .card_title a {
        font-size: 20px;
    }

    #plm_load_more {
        font-size: 23px;
        line-height: 40px;
        height: 40px;
    }
}


@media(max-width: 600px) {
    .pri_news_list_container .single_card {
        width: 280px; 
    }

    .pri_news_list_container .single_card .card_title a {
        font-size: 18px;
    }

    #plm_load_more {
        font-size: 18px;
        line-height: 40px;
        height: 40px;
    }

}