.blog-section {
    padding: 20px 25px 30px 15px;
    background-color: #f8f9fa;
}

.blog-section .blog-title {
    font-size: 1.5em;
    font-weight: bold;
    margin-bottom: 15px;
}

.blog-section .blog-card {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    margin: 0 10px 20px 10px;
    background: #000;
}

.blog-section .blog-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    display: block;
}

.blog-section .category-tag {
    position: absolute;
    top: 10px;
    left: 10px;
    padding: 5px 10px;
    border-radius: 5px;
    color: #fff;
    font-size: 12px;
    z-index: 2;
}

.blog-section .overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 15px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
    color: #fff;
}

.blog-section .overlay h5 {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 8px;
}

.blog-section .overlay .meta {
    display: flex;
    justify-content: space-between;
    font-size: 12px;
    font-weight: 500;
}

.blog-section .overlay .meta .date {
    color: #ff6600;
}

.blog-section .see-more-btn {
    background-color: #ff6600;
    color: #fff;
    border: none;
    padding: 5px 15px;
    border-radius: 5px;
    font-size: 14px;
}

@media (max-width: 768px) {
    .blog-section .blog-card {
        margin: 0 0 20px 0;
    }
}