.categoryWrapper {
    height: auto;
    width: 100%;
    padding: 20px;
}

a {
    text-decoration: none;
}

.categoryWrapperInner {
    display: flex;
    justify-content: flex-start;
    flex-wrap: wrap;
}

#categoryName {
    text-align: left;
}

.postMiniBlock {
    height: 230px;
    width: 180px;
    margin: 15px;
    padding: 10px;
    border-radius: 7px;
    -webkit-box-shadow: 0px 0px 4px 0px #000000;
    box-shadow: 0px 0px 4px 0px rgba(0, 0, 0, .2);
}

.postMiniBlock img {
    width: 100%;
    height: 60%;
    object-fit: cover;
    border-radius: 5px;
    margin-bottom: 10px;
}

.postMiniBlock h1 {
    font-size: 15px;
    color: #222;
    line-height: 1.4;
    display: -webkit-box;
    overflow: hidden;
    max-height: 50px;
    text-align: left;
    text-overflow: ellipsis;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.postMiniBlock h2 {
    font-size: 17px;
    color: #222;
    margin-top: 5px;
    font-weight: 700;
}

.postMiniBlock:hover h1 {
    color: var(--mainYellow);
}

#nothingIsFound {
    margin: 100px auto;
}


@media (max-width: 768px) {
    
    
    .categoryWrapperInner {
        display: flex;
        justify-content: center;
        flex-wrap: wrap;
    }
    
}