.ai-blog-list-section {
    background-color: #f5f5f5;
    padding: 60px 0;
}

/* Container chuẩn */
@media (min-width: 1200px) {
    .ai-blog-list-section .width-container {
        max-width: 900px;
        margin: 0 auto;
    }
}

/* Card */
.blog-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    height: 100%;
}

.blog-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.12);
}

/* Thumbnail */
.blog-thumbnail {
    height: 200px;
    overflow: hidden;
}

.blog-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Content */
.blog-content {
    padding: 20px;
}

.section-title {
    font-size: 32px;
    font-weight: 500;
    margin-bottom: 30px;
}

.blog-title {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 10px;
}

.blog-title a {
    color: #1a365d;
    text-decoration: none;
}

.blog-title a:hover {
    color: #0066cc;
}

.blog-excerpt {
    font-size: 14px;
    margin-bottom: 15px;
}

/* Link */
.know-more-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: #0066cc;
    font-weight: 500;
    text-decoration: none;
}

.know-more-link:hover {
    color: #0052a3;
}

a.know-more-link {
    text-decoration: none;
    color: #0052a3;
}