.wpt-category-filter .ui-selectmenu-text {
    display: none !important;
}
.wpt-tracking-records {
    max-width: 100%;
    margin: 60px auto 70px;
    padding: 0 15px;
}

.wpt-category-filter {
    margin-bottom: 40px;
}

.wpt-category-filter select {
    font-size: 16px;
    width: 100%;
    max-width: 300px;
    display: block !important;
    border: solid 1px #00195b;
    color: #000;
    font-weight: 500;
    padding: 10px 7px;
}
.wpt-posts-list {
    display: flex;
    flex-wrap: wrap;
    gap: 30px 15px;
}

.wpt-post-item {
    width: calc(33.33% - 10px);
    /* margin-bottom: 20px; */
    padding: 0;
    /* border: 1px solid #eee; */
    /* border-radius: 5px; */
}
.wpt-post-item .info-post {
    max-width: 93%;
    margin: 0 auto;
    background: #FFF;
    margin-top: -31px;
    z-index: 1;
    position: relative;
    padding: 10px 12px;
    box-shadow: 3px 3px 20px 0 rgb(0 26 49 / 11%);
    border-radius: 5px;
}
.wpt-post-excerpt p {
    margin-bottom: 5px;
        display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    position: relative;
    overflow: hidden;
    font-size: 16px;
    line-height: 28px;
}
.wpt-post-title {
    margin: 0 0 5px;
    font-size: 24px;
}
.wpt-post-title a{
    color: #00195b!important;
}
.wpt-post-title a:hover{
    color: #222!important;
}

.wpt-post-excerpt {
    color: #666;
}

form.wpt-category-filter > label {
    font-weight: 600;
    color: #00195b;
}
.wpt-post-thumbnail img {
    min-height: 250px;
    max-height: 250px;
    width: 100%;
    object-fit: cover;
}


/*for Mobile*/
@media (max-width: 767px) {
    .wpt-post-item {
        width: 100%;
    }
}
/* end for Mobile */

/*for tabletV*/
@media (min-width: 768px) and (max-width: 991px) {
    .wpt-post-title{
        font-size: 20px;
    }
    .wpt-post-excerpt p{
        font-size: 15px;
                line-height: 23px;
    }
}