.category-detail-description
{
    font-size: 25px;
    margin: 25px 0;
    font-weight: bold;
}

.category-post-list-item
{
    background-color: silver;
    display: block;
    color: #fff;
    text-decoration: none;
    padding: 10px;
    text-align: center;
    width: 18%;
    transition: all .5s;
    margin: 5px 10px 5px 0;
}

.category-post-list-item:hover
{
    background-color: yellowgreen;
}

.category-posts-list
{
    display: flex;
    flex-wrap: wrap;
}

.category-post-list-item-name
{
    font-size: 25px;
    margin-bottom: 15px;
}

.category-post-list-item-description
{
    font-size: 18px;
}

.category-detail-image
{
    text-align: center;
}

@media (max-width: 1099px)
{
    .category-post-list-item
    {
        width: 100%;
    }
}