@media (min-width: 991px) {
    .our-posts.list .box-content .articles article {
        display: flex;
    }

    .article__content {
        flex: 1 0 0;
        padding: 24px 65px 55px 29px;
    }

    .article.thumbnail-left .article__footer {
        position: absolute;
        left: 300px;
        bottom: 0;
        right: 0;
        padding: 0 25px 0px;
    }

    .article.thumbnail-right .article__footer {
        position: absolute;
        left: 0;
        bottom: 0;
        right: 0;
        padding: 0 25px 0px;
    }

    /* .article__photo {
        order: 2;
    } */

    .article.thumbnail-left .article__photo {
        order: 0;
    }

    .article.thumbnail-right .article__photo {
        order: 2;
    }

    .article__photo .thumbnail.wp-post-image {
        width: 395px;
        max-width: 395px;
    }

    .article__title h2 {
        font-size: 1.5rem;
        line-height: 34px;
    }




}

.article__content {
    padding: 20px;
}

.article {
    border: 1px solid #dbdbdb;
    margin: 0 0 20px;
    -webkit-box-shadow: 1px 1px 3px rgba(0, 0, 0, 0.06);
    -moz-box-shadow: 1px 1px 3px rgba(0, 0, 0, 0.06);
    box-shadow: 1px 1px 3px rgba(0, 0, 0, 0.06);
    position: relative;
}



.article__title {
    font-size: 1.25rem;
    font-weight: 700;
    line-height: 24px;
}

.article__title h2 {
    font-size: 32px;
}
.article__title h2 a {
    color: #121212;
}

.article__footer {
    color: #818181;
    font-size: 0.875rem;
    margin-top: 10px;
}

.article__footer span:not(:last-child):after {
    /* content: "\2022";
    padding: 0 0.5rem; */
}


.article__photo .thumbnail.wp-post-image {
    width: 100%;
    height: 100%;
}



.article__excerpt p {
    margin-bottom: 16px;
    font-family: 'Jost';
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 26px;

    max-height: 3.6em;
    line-height: 1.8em;

    text-overflow: ellipsis;
    word-wrap: break-word;
    overflow: hidden;
}

.article__footer .post-meta span a {
    color: #121212;
}

.article__title h2 a:hover {
    color: var(--theme-primary-color);
}

.article__footer .themesflat-btn-blog {
    color: #121212;
}


.our-posts.style3 .articles {
    display: grid;
    grid-gap: 30px;
}

.our-posts.style3 .articles .article {
    margin-bottom: 0;
    border: none;
    box-shadow: none;
}


.our-posts.style3 .article__title h2 {
    font-size: 24px;
    line-height: 36px;
    margin-bottom: 3px;
}

.our-posts.style3 .articles .article  .thumbnail.wp-post-image {
    width: 100%;
    max-width: 100% ;
}

.our-posts.style3 .articles .article .article__photo {
    margin-bottom: 28px;
    overflow: hidden;
    
}

.article__photo img {
    -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;
}

.article__photo:hover img {
    transform: scale(1.1);
    -moz-transform: scale(1.1);
    -webkit-transform: scale(1.1);
    -o-transform: scale(1.1);
    -ms-transform: scale(1.1);
}

.post-meta {
    margin: 0;
    margin-bottom: 6px;
    list-style: none;
}

.post-meta li.post-category a {
    display: inline-flex;
    padding: 6px 12px;
    align-items: center;
    margin-right: 5px;
    margin-bottom: 5px;
    height: 32px;
    border-radius: 4px;
    background-color: #121212;
    color: var(--theme-primary-color);
    font-family: 'Oswald';
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: 20px;
    letter-spacing: 1.12px;
    text-transform: uppercase;
}

.post-meta li.post-category a:hover {
    color: #121212;
    background-color: var(--theme-primary-color);
}

.our-posts.style3 .articles .article .article__content {
    padding: 0;
}

.our-posts.style3 .articles.column-1  {
    grid-template-columns: repeat(1,1fr);
}
.our-posts.style3 .articles.column-2  {
    grid-template-columns: repeat(2,1fr);
}
.our-posts.style3 .articles.column-3  {
    grid-template-columns: repeat(3,1fr);
}
.our-posts.style3 .articles.column-4  {
    grid-template-columns: repeat(4,1fr);
}
@media (max-width: 1024px) {
    .our-posts.style3 .articles.tablet-column-1  {
        grid-template-columns: repeat(1,1fr);
    }
    .our-posts.style3 .articles.tablet-column-2  {
        grid-template-columns: repeat(2,1fr);
    }
    .our-posts.style3 .articles.tablet-column-3  {
        grid-template-columns: repeat(3,1fr);
    }
    .our-posts.style3 .articles.tablet-column-4  {
        grid-template-columns: repeat(4,1fr);
    }
    .our-posts.style3 .articles.tablet-column-5  {
        grid-template-columns: repeat(5,1fr);
    }
    .our-posts.style3 .articles.tablet-column-6  {
        grid-template-columns: repeat(6,1fr);
    }
    .our-posts.style3 .articles.tablet-column-7  {
        grid-template-columns: repeat(7,1fr);
    }
} 

@media (max-width: 767px) {
    .our-posts.style3 .articles.mobile-column-1  {
        grid-template-columns: repeat(1,1fr);
    }
    .our-posts.style3 .articles.mobile-column-2  {
        grid-template-columns: repeat(2,1fr);
    }
    .our-posts.style3 .articles.mobile-column-3  {
        grid-template-columns: repeat(3,1fr);
    }
    .our-posts.style3 .articles.mobile-column-4  {
        grid-template-columns: repeat(4,1fr);
    }
    .our-posts.style3 .articles.mobile-column-5  {
        grid-template-columns: repeat(5,1fr);
    }
}







