.seo-articles {
    background: #f9f9f9;
    padding: 32px 16px;
}

.section-header {
    text-align: center;
    margin-bottom: 24px;
}

.section-title {
    font-size: 20px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 8px;
}

.section-desc {
    color: #666;
    font-size: 14px;
}

.article-grid {
    display: grid;
    gap: 16px;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.article-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    padding: 20px;
}

.article-title {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 8px;
    color: #1a1a1a;
}

.article-excerpt {
    font-size: 13px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 12px;
    /* display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden; */
    /* removed clamp to show content for SEO */
}

.read-more {
    font-size: 13px;
    font-weight: 600;
    color: #007aff;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

/* Dark Mode */
body.dark-mode .seo-articles {
    background: #000 !important;
}

body.dark-mode .article-card {
    background: #1C1C1E !important;
}

body.dark-mode .article-title {
    color: #fff !important;
}

body.dark-mode .article-excerpt {
    color: #ccc !important;
}

body.dark-mode .section-title {
    color: #fff !important;
}

body.dark-mode .section-desc {
    color: #999 !important;
}