.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%;
}

@-webkit-keyframes circle {
    0% {
        opacity: 1;
    }

    40% {
        opacity: 1;
    }

    100% {
        width: 200%;
        height: 200%;
        opacity: 0;
    }
}

@keyframes circle {
    0% {
        opacity: 1;
    }

    40% {
        opacity: 1;
    }

    100% {
        width: 200%;
        height: 200%;
        opacity: 0;
    }
}

/* style-1 */
.tf-posts .entry.blog-post {
    background-color: #F8F8F8;
    border-radius: 15px;
    overflow: hidden;
}
.tf-posts .entry.blog-post .content {
    padding: 24px;
}

.tf-posts .entry.blog-post .content .meta-post {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}

.tf-posts .entry.blog-post .content .meta-post .item-meta a{
    font-family: 'Roboto';
    font-size: 12px;
    font-weight: 400;
    line-height: 16px;
    color: #5C6368;
    position: relative;
    display: inline-block;
}
.tf-posts .entry.blog-post .content .meta-post .item-meta {
    position: relative;
}
.tf-posts .entry.blog-post .content .meta-post .item-meta a:hover{
    color: var(--theme-primary-color);
}
.tf-posts .entry.blog-post .content .meta-post .item-meta:not(:first-child){
    padding-left: 10px;
}
.tf-posts .entry.blog-post .content .meta-post .item-meta:not(:first-child)::before{
    width: 4px;
    height: 4px;
    border-radius: 100px;
    position: absolute;
    content: '';
    background-color: #C1C1C1;
    left: 0px;
    top: 50%;
    transform: translateY(-50%);

}
.tf-posts .entry.blog-post .content .meta-post .item-meta.post-categories a{
    font-family: 'Roboto';
    font-size: 14px;
    font-weight: 700;
    line-height: 24px;
    color: #161E2D;
    text-transform: uppercase;
}

.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 {
    border-radius: 0px;
    overflow: hidden;
    margin-bottom: 0;
    position: relative;
}


.tf-posts .blog-post .featured-post .day-post {
    position: absolute;
    top: 0;
    left: 0;
    background: var(--theme-secondary-color);
    font-family: 'Inter';
    font-size: 12px;
    font-weight: 500;
    line-height: 24px;
    color: #374151;
    padding: 4px 19px;
    -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 .featured-post .day-post a {
    color: inherit;
}

.tf-posts .blog-post .featured-post .day-post:hover {
    background: var(--theme-primary-color);
}

@keyframes toRightFromLeft {
    49% {
        transform: translate(100%);
    }

    50% {
        opacity: 0;
        transform: translate(-100%);
    }

    51% {
        opacity: 1;
    }
}

.tf-posts .blog-post .featured-post a {
    width: 100%;
    display: block;
}

.tf-posts .blog-post .featured-post .blog-plus {
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #000000;
    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.4;
    cursor: pointer;
}

.tf-posts .blog-post .featured-post img {
    object-fit: cover;
    /* min-height: 270px; */
    width: 100%;
    border-radius: 0;
    -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:hover .featured-post img {
    transform: scale(1.05);
}

.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 .themesflat-button-container .tf-btn {
    font-size: 14px;
    font-weight: 500;
    line-height: 22px;
    color: #5C6368;
    font-family: 'Roboto';
    margin-top: 8px;
    display: inline-block;
}
.tf-posts .themesflat-button-container .tf-btn:hover {
    color: var(--theme-primary-color);
}
.tf-posts .themesflat-button-container .tf-btn i {
    font-size: 10px;
    margin-left: 10px;
}

.tf-posts .blog-post .title {
    color: var(--theme-primary-color);
    font-family: 'Roboto';
    font-size: 20px;
    font-weight: 600;
    line-height: 30px;
    margin-bottom: 8px;
    margin-top: 8px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    min-height: 60px;
}

.tf-posts .blog-post .description {
    color: #5C6368;
    font-family: 'Roboto';
    font-size: 16px;
    font-weight: 400;
    line-height: 26px;
}

.tf-posts .blog-post .title a {
    display: inline !important;
    width: 100%;
    background-repeat: no-repeat;
    background-position-y: 0px;
    background-image: linear-gradient(transparent calc(100% - 2px), currentColor 1px);
    transition: 0.6s cubic-bezier(0.215, 0.61, 0.355, 1);
    background-size: 0 100%;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}

.tf-posts .blog-post .title a:hover {
    color: var(--theme-primary-color);
    background-size: 100% 100%;
}


@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%;
    }

    .tf-posts.layout-mansory.no-carousel.tablet-column-3 {
        column-count: 3 !important;
        width: unset;
    }

    .tf-posts.layout-mansory.no-carousel.tablet-column-2 {
        column-count: 2 !important;
        width: unset;

    }

    .tf-posts.layout-mansory.no-carousel.tablet-column-1 {
        column-count: 1 !important;
        width: unset;

    }

}

@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.layout-mansory.no-carousel.mobile-column-2 {
        column-count: 2 !important;
    }

    .tf-posts.layout-mansory.no-carousel.mobile-column-1 {
        column-count: 1 !important;
    }

    .tf-posts.no-carousel.mobile-column-2 .item {
        -ms-flex: 0 0 50%;
        flex: 0 0 50%;
        max-width: 50%;
    }

    .tf-posts.style3 .blog-post .content {
        padding: 30px 20px;
    }
}

@media (max-width: 600px) {
    .tf-posts.style4 .blog-post {
        flex-direction: column;
    }

    .tf-posts.style4 .blog-post .content,
    .tf-posts.style4 .blog-post .featured-post {
        width: 100%;
        ;
    }

    .tf-posts.style4 .blog-post .content {
        margin-left: 0;
    }

    .post-wraper {
        overflow: hidden;
    }

    .post-wraper .tf-posts.yes-carousel {
        overflow: visible;
        margin: 0 7px;
    }

    .post-wraper .tf-posts.yes-carousel .item {
        padding: 15px 8px !important;
    }
}

@media (max-width: 500px) {
    .post-wraper .tf-posts.yes-carousel .item {
        padding: 15px 15px !important;
    }
    .post-wraper .tf-posts.yes-carousel {
        margin: 0px;
    }
}
