	.latest-blog > .row > .col {
    margin-bottom: 24px;
}
.latest-blog .tp-post-item {
    height: 100%;
    padding: 10px;
    border-radius: 20px;
    background-color: #f5f5f5;
}

.latest-blog .tp-col__image {
    height: fit-content;
}

.latest-blog .tp-col__content {
    height: inherit;
}

.latest-blog .tp-post__thumbnail {
    border-radius: 10px;
    overflow: hidden;
}

.latest-blog .tp-post__thumbnail img {
    transition: all .4s;
}

.latest-blog .tp-post-item:hover .tp-post__thumbnail img {
    transform: scale(1.1);
    transition: all .4s;
}

.latest-blog .tp-post__thumbnail {
    position: relative;
}
.latest-blog .tp-post__thumbnail::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(-45deg);
    transform-origin: center center;
    width: 200%;
    height: 0px;
    background-color: rgba(255, 255, 255, 0.3);
    pointer-events: none;
    z-index: 2;
    transition: 0.6s;
}

.latest-blog .tp-post__thumbnail:hover::before {
    height: 100%;
    transform: translate(-50%, -50%) rotate(-45deg) scale(4);
    opacity: 0;
    transition: 0.6s;
}



.latest-blog .tp-post__content {
    padding: 20px;
}

.latest-blog .bottom-post{
    padding-top: 20px;
    margin-top: 20px;
    border-top: 1px solid #18191A1A;
    gap: 15px;
}

.latest-blog .tp-post__meta {
    padding-bottom: 0;
}

.latest-blog .bp_icon_date {
    color: var(--tp-primary);
}

.latest-blog .tp-btn_c svg {
    background-color: var(--tp-secondary);
    border-radius: 50%;
    padding: 5px;
    color: #fff;
    transition: all .4s;
}

.latest-blog .tp-btn {
    gap: 8px;
}

.latest-blog .tp-btn:hover svg {
    transform: rotate(45deg);
    transition: all .4s;
}

.heading-meta {
    margin-bottom: 20px;
}

.bp_tag {
    display: flex;
    flex-wrap: wrap;
    gap: 4px;
}

.bp_tag_lb {
    font-size: 20px;
    color: var(--tp-title-color);
    margin-right: 15px;
}

.bp_tag_item_lb {
    display: inline-block;
}

.bp_tag_item {
    display: inline-block;
    border-radius: 4px;
    font-size: 14px;
    line-height: 16px;
    color: var(--tp-text-color);
    border: 1px solid var(--tp-primary);
    transition: all .4s;
}

.bp_tag_item:hover {
    background-color: var(--tp-primary);
    color: #fff;
    border-color: var(--tp-primary);
    transition: all .4s;
}

.bp-date-create {
    margin-top: 15px;
}

.latest-blog .tp-btn_c:has(a) {
    margin-top: 25px;
}
.latest-blog .tp-btn_c:has(a) a {
    font-size: 18px;
    font-weight: 600;
    color: var(--tp-title-color) !important;
    text-decoration: underline;
    text-underline-offset: 3px;
    transition: all .4s;
}

.latest-blog .tp-btn_c a:hover {
    color: var(--tp-primary) !important;
    transition: all .4s;
}


@media (max-width: 767.98px) {
    .latest-blog .tp-post__thumbnail::before {
        display: none;
    }
}

iframe {
    display: block;
    border: none;
    height: 300px;
    width: 100%;
    z-index: 10;
}
