/* Minification failed. Returning unminified contents.
(5,17): run-time error CSS1039: Token not allowed after unary operator: '-black-title'
(6,23): run-time error CSS1039: Token not allowed after unary operator: '-font-title'
(34,17): run-time error CSS1039: Token not allowed after unary operator: '-black-title'
(35,23): run-time error CSS1039: Token not allowed after unary operator: '-font-title'
(41,17): run-time error CSS1039: Token not allowed after unary operator: '-gray-text'
(42,23): run-time error CSS1039: Token not allowed after unary operator: '-font-text'
 */
#blogs {
    padding-bottom: 100px;
}
#blogs .title {
    color: var(--black-title);
    font-family: var(--font-title);
    font-size: 2.5rem;
    margin: 0;
    padding: 75px 0;
}
#blogs .empty-message {
    text-align: center;
}
/*LIST*/
#blogs .blog-item {
    margin-bottom: 2rem;
}
#blogs .blog-image-parent {
    height: 270px;
    overflow: hidden;
}
#blogs .blog-image-parent:hover .blog-image-child,
#blogs .blog-image-parent:focus .blog-image-child {
    transform: scale(1.05);
}
#blogs .blog-image-child {
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    height: 100%;
    transition: all 0.3s ease-in-out;
}
#blogs .blog-title {
    color: var(--black-title);
    font-family: var(--font-title);
    font-size: 20px;
    margin-top: 40px;
    text-transform: uppercase;
}
#blogs .blog-text {
    color: var(--gray-text);
    font-family: var(--font-text);
    font-size: 1rem;
    margin-top: 20px;
}
/*END LIST*/
@media (max-width: 991px) {
    #blogs .title {
        font-size: 2rem;
        padding: 3rem 0;
    }
}
