/* Blog Specific Styles */
.blog-article {
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.7;
}

.blog-article h1 {
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: hsl(var(--foreground));
}

.blog-article h2 {
    font-size: 1.875rem;
    font-weight: 700;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    color: hsl(var(--foreground));
    border-bottom: 2px solid hsl(var(--primary));
    padding-bottom: 0.5rem;
}

.blog-article h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-top: 2rem;
    margin-bottom: 0.75rem;
    color: hsl(var(--primary));
}

.blog-article p {
    margin-bottom: 1.5rem;
    color: hsl(var(--muted-foreground));
}

.blog-article ul, .blog-article ol {
    margin-bottom: 1.5rem;
    padding-left: 1.5rem;
}

.blog-article li {
    margin-bottom: 0.5rem;
    color: hsl(var(--muted-foreground));
}

.blog-article strong {
    color: hsl(var(--foreground));
    font-weight: 600;
}

.blog-article a {
    color: hsl(var(--primary));
    text-decoration: underline;
    transition: color 0.2s;
}

.blog-article a:hover {
    color: hsl(var(--primary) / 0.8);
}

.blog-meta {
    border-bottom: 1px solid hsl(var(--border));
    padding-bottom: 1.5rem;
    margin-bottom: 2rem;
}

.blog-meta-item {
    display: inline-flex;
    align-items: center;
    margin-right: 1.5rem;
    color: hsl(var(--muted-foreground));
    font-size: 0.875rem;
}

.blog-meta-item svg {
    margin-right: 0.5rem;
    color: hsl(var(--primary));
}

.blog-image {
    width: 100%;
    height: auto;
    border-radius: 0.75rem;
    margin: 2rem 0;
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

.blog-image-caption {
    text-align: center;
    font-size: 0.875rem;
    color: hsl(var(--muted-foreground));
    margin-top: 0.5rem;
    font-style: italic;
}

.faq-section {
    background: hsl(var(--muted) / 0.3);
    border-radius: 0.75rem;
    padding: 2rem;
    margin: 2.5rem 0;
}

.faq-section h2 {
    margin-top: 0;
    border-bottom: none;
    padding-bottom: 0;
}

.faq-item {
    margin-bottom: 1.5rem;
}

.faq-question {
    font-weight: 600;
    color: hsl(var(--foreground));
    margin-bottom: 0.5rem;
}

.faq-answer {
    color: hsl(var(--muted-foreground));
    margin-bottom: 0;
}

.internal-links {
    background: hsl(var(--card));
    border: 1px solid hsl(var(--border));
    border-radius: 0.75rem;
    padding: 1.5rem;
    margin: 2rem 0;
}

.internal-links h3 {
    margin-top: 0;
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.internal-links ul {
    margin-bottom: 0;
}

.cta-section {
    background: linear-gradient(135deg, hsl(var(--primary)), hsl(var(--primary) / 0.8));
    color: white;
    padding: 2rem;
    border-radius: 0.75rem;
    text-align: center;
    margin: 2.5rem 0;
}

.cta-section h3 {
    color: white;
    margin-top: 0;
    margin-bottom: 1rem;
}

.cta-section p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 1.5rem;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: white;
    color: hsl(var(--primary));
    padding: 0.75rem 2rem;
    border-radius: 0.5rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s;
}

.cta-button:hover {
    background: rgba(255, 255, 255, 0.9);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.breadcrumb {
    margin-bottom: 2rem;
    font-size: 0.875rem;
}

.breadcrumb a {
    color: hsl(var(--muted-foreground));
    text-decoration: none;
}

.breadcrumb a:hover {
    color: hsl(var(--primary));
}

.breadcrumb-separator {
    margin: 0 0.5rem;
    color: hsl(var(--muted-foreground));
}

.article-card {
    background: hsl(var(--card));
    border: 1px solid hsl(var(--border));
    border-radius: 0.75rem;
    overflow: hidden;
    transition: all 0.3s ease;
}

.article-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

.article-card-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    background: linear-gradient(135deg, hsl(var(--primary) / 0.2), hsl(var(--primary) / 0.1));
}

.article-card-content {
    padding: 1.5rem;
}

.article-card-title {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    line-height: 1.4;
}

.article-card-title a {
    color: hsl(var(--foreground));
    text-decoration: none;
    transition: color 0.2s;
}

.article-card-title a:hover {
    color: hsl(var(--primary));
}

.article-card-excerpt {
    color: hsl(var(--muted-foreground));
    font-size: 0.875rem;
    line-height: 1.5;
    margin-bottom: 1rem;
}

.article-card-meta {
    display: flex;
    align-items: center;
    justify-content: between;
    font-size: 0.75rem;
    color: hsl(var(--muted-foreground));
}

.article-tag {
    background: hsl(var(--primary) / 0.1);
    color: hsl(var(--primary));
    padding: 0.25rem 0.5rem;
    border-radius: 0.25rem;
    font-size: 0.75rem;
    font-weight: 500;
}

/* Responsive Design */
@media (max-width: 768px) {
    .blog-article h1 {
        font-size: 2rem;
    }
    
    .blog-article h2 {
        font-size: 1.5rem;
    }
    
    .blog-article h3 {
        font-size: 1.25rem;
    }
    
    .blog-meta-item {
        display: block;
        margin-bottom: 0.5rem;
        margin-right: 0;
    }
    
    .faq-section,
    .internal-links,
    .cta-section {
        padding: 1.5rem;
    }
}

/* Dark mode adjustments */
@media (prefers-color-scheme: dark) {
    .blog-image {
        box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.3), 0 4px 6px -2px rgba(0, 0, 0, 0.2);
    }
}