/* Subtheme specific styles */
.subtheme-header {
    margin-bottom: 1.5rem;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid #eee;
}

.subtheme-header h1 {
    font-size: 1.5rem;
    margin-bottom: 0.25rem;
}

.article-count {
    font-size: 0.8rem;
    color: #666;
}

/* Compact article cards */
.articles-list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 1rem;
    margin-top: 1.5rem;
}

.article-card {
    display: block;
    padding: 1rem;
    border-radius: 6px;
    background: #fff;
    border: 1px solid #e0e0e0;
    transition: all 0.2s ease;
    text-decoration: none;
    color: inherit;
}

.article-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 3px 8px rgba(0,0,0,0.1);
    border-color: #0066cc;
}

.article-card h3 {
    color: #0066cc;
    margin-bottom: 0.5rem;
    font-size: 1rem;
    line-height: 1.3;
}

.article-meta {
    font-size: 0.8rem;
    color: #666;
}

.keywords {
    display: inline-block;
    background: #f0f0f0;
    padding: 0.2rem 0.4rem;
    border-radius: 3px;
    margin-right: 0.3rem;
    margin-bottom: 0.3rem;
    font-size: 0.7rem;
}

.no-articles {
    color: #666;
    font-style: italic;
    text-align: center;
    padding: 1.5rem;
    grid-column: 1 / -1;
    font-size: 0.9rem;
}

