/* Blog listing page styles */

.date-group {
    margin-bottom: 40px;
}

.date-group h2 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-secondary);
    border-bottom: 1px solid var(--border);
    padding-bottom: 8px;
    margin-bottom: 16px;
}

.blog-entry {
    margin-bottom: 24px;
    padding-bottom: 24px;
    border-bottom: 1px solid var(--border);
}

.blog-entry:last-child {
    border-bottom: none;
}

.blog-entry h3 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 6px;
    line-height: 1.3;
}

.blog-entry h3 a {
    color: var(--text);
    text-decoration: none;
}

.blog-entry h3 a:hover {
    text-decoration: underline;
}

.blog-entry-meta {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 8px;
}

.blog-entry-meta time {
    color: var(--text-secondary);
}

.blog-entry-excerpt {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 8px;
}

.blog-entry-tags {
    display: flex;
    gap: 6px;
    flex-wrap: wrap;
}

.blog-entry-category {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--accent);
}

.word-count {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 0.8rem;
    color: var(--text-muted);
}

.no-posts {
    text-align: center;
    padding: 40px;
    color: var(--text-muted);
    font-size: 0.95rem;
}
