/* -----------------------------------------
   BLOG-SPECIFIC STYLES
   ----------------------------------------- */

.article-card {
    display: block;
    background-color: var(--color-white);
    border: 1px solid var(--color-border);
    border-radius: var(--rounded-xl);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: all 0.2s ease;
    text-decoration: none;
    color: inherit;
}

.article-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    text-decoration: none;
}

.article-card .card-image {
    width: 100%;
    aspect-ratio: 16 / 9;
    overflow: hidden;
}

.article-card .card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.article-card .card-content {
    padding: var(--space-lg);
}

.article-card .tag {
    display: inline-block;
    background-color: var(--color-primary);
    color: var(--color-white);
    padding: 0.25rem 0.75rem;
    border-radius: var(--rounded-full);
    font-size: var(--text-xs);
    font-weight: 600;
    margin-bottom: var(--space-md);
}

.article-card .article-title {
    font-size: var(--text-xl);
    margin-bottom: var(--space-sm);
    color: var(--color-text-primary);
}

.article-card .article-excerpt {
    font-size: var(--text-base);
    color: var(--color-text-secondary);
    margin-bottom: var(--space-lg);
}

.article-card .article-meta {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
}

.article-card .author-avatar {
    width: 40px;
    height: 40px;
    border-radius: var(--rounded-full);
}

.article-card .author-name {
    display: block;
    font-weight: 600;
    color: var(--color-text-primary);
}

.article-card .article-date {
    display: block;
    font-size: var(--text-sm);
    color: var(--color-text-tertiary);
}
