.posts-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: start;
    align-items: stretch;
    gap: 3%;
}

.blog-post-item {
    flex: 31%;
    max-width: 31%;
    display: flex;
    flex-direction: column;
    margin-bottom: 35px;
    border-radius: 10px;
    background-color: rgb(255, 255, 255);
    box-shadow: 0px 0px 16px 0px rgb(0 0 0 / 15%);
    transition: box-shadow .3s ease;
}

.blog-post-item:hover {
    box-shadow: 0px 0px 18px 0px rgb(0 0 0 / 15%);
    transition: box-shadow .3s ease;
}

.blog-post-item .post-image {
    overflow: hidden;
    border-radius: 10px 10px 0 0;
    height: 200px;
    background-repeat: no-repeat;
    background-size: cover;
}

.blog-post-content-part {
    margin-top: 30px;
    padding: 0 20px 20px 20px;
    width: 100%;

    display: flex;
    flex-direction: column;
    height: 100%;
}

.blog-post-content-part .more-button,
.blog-post-content-part .short-description,
.blog-post-content-part .wrapper-info-blog-post {
    font-family: Inter;
    font-weight: 500;
    color: #182F43;
}

.list-view-posts .blog-post-content-part .short-description{
    height: auto;
}

.wrapper-info-blog-post {
    display: flex;
    margin-bottom: 40px;
    flex-wrap: wrap;
    gap: 20px;
    align-items: center;
}

.wrapper-info-blog-post .post-date {
    font-size: 16px;
    font-family: "Inter";
    color: #003366;
    font-weight: 600;
    text-transform: uppercase;
}

.post-tags{
    width: 100%;
    display: block;
}

.wrapper-info-blog-post .post-tags .tag {
    background-color: #E8E7E5;
    padding: 10px 15px;
    border-radius: 15px;
    font-size: 12px;
    word-break: break-word;
    display: inline-block;
    margin-bottom: 10px;
}

.wrapper-info-blog-post .post-tags .tag:not(:last-child){
    margin-right: 5px;
}

.title-blog-post{
    font-size: 24px;
    font-family: "Inter";
    color: #3C3835;
    font-weight: 700;
    text-transform: uppercase;
}


.blog-post-content-part .short-description {
    font-size: 20px;
    margin-bottom: 40px;
    padding: 20px 20px;
    margin: 20px -20px 20px -20px;
    border-bottom: 1px solid #ebf2f8;
    height: 251px;
    margin-top: auto;
}

.blog-post-content-part .more-button {
    /*border-top: 1px solid #ebf2f8;*/
    /*color: rgb(24, 47, 67);*/
    font-size: 16px;
    display: inline-block;
    /*margin: 0 -20px;*/
    font-weight: 600;
    color: #003366;
    opacity: 1;
    transition: opacity .3s ease;
}

.blog-post-content-part .more-button:hover {
    opacity: 0.4;
    transition: opacity .3s ease;
}

.navigation_post_blog {
    margin-bottom: 65px;
    display: flex;
    justify-content: space-between;
}

.navigation_post_blog #post-orderby,
#post-tags {
    max-width: 250px;
    cursor: pointer;
}

#post-orderby,
#post-tags {
    border-width: 1px;
    border-color: rgb(208, 213, 221);
    border-style: solid;
    border-radius: 8px;
    font-size: 18px;
    font-family: "Inter";
    color: rgb(121, 129, 149);
}

.comfort-filters {
    display: flex;
    gap: 35px;
}

.icons-view-posts {
    display: flex;
    align-items: center;
    gap: 7px;
}

.icons-view-posts .col-view-posts,
.icons-view-posts .list-view-posts {
    font-size: 16px;
    border-radius: 5px;
    padding: 16px 17px;
    border: 1px solid #d0d5dd;
}

.icons-view-posts .active i,
.icons-view-posts .active {
    color: #FFFFFF;
    background-color: #3C3835;
    border-color: #3C3835;
}

.col-view-posts i,
.list-view-posts i {
    color: #d0d5dd;
    font-size: 16px!important;
}

.pagination_links {
    display: flex;
    justify-content: end;
    gap: 10px;
}

.pagination_links .page-numbers {
    border-radius: 8px;
    background-color: rgb(255, 255, 255);
    box-shadow: 0px 0px 16px 0px rgba(63, 63, 63, 0.17);
    padding: 8px 20px;
    font-size: 24px;
    font-family: "Inter";
    color: rgb(102, 112, 133);
    transition: all .3s ease;
    line-height: 45px;
}

.pagination_links .page-numbers:hover {
    background-color: #3C3835;
    color: #FFFFFF!important;
    transition: all .3s ease;
}

.posts-container.list-view-posts .blog-post-item {
    flex: 100%;
    max-width: 100%;
}

.posts-container.list-view-posts .blog-post-item .more-button {
    display: block;
    width: max-content;
    margin-left: auto;
}

@media (max-width: 968px) {
    body .blog-post-item {
        max-width: 48%;
    }
}

@media (min-width: 560px) {
    .posts-container.list-view-posts .blog-post-item .post-image {
        height: 100%;
        width: 100%;
        max-width: 480px;
        border-radius: 10px 0px 0 10px;
    }
    .posts-container.list-view-posts .blog-post-item {
        flex-direction: row;
        align-items: stretch;
    }
}

@media (max-width: 560px) {
    html body .blog-post-item {
        max-width: 100%;
    }
    body .blog-post-content-part .short-description {
        font-size: 16px;
    }
}

.list-view-posts .blog-post-content-part{
    height: auto;
}