.blog-preview {
    padding-bottom: 16rem;
}

.blog-preview .title {
    padding-bottom: 6rem;
}

.blog-preview .title h4 {
    font-family: var(--montserrat-font);
    font-weight: 600;
    font-size: 24px;
    text-transform: uppercase;
    color: var(--black);
    letter-spacing: 2.5px;
}

.blog-preview .title h2 {
    font-family: var(--teko-font);
    font-weight: 600;
    font-size: 64px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--black);
}

.blog-preview a {
    display: block;
    position: relative;
    overflow: hidden;
    width: 100%;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 32.81%, rgba(0, 0, 0, 0.7) 66.65%), linear-gradient(0deg, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2));
}

.blog-preview a img {
    transition: all 0.5s ease-in-out;
    width: 100%;
}

.blog-preview a:hover img {
    transform: scale(1.1);
}

.blog-preview a h4 {
    position: absolute;
    bottom: 0;
    padding: 18px;
    font-family: 'Montserrat';
    font-style: normal;
    font-weight: 500;
    font-size: 24px;
    line-height: 29px;
    text-decoration: underline;
    color: #FFFFFF;
}

@media (max-width: 1400px) {
    .blog-preview a h4 {
        font-size: 18px;
    }
}

@media (max-width: 992px) {
    .blog-preview a {
        margin-bottom: 30px;
    }
    .blog-preview a h4 {
        font-size: 24px;
    }
}