        .video-guide,
.list-video-guide .bp_news_more_item{
    /*display: none;*/
}



.list-video-guide > .row > .col {
    margin-bottom: 26px;
}

.list-video-guide .tp-post-item {
    height: 100%;
    position: relative;
    overflow: hidden;
    border-radius: 14px;
    background: #fff;
    box-shadow: 0 10px 30px rgba(0, 0, 0, .06), 0 2px 10px rgba(0, 0, 0, .04);
    transition: all .4s;
}
 
.list-video-guide .tp-post-item:hover {
    transform: translateY(-10px);
    transition: all .4s;
}

.list-video-guide .tp-post__thumbnail-wrapper {
    padding: 0;
    margin: 0;
}

.list-video-guide .tp-post__thumbnail-wrapper img {
    height: 300px;
    width: 100%;
    object-fit: cover;
}

.list-video-guide .tp-post__content {
    padding: 25px;
}

.list-video-guide .tp-title {
    margin: 15px 0;
}

.list-video-guide .tp-title a{
    transition: all .4s;
}

.list-video-guide .tp-title:hover a {
    color: var(--tp-primary) !important;
    transition: all .4s;
}

.list-video-guide .tp-btn {
    padding: 10px 20px;
    position: relative;
    background-color: var(--tp-primary);
    font-size: 16px;
    color: #fff;
    font-weight: 600;
    border-radius: 8px;
    gap: 5px;
    overflow: hidden;
    box-shadow: 0 10px 20px rgba(11,205,195,.25);
    z-index: 1;
}

.list-video-guide .tp-btn::before {
    content: "";
    position: absolute;
    width: 0px;
    background-color: var(--tp-secondary);
    inset: 0;
    transition: 0.4s;
    z-index: -1;
}

.list-video-guide .tp-btn:hover::before {
    width: 100%;
    transition: all .4s;
}

.list-video-guide .bp-result,
.list-video-guide .bp-result-number{
    display: none;
}


@media (max-width: 767.98px) {
    .list-video-guide .tp-post__thumbnail-wrapper img {
        height: auto;
    }
}

