.section_blog {
    margin-top: 50px;
    margin-bottom: 70px;
    background-color: #fff;
}

.blog__header {
    margin-bottom: 30px;
}

.blog__title {
    font-family: 'UVN Bach Dang', sans-serif;
    font-size: 36px;
    font-weight: 700;
    color: #1B1B1B;
    text-transform: uppercase;
}

.blog__title a {
    color: inherit;
    text-decoration: none;
}

.blog-item {
    margin-bottom: 30px;
    transition: all 0.3s ease;
}

.blog-item__image {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 15px;
    display: block;
}

.blog-item__image img {
    width: 100%;
    height: auto;
    transition: transform 0.5s ease;
}

.blog-item:hover .blog-item__image img {
    transform: scale(1.1);
}

.blog-item__title {
    font-size: 16px;
    font-weight: 700;
    line-height: 1.4;
    margin-bottom: 10px;
    height: 44px;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
}

.blog-item__title a {
    color: #1B1B1B;
    text-decoration: none;
    transition: color 0.3s;
}

.blog-item__title a:hover {
    color: var(--primary-color);
}

.blog-item__summary {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
    height: 66px;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    -webkit-box-orient: vertical;
}

.btn-viewmore-blog {
    display: inline-block;
    border: 1px solid #000;
    padding: 10px 40px;
    text-transform: uppercase;
    font-weight: 700;
    font-size: 14px;
    color: #000;
    margin-top: 20px;
    transition: all 0.3s;
    text-decoration: none !important;
    background: #fff;
}

.btn-viewmore-blog:hover {
    background: #000;
    color: #fff;
}

@media (max-width: 991px) {
    .blog__title {
        font-size: 28px;
    }
}

@media (max-width: 767px) {
    .blog__title {
        font-size: 24px;
    }
    
    .blog-item__title {
        font-size: 15px;
    }
}
