.section__news {
    padding: 45px 0;
}

.blog__card {
    display: block;
    text-decoration: none;
    position: relative;
    background-color: #fff;
}

.col-12 > .blog__card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 25px;
    background-color: rgba(0, 0, 0, 0.2);
    transition: 0.5s all;
    -webkit-transition: 0.5s all;
    -moz-transition: 0.5s all;
    z-index: 10;
}

.blogs > .blog__card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 35px;
    background-color: rgba(0, 0, 0, 0.2);
    transition: 0.5s all;
    -webkit-transition: 0.5s all;
    -moz-transition: 0.5s all;
    z-index: 10;
}

.blog-name {
    font-size: 17px;
    font-family: "RobotoCondensed-Regular";
    font-style: normal;
    font-weight: 400;
    color: #130D0D;
    margin-bottom: 0;

    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
}

.blog-date {
    position: absolute;
    left: 10px;
    bottom: 10px;
    font-size: 13px;
    color: #FFFFFF;
    font-family: "Roboto-Regular";
    font-style: normal;
    font-weight: 400;
    background-color: rgba(0, 0, 0, 0.4);
    border-radius: 50px;
    padding: 4px 16px;
    box-sizing: border-box;
    transition: 0.5s all;
    -webkit-transition: 0.5s all;
    -moz-transition: 0.5s all;
    z-index: 20;
}

.blog__image {
    display: block;
    position: relative;
    max-width: 100%;
    overflow: hidden;
}

.blog__image > img {
    transition: 0.5s all;
}

.blog__card:hover img {
    transform: scale(1.04);
}

.blog__card:hover .blog-date {
    background-color: rgba(0, 0, 0, 0.7);
}

@media (max-width: 1559px) {
    .blog-name {
        font-size: 16px;
        margin-top: 6px;
    }

    .blog-date {
        font-size: 14px;
    }

    .col-12 > .blog__card::before {
        bottom: 30px;
    }

    .blogs > .blog__card::before {
        bottom: 41px;
    }
}

@media (max-width: 1024px) {
    .section__news {
        padding: 30px 0;
    }

    .col-12 > .blog__card::before {
        bottom: 27px;
    }

    .blogs > .blog__card::before {
        bottom: 27px;
    }

    .blog-date {
        font-size: 12px;
    }

    .blog-name {
        font-size: 14px;
    }
}

@media (max-width: 767px) {

}

@media (max-width: 575px) {
    .section__news {
        padding: 15px 0;
    }

    .blog-date {
        font-size: 12px;
    }

    .blog-name {
        font-size: 14px;
    }
}