#blog-results{
    min-height:400px;
}

#blog-pagination a{
    transition:.25s;
}

#blog-pagination a:hover{
    transform:translateY(-2px);
}

.line-clamp-2{
    display:-webkit-box;
    -webkit-line-clamp:2;
    -webkit-box-orient:vertical;
    overflow:hidden;
}
.blog-category-checkbox {
    appearance: none;
    width: 18px;
    height: 18px;
    border: 1px solid var(--colorPrimary);
    border-radius: 6px;
    cursor: pointer;
    transition: .2s;
    background: transparent;
}

.blog-category-checkbox:checked {
    background-color: var(--colorPrimary);; /* یا رنگ primary */
    border-color: var(--colorPrimary);;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' fill='white'%3E%3Cpath fill-rule='evenodd' d='M16.707 5.293a1 1 0 010 1.414l-7 7a1 1 0 01-1.414 0l-3-3a1 1 0 111.414-1.414L9 11.586l6.293-6.293a1 1 0 011.414 0z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: center;
    background-size: 14px;
}