        .list-news .tp-post-item {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
    margin-bottom: 23px;
    transition: all .3s;
}

.list-news .tp-post-item:hover {
    transform: translateY(-10px);
    transition: all .3s;
}

.list-news .tp-post__thumbnail-wrapper {
    padding: 0;
    margin: 0;
}

.list-news .tp-post__content {
    padding: 15px;
}

.list-news .tp-post__content a:hover {
    color: #26539c !important;
    transition: all .3s;
}

.list-news .tp-post__thumbnail {
    overflow: hidden;
}

.list-news .tp-post__thumbnail img {
    transition: all .3s;
}

.list-news .tp-post__thumbnail img:hover {
    transform: scale(1.1);
    transition: all .3s;
}

.category-title .bp_name_category_option {
    position: relative;
    font-size: 35px;
    color: var(--primary-color);
    font-weight: 600;
    text-align: center;
    margin-bottom: 30px;
    padding-bottom: 10px;
}

.category-title .bp_name_category_option::before {
    content: "";
    position: absolute;
    left: 50%;
    transform: translateX(-50%) scale(0);
    bottom: 0;
    width: 50px;
    height: 3px;
    background-color: var(--primary-color);
    border-radius: 10px;
    transition: all .3s;
}

.category-title .bp_name_category_option:hover::before {
    transform: translateX(-50%) scale(1);
    transition: all .3s;
}

.category-title .bp_category_option {
    display: block;
}


