.tf-posts.no-carousel {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    position: relative;
}

.tf-posts.no-carousel.column-1 .item {
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%;
}

.tf-posts.no-carousel.column-2 .item {
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    max-width: 50%;
}

.tf-posts.no-carousel.column-3 .item {
    -ms-flex: 0 0 33.333333%;
    flex: 0 0 33.333333%;
    max-width: 33.333333%;
}

.tf-posts.no-carousel.column-4 .item {
    -ms-flex: 0 0 25%;
    flex: 0 0 25%;
    max-width: 25%;
}

.tf-posts.has-carousel .item {
    padding: 0 !important;
}

/* style-1 */

.tf-posts .blog-post {
    -webkit-transition: all 0.3s ease-out 0s;
    -moz-transition: all 0.3s ease-out 0s;
    -ms-transition: all 0.3s ease-out 0s;
    -o-transition: all 0.3s ease-out 0s;
    transition: all 0.3s ease-out 0s;
}

.tf-posts .blog-post .featured-post {
    margin-bottom: 32px;
    border-radius: 16px;
    overflow: unset;
}

.tf-posts .blog-post .featured-post a {
    width: 100%;
    display: block;
    border-radius: 16px;
    overflow: hidden;
}

.tf-posts .blog-post .featured-post .blog-plus {
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #1C1C1E;
    position: absolute;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    font-size: 30px;
    -webkit-transition: opacity 500ms ease, visibility 500ms ease, -webkit-transform 500ms ease;
    transition: opacity 500ms ease, visibility 500ms ease, -webkit-transform 500ms ease;
    transition: opacity 500ms ease, visibility 500ms ease, transform 500ms ease;
    transition: opacity 500ms ease, visibility 500ms ease, transform 500ms ease, -webkit-transform 500ms ease;
    visibility: hidden;
    opacity: 0;
}

.tf-posts .blog-post:hover .featured-post .blog-plus {
    visibility: visible;
    opacity: 0.6;
    cursor: pointer;
}

.tf-posts .blog-post .meta-text {
    display: flex;
    gap: 10px;
    position: absolute;
    top: 8px;
    left: 8px;
}

.tf-posts .blog-post .meta-text a {
    width: max-content !important;
    background: var(--theme-primary-color);
    padding: 5px 16px 4px 16px;
    font-size: 14px;
    font-weight: 500;
    line-height: 19px;
    letter-spacing: 0;
    display: inline-block !important;
    color: #fff;
    border-radius: 999px;
}

.tf-posts .blog-post .meta-text a:hover {
    color: #161E2D;
    color: #fff;
}

.tf-posts .blog-post .featured-post img {
    height: 264px;
    object-fit: cover;
    width: 100%;
    border-radius: 0;
    -webkit-transition: all 1s cubic-bezier(0.3, 1, 0.35, 1) 0s;
    transition: all 1s cubic-bezier(0.3, 1, 0.35, 1) 0s;
}

.tf-posts .blog-post:hover .featured-post img {
    -webkit-transform: scale3d(1.07, 1.07, 1.07);
    transform: scale3d(1.07, 1.07, 1.07);
}

.tf-posts .blog-post .content {
    -webkit-transition: all 0.3s ease-out 0s;
    -moz-transition: all 0.3s ease-out 0s;
    -ms-transition: all 0.3s ease-out 0s;
    -o-transition: all 0.3s ease-out 0s;
    transition: all 0.3s ease-out 0s;
}

.tf-posts .blog-post .content-post {
    font-weight: 400;
    font-size: 16px;
    color: rgb(85, 85, 85);
    line-height: 1.5;
    margin-bottom: 12px;
}

.tf-posts .blog-post .tf-button-container a {
    font-size: 16px;
    color: var(--theme-primary-color);
    font-weight: 600;
    line-height: 1.2;
    text-transform: capitalize;
}

.tf-posts .blog-post .tf-button-container a span {
    position: relative;
}

