.fen-categories-wrapper .fen-categories-list {
    display: flex;
    align-items: center;
    justify-content: center;
    list-style: none;
    margin: 0;
    flex-wrap: wrap;
}

@media (max-width: 1310px) {
    .fen-categories-wrapper .fen-categories-list {
        margin: 0 15px;
        justify-content: flex-start;
    }
}

.fen-categories-wrapper .fen-categories-list li {
    font-size: 16px;
    font-family: "Lato";
    font-weight: 400;
    font-style: normal;
    text-transform: none;
    letter-spacing: 0px;
    color: #242424;
    transition: color .3s ease;
    display: block;
    height: 42px;
    line-height: 40px;
    padding: 0 12px;
    cursor: pointer;
    border: 1px solid transparent;
    border-radius: 42px;
    white-space: nowrap;
}

.fen-categories-wrapper .fen-categories-list li.active {
    border-color: #eb861d;
}

.fen-categories-wrapper .fen-categories-list li:hover {
    color: #bbb;
}

.fen-blog-pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    list-style: none;
}

.fen-blog-pagination li {
    display: block;
}

.fen-blog-pagination li .pagination-item {
    display: block;
    width: 30px;
    height: 30px;
    line-height: 28px;
    text-align: center;
    border-radius: 50%;
    margin: 0 4px;
    border: 1px solid #ccc;
    font-size: 12px;
    color: #000;
    background-color: #fff;
    transition: background-color 0.3s, color 0.3s;
    cursor: pointer;
}

.fen-blog-pagination li .pagination-item.active,
.fen-blog-pagination li .pagination-item:hover {
    background-color: #FF7200;
    color: #fff;
}

.posts-container {
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    flex-wrap: wrap !important;
    position: relative;
    overflow: hidden;
}

.posts-container.cat-courtain:before {
    content: '';
    display: block;
    background-color: #f4f4f4;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    opacity: 1;
}

.posts-container.cat-courtain:after {
    content: '';
    display: block;
    position: absolute;
    top: 10%;
    right: 10%;
    width: 50px;
    height: 50px;
    transform: translate(-50%, -50%);
    z-index: 2;
    border: 10px solid #eee;
    border-bottom-color: #F65120;
    border-right-color: #F65120;
    border-radius: 50%;
    animation: cat-spinner .5s ease-in-out infinite;
}

.posts-container.cat-courtain.--fade-out:before {
    animation: courtain-fade-out .3s .3s linear forwards;
}

.article__category-wrapper {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    position: absolute;
    top: 10px;
    left: 10px;
    flex-wrap: wrap;
}

.article__category {
    display: block;
    margin-right: 5px;
}

.article__category a {
    position: relative;
    /*background: #ee6f71 !important;*/
    font-weight: 400;
    font-style: normal;
    text-transform: none;
    letter-spacing: 0px;
    transition: color .3s ease;
    font-size: 14px;
    display: block;
    line-height: 1;
    padding: 7px 13px;
    color: #fff !important;
}

.article__category a:hover {
    color: #242424 !important;
}

/* security */
.article__category.--color-10 a {
    background: #ee6f71 !important;
}
/* backup & storage */
.article__category.--color-14 a {
    background: #4057a2 !important;
}
/* serwis fen */
.article__category.--color-306 a {
    background: #718eb1 !important;
}
/* urzadzenia sieciowe */
.article__category.--color-40 a {
    background: #718eb1 !important;
}
/* zasilanie awaryjne */
.article__category.--color-88 a {
    background: #9EC52B !important;
}
/* audioVideo */
.article__category.--color-51 a {
    background: #A3CBED !important;
}
/* akcesoria */
.article__category.--color-13 a {
    background: #E94644 !important;
}
/* monitoring */
.article__category.--color-15 a {
    background: #9d4c97 !important;
}


.article__date {
    font-size: 12px;
    color: #ADADAD;
    margin-bottom: 4px;
}

@keyframes cat-spinner {
    0% {
        transform: translate(-50%, -50%) rotate(0deg);
    }
    100% {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}

@keyframes courtain-fade-out {
    0% {
        opacity: 1
    }
    100% {
        opacity: 0;
    }
}


.posts-container .article {
    display: flex;
    flex-direction: column;
    flex: 0 1 33%;
    /*max-width: 300px;*/
    padding: 10px;
    position: relative;
}

@media (max-width: 991px) {
    .posts-container .article {
        flex: 0 1 50%;
    }
}

@media (max-width: 440px) {
    .posts-container .article {
        flex: 1 0 100%;
        max-width: unset;
    }
}

.posts-container .article__thumbnail {
    padding-top: 56.25%;
    margin: 0;
    border: 0;
    position: relative;
    display: block;
    overflow: hidden;
}

.posts-container .article__thumbnail img {
    position: absolute;
    display: block;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    height: 100%;
    width: auto;
    max-width: none;
}

.article__text {
    padding: 8px 20px 20px;
    color: #000000;
    font-family: "Lato", Sans-serif;
    border: 1px #ccc solid;
    height: 100%;
}

.article__header {
    font-size: 18px;
    font-weight: 400;
    line-height: 1.4em;
    text-align: left;
    padding: 0;
    border: 0;
    margin: 0;
    color: #000000;
    font-family: "Lato", Sans-serif;
}