.post-list-element .list-post {
    width: 100%;
    border-radius: 10px;
    box-shadow: var(--main_soft_shadow);
    transition-duration: 0.3s;
    background: #fff;
    margin-top: 50px;
}

.post-list-element .post-list .list-post.row {
    margin-left: 0;
    margin-right: 0;
}

.post-list-element .list-post:hover {
    box-shadow: 0 10px 30px rgba(40, 46, 54, 0.15);
}

.post-list-element .list-post a img {
    width: 100%;
    border-radius: 10px;
    margin: -30px 10px 10px 0;
    box-shadow: var(--main_soft_shadow);
}

.post-list-element .list-post h3 {
    font-size: 1.1em;
    padding: 30px;
}

.post-list-element .cat-name {
    width: 89%;
    line-height: 40px;
    display: inline-block;
    border-right: 4px solid;
    padding-right: 1em;
    border-color: #66bb6a;
    color: #66bb6a;
}

.post-list-element .cat-more-link {
    color: #fff;
    text-align: center;
    width: 9%;
    float: left;
    padding: 5px;
    border-radius: 5px;
    background-color: #66bb6a;
    box-shadow: 0 5px 20px #66bb6a80;
}

@media screen and (max-width: 1001px) {
    .post-list-element .cat-name {
        width: 70%;
    }

    .post-list-element .cat-more-link {
        width: 25%;
    }
}

@media (max-width: 767.98px) {
    .post-list-element .list-post a img {
        margin: -30px 0 0;
    }
}

@media screen and (max-width: 600px) {
    .post-list-element .cat-name {
        width: 100%;
    }

    .post-list-element .cat-more-link {
        width: 100%;
        margin-top: 15px;
    }

    .post-list-element .list-post h3 {
        font-size: .9em;
        padding: 13px;
    }
}