/* Blogs */
#blogs p {
    margin-bottom: 0 !important;
}

.blog-img {
    border: 2px solid var(--border);
}

.blog-big-img {
    width: 100%;
    height: 300px;
    -o-object-fit: cover;
       object-fit: cover;
    margin-bottom: 24px;
}

.blog-small-img {
    width: 100%;
    height: 200px;
    -o-object-fit: cover;
       object-fit: cover;
    margin-bottom: 24px;
}

.blog-paragraph {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
    margin-bottom: 20px;
}

.blog-link {
    color: var(--white);
    font-weight: bolder;
    transition: var(--transition);
    text-decoration: none;
    border-bottom: 1px solid var(--white);

}

.blog-link:hover {
    color: var(--primary);
    text-decoration: none;
    border-color: var(--primary);
}

.blog-btn-search {
    background-color: var(--primary);
    border-color: var(--primary);
}

.blog-btn-search:hover {
    background-color: var(--secondary);
    border-color: var(--secondary);
}
/* End Blogs */

/* Filter */
#filterSticky {
    position: sticky;
    top: 17vh;
}

.filter-input {
    border: 1px solid var(--primary);
    border-radius: 0;
}

.filter-divider {
    border-color: var(--primary);
    margin-top: 24px;
    margin-bottom: 24px;
}
/* End Filter */


@media (max-width: 767.98px) {
    .blog-img {
        height: 200px !important;
    }
}

