.blog-categories {
    margin-bottom: 30px;
}

.category-list {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.category-item {
    list-style: none;
}

.category-item a {
    padding: 10px;
    border-radius: 40px;
    border: 1px solid #FFE778;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #E5F6FF;
    min-width: 90px;
    line-height: 1.3;
}

.blog-posts {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.post__item {
    position: relative;
    background: #1E2A35;
    border-radius: 30px;
    overflow: hidden;
    display: none;
}

.blog-posts .post__item:nth-child(1),
.blog-posts .post__item:nth-child(2),
.blog-posts .post__item:nth-child(3),
.blog-posts .post__item:nth-child(4),
.blog-posts .post__item:nth-child(5),
.blog-posts .post__item:nth-child(6) {
    display: block;
}

.post__item-content {
    padding: 20px;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.post__item .article__row-views {
    position: absolute;
    left: 20px;
    top: 20px;
    background: #1E2A35;
    padding: 5px 10px;
    border-radius: 20px;
    color: #E5F6FF;
}

.post__item .article__row-views__meta-item {
    line-height: 1.3;
}

.post__item a:-webkit-any-link {
    color: #E5F6FF;
}

.post__item a {
    display: flex;
    height: 100%;
    flex-direction: column;
}

.post__item-header {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 14px;
    font-weight: 300;
    margin-bottom: 5px;
    color: #FFE778;
}

.post__cat {
    font-size: 14px;
    font-weight: 300;
    color: #FFE778;
}

.post__image img {
    border-radius: 0px 0px 30px 30px;
}

.post__title {
    margin-bottom: 5px;
    flex: 1;
}

.blog-posts__button,
.blog-single-posts__button{
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: fit-content;
    cursor: pointer;
    padding: 10px;
    margin-left: auto;
    margin-right: auto;
    border: 1px solid #FFE778;
    border-radius: 40px;
    color: #E5F6FF;
    margin-top: 20px;
    min-width: 180px;
    transition: all ease 0.3s;
}

.blog-posts__button:hover,
.blog-single-posts__button:hover {
    transition: all ease 0.3s;
    color: #FFE778;
}

.category {
    margin-top: 70px;
}

.category-item a {
    transition: all ease 0.3s;
}

.category-item.active a {
    color: #FFE778;
}

.category-item a:hover {
    transition: all ease 0.3s;
    color: #FFE778;
}

@media screen and (min-width: 1260px) {
    .post__item {
        flex-basis: calc((100% - 60px) / 3);
    }
}

@media screen and (min-width: 992px) and (max-width: 1259.98px) {
    .post__item {
        flex-basis: calc((100% - 30px) / 2);
    }
}

@media screen and (max-width: 991.98px) {
    .blog-posts {
        flex-direction: column;
        gap: 20px;
    }

    .category {
        margin-top: 70px;
    }
}