/* Blog Specific Styles */
.blog-hero {
    padding: 120px 0 80px;
    background: linear-gradient(135deg, #1f2937 0%, #374151 100%);
    color: white;
    text-align: center;
}

.blog-hero-content h1 {
    font-size: 3rem;
    color: white;
    margin-bottom: 1.5rem;
}

.blog-hero-content p {
    font-size: 1.25rem;
    color: #d1d5db;
    max-width: 600px;
    margin: 0 auto;
}

.blog-content {
    padding: 80px 0;
    background-color: #f9fafb;
}

.blog-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    max-width: 800px;
    margin: 0 auto;
}

.blog-card {
    background: white;
    padding: 2.5rem;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-left: 4px solid #3b82f6;
}

.blog-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.blog-card.featured {
    border-left: 4px solid #10b981;
    background: linear-gradient(135deg, #ffffff 0%, #f0f9ff 100%);
}

.blog-meta {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

.blog-date {
    color: #6b7280;
    font-size: 0.875rem;
    font-weight: 500;
}

.blog-category {
    background: #3b82f6;
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
}

.blog-card.featured .blog-category {
    background: #10b981;
}

.blog-card h2 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.blog-card h2 a {
    text-decoration: none;
    color: #1f2937;
    transition: color 0.3s ease;
}

.blog-card h2 a:hover {
    color: #3b82f6;
}

.blog-card.featured h2 a:hover {
    color: #10b981;
}

.blog-card p {
    color: #6b7280;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-size: 1rem;
}

.blog-author {
    margin-bottom: 1.5rem;
    padding-top: 1rem;
    border-top: 1px solid #e5e7eb;
}

.blog-author span {
    color: #374151;
    font-size: 0.875rem;
    font-style: italic;
}

.blog-read-more {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: #3b82f6;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.875rem;
    transition: color 0.3s ease;
}

.blog-read-more:hover {
    color: #1d4ed8;
}

.blog-card.featured .blog-read-more {
    color: #10b981;
}

.blog-card.featured .blog-read-more:hover {
    color: #059669;
}

.blog-read-more::after {
    content: '→';
    transition: transform 0.3s ease;
}

.blog-read-more:hover::after {
    transform: translateX(4px);
}

.nav-link.active {
    color: #3b82f6;
    font-weight: 600;
}

/* Article Page Styles */
.article-header {
    padding: 120px 0 80px;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    text-align: center;
}

.article-header h1 {
    font-size: 2.5rem;
    color: #1f2937;
    margin-bottom: 1.5rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.article-meta {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.article-meta-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.25rem;
}

.article-meta-label {
    font-size: 0.75rem;
    color: #6b7280;
    text-transform: uppercase;
    font-weight: 600;
}

.article-meta-value {
    font-size: 0.875rem;
    color: #374151;
    font-weight: 500;
}

.article-content {
    padding: 80px 0;
    background-color: white;
}

.article-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

.article-text {
    font-size: 1.125rem;
    line-height: 1.8;
    color: #374151;
}

.article-text h2 {
    font-size: 1.875rem;
    color: #1f2937;
    margin-top: 3rem;
    margin-bottom: 1.5rem;
}

.article-text h3 {
    font-size: 1.5rem;
    color: #1f2937;
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.article-text p {
    margin-bottom: 1.5rem;
}

.article-text ul,
.article-text ol {
    margin-bottom: 1.5rem;
    padding-left: 2rem;
}

.article-text li {
    margin-bottom: 0.5rem;
    color: #374151;
}

.article-text blockquote {
    border-left: 4px solid #3b82f6;
    padding-left: 1.5rem;
    margin: 2rem 0;
    font-style: italic;
    color: #6b7280;
    background: #f8fafc;
    padding: 1.5rem;
    border-radius: 8px;
}

.highlight-box {
    background: linear-gradient(135deg, #eff6ff 0%, #dbeafe 100%);
    border: 1px solid #3b82f6;
    border-radius: 12px;
    padding: 2rem;
    margin: 2rem 0;
}

.highlight-box h4 {
    color: #1f2937;
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.stats-inline {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1rem;
    margin: 2rem 0;
    padding: 2rem;
    background: #f9fafb;
    border-radius: 12px;
}

.stat-inline {
    text-align: center;
}

.stat-inline-number {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: #3b82f6;
    margin-bottom: 0.5rem;
}

.stat-inline-label {
    font-size: 0.875rem;
    color: #6b7280;
}

.article-cta {
    background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
    color: white;
    padding: 3rem;
    border-radius: 16px;
    text-align: center;
    margin: 3rem 0;
}

.article-cta h3 {
    color: white;
    margin-bottom: 1rem;
}

.article-cta p {
    color: #bfdbfe;
    margin-bottom: 2rem;
}

.article-navigation {
    display: flex;
    justify-content: space-between;
    gap: 2rem;
    margin: 3rem 0;
    padding: 2rem 0;
    border-top: 1px solid #e5e7eb;
}

.nav-article {
    flex: 1;
    text-decoration: none;
    color: #374151;
    transition: color 0.3s ease;
}

.nav-article:hover {
    color: #3b82f6;
}

.nav-article-label {
    font-size: 0.75rem;
    color: #6b7280;
    text-transform: uppercase;
    font-weight: 600;
    margin-bottom: 0.5rem;
    display: block;
}

.nav-article-title {
    font-weight: 600;
}

.nav-article.next {
    text-align: right;
}

/* Responsive Design for Blog */
@media (max-width: 768px) {
    .blog-hero-content h1 {
        font-size: 2rem;
    }

    .blog-card {
        padding: 2rem;
    }

    .article-header h1 {
        font-size: 2rem;
    }

    .article-meta {
        gap: 1rem;
    }

    .article-navigation {
        flex-direction: column;
    }

    .nav-article.next {
        text-align: left;
    }
}
