/* Blog Card Component */
.blog-card {
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.2);
    border-radius: 8px;
    padding: 1.5rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.25);
    text-decoration: none;
    color: inherit;
    display: block;
}

.blog-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.35);
    text-decoration: none;
}

.blog-card h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-family: var(--font-mono);
    font-size: 1.1rem;
    font-weight: bold;
}

.blog-meta {
    display: flex;
    gap: 1rem;
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 1rem;
    font-family: var(--font-mono);
}

.blog-meta i {
    margin-right: 0.5rem;
}

.blog-excerpt {
    color: #333;
    line-height: 1.6;
    margin-bottom: 0;
    font-family: var(--font-mono);
    font-size: 0.95rem;
}

/* Dark theme overrides */
[data-theme='dark'] .blog-card {
    background: #1a1a1a;
    border-color: rgba(255, 255, 255, 0.1);
}

[data-theme='dark'] .blog-meta {
    color: #999;
}

[data-theme='dark'] .blog-excerpt {
    color: #ddd;
} 