.tf-posts .blog-post .tf-button-container a span::after {
    position: absolute;
    content: "";
    width: 0;
    left: 0;
    bottom: -1px;
    background: var(--theme-primary-color);
    height: 2px;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.tf-posts .blog-post .tf-button-container a:hover span::after {
    width: 100%;
}

.tf-posts .blog-post .tf-button-container a i {
    margin-left: 4px;
    display: inline-block;
    font-size: 20px;
    vertical-align: text-bottom;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
    transition-delay: 0.2s;
}

.tf-posts .blog-post .tf-button-container a:hover i {
    transform: translateX(4px);
}

@keyframes toRight {
    49% {
        transform: translate(100%);
    }
    50% {
        opacity: 0;
        transform: translate(-100%);
    }
    51% {
        opacity: 1;
    }
}

.tf-posts .owl-nav button {
    width: 46px;
    height: 46px;
    border: 2px solid  var(--theme-primary-color) !important;
    border-radius: 4px;
    color: var(--theme-primary-color) !important;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
}

.tf-posts .owl-nav button.owl-next {
    right: 0;
}

.tf-posts .owl-nav button.owl-prev {
    left: 0;
}

.tf-posts .owl-nav button.disabled {
    border: 2px solid #eaeaea !important;
    color: #aaaaaa !important;
}

.tf-posts .owl-nav button:hover {
    border-color: var(--theme-primary-color);
    color: var(--theme-primary-color);
}

.tf-posts .blog-post .meta-date {
    color: #2C2E33;
    font-size: 14px;
    font-weight: 500;
    line-height: 19.6px;
    margin-bottom: 13px;
    display: block;
    padding-left: 2px;
}

.tf-posts .blog-post .meta-date:hover {
    color: var(--theme-primary-color);
}

.tf-posts .blog-post .meta-date i {
    font-size: 18px;
    vertical-align: text-top;
    margin-right: 2px;
}

.tf-posts .blog-post .title {
    font-size: 24px;
    font-weight: 500;
    line-height: 30px;
    margin-bottom: 17px;
}

.tf-posts .blog-post .title a {
    color: #1C1C1E;
}

.tf-posts .blog-post .title a:hover {
    color: var(--theme-primary-color);
}

.tf-posts .blog-post .category-post a {
    font-size: 12px;
    font-weight: 500;
    line-height: 16px;
}

.tf-posts .blog-post .meta-features {
    padding: 7px 15px;
    border-radius: 6px;
    background: #FFF;
    display: flex;
    position: absolute;
    left: 10px;
    bottom: 10px;
}

.tf-posts .blog-post .post-meta {
    display: flex;
    align-items: center;
    margin-bottom: 8px;
}

.tf-posts .blog-post .post-meta .inner {
    position: relative;
    margin-right: 17px;
    font-size: 16px;
    font-weight: 400;
    line-height: 26px;
    letter-spacing: 0em;
}

.tf-posts .blog-post .post-meta .inner .author {
    color: #161E2D;
    font-weight: 700;
}

.tf-posts .blog-post .post-meta .inner .author:hover {
    color: var(--theme-primary-color);
}

.tf-posts .blog-post .post-meta .inner:not(:last-child):after {
    content: '';
    width: 1px;
    height: 12px;
    background-color: #E4E4E4;
    position: absolute;
    top: 50%;
    right: -9px;
    transform: translateY(-50%);
}

.tf-posts .blog-post .meta-post {
    display: flex;
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    align-items: center;
    flex-wrap: wrap;
}

.tf-posts .blog-post .meta-features .post-meta.meta-time,
.tf-posts .blog-post .meta-features .category-post a {
    color: #000;
    font-size: 13px;
    font-weight: 600;
    line-height: 150%;
}

.tf-posts .blog-post .meta-features .post-meta.meta-time {
    margin-right: 17px;
}

.tf-posts .blog-post .meta-features .category-post i {
    margin-right: 7px;
}

.tf-posts .blog-post .meta-features .category-post {
    display: flex;
    align-items: center;
}

.tf-posts .blog-post .meta-features .category-post a {
    color: var(--theme-primary-color);
}

.tf-posts .blog-post .meta-post .post-meta:not(:last-child) {
    margin-right: 16px;
}

.tf-posts .blog-post .meta-post .post-meta a,
.tf-posts .blog-post .meta-post .post-meta.meta-time {
    font-size: 16px;
    font-weight: 400;
    line-height: 26px;
    color: #1C1C1E;
}

.tf-posts .blog-post .meta-post .post-meta.meta-author span {
    color: #64666C;
    margin-right: 5px;
}

.tf-posts .blog-post .meta-post .post-meta a:hover {
    color: var(--theme-primary-color);
}

.tf-posts .blog-post .tf-button-container i {
    vertical-align: middle;
    margin-left: 8px;
    display: inline-block;
}

.tf-posts .item {
    display: flex;
    display: -webkit-box;
    padding: 15px 15px 15px 15px;

}

.tf-posts .item .blog-post {
    display: flex;
    display: -ms-flexbox;
    flex-direction: column;
}

/* style 2 */

.tf-posts.style2 .blog-post .meta-text {
    top: unset;
    left: unset;
    bottom: -14px;
    right: 24px;
}

.tf-posts.style2 .blog-post .description {
font-size: 16px;
font-weight: 400;
line-height: 22.4px;
margin-bottom: 16px;
}

.tf-posts.style2 .blog-post .title {
    margin-bottom: 32px;
}

.tf-posts.style2 .blog-post .meta-date {
    margin-bottom: 18px;
}

.tf-posts .owl-dots {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: -6.4%;
    display: flex;
    gap: 13px;
}

.tf-posts .owl-dots button {
    width: 8px;
    height: 8px;
    line-height: 8px;
    border-radius: 50%;
    position: relative;
    display: inline-block;
    overflow: unset;
    background: #E4E4E4;
    margin: 0 5px;
}

.tf-posts .owl-dots button:hover,
.tf-posts .owl-dots button.active {
    opacity: 1;
    background: var(--theme-primary-color);
}

.tf-posts .owl-dots button::after {
    position: absolute;
    transform: translate(-50%, -50%);
    top: 50%;
    left: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
    content: "";
    width: 14px;
    height: 14px;
    overflow: visible;
    border: 1px solid var(--theme-primary-color);
    opacity: 0;
    padding: 0;
}

.tf-posts .owl-dots button.active::after {
    opacity: 1;
}

@media (max-width: 991px) {
    .tf-posts.no-carousel.tablet-column-1 .item {
        -ms-flex: 0 0 100%;
        flex: 0 0 100%;
        max-width: 100%;
    }

    .tf-posts.no-carousel.tablet-column-2 .item {
        -ms-flex: 0 0 50%;
        flex: 0 0 50%;
        max-width: 50%;
    }

    .tf-posts.no-carousel.tablet-column-3 .item {
        -ms-flex: 0 0 33.333333%;
        flex: 0 0 33.333333%;
        max-width: 33.333333%;
    }

}

@media (max-width: 767px) {
    .tf-posts.no-carousel.mobile-column-1 .item {
        -ms-flex: 0 0 100%;
        flex: 0 0 100%;
        max-width: 100%;
    }

    .tf-posts.no-carousel.mobile-column-2 .item {
        -ms-flex: 0 0 50%;
        flex: 0 0 50%;
        max-width: 50%;
    }

}