/* Blog Specific Styles */

.logo-text-link {
    text-decoration: none;
    color: inherit;
}

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

.nav-link.active::after {
    width: 100%;
}

/* Blog Hero Section */
.blog-hero {
    background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
    padding: 120px 0 80px;
    color: white;
    text-align: center;
}

.blog-hero h1 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 20px;
}

.blog-hero p {
    font-size: 1.25rem;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
}

/* Blog Content */
.blog-content {
    padding: 80px 0;
    background: #f8fafc;
    min-height: 60vh;
}

.blog-posts {
    max-width: 800px;
    margin: 0 auto;
}

.blog-post {
    background: white;
    border-radius: 16px;
    padding: 40px;
    margin-bottom: 40px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.blog-post:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

/* Blog Post Preview (List View) */
.blog-post-preview {
    background: white;
    border-radius: 16px;
    padding: 30px;
    margin-bottom: 30px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.blog-post-preview:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.post-title a {
    text-decoration: none;
    color: #2d3748;
    transition: color 0.3s ease;
}

.post-title a:hover {
    color: #3b82f6;
}

.post-excerpt {
    color: #718096;
    line-height: 1.7;
    margin: 20px 0;
    font-size: 1rem;
}

.post-excerpt p {
    margin: 0;
}

.read-more {
    color: #3b82f6;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.read-more:hover {
    color: #2563eb;
    gap: 10px;
}

.blog-post-preview .post-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid #e2e8f0;
}

.post-header {
    margin-bottom: 24px;
    padding-bottom: 20px;
    border-bottom: 2px solid #e2e8f0;
}

.post-date {
    display: block;
    color: #3b82f6;
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 12px;
}

.post-title {
    font-size: 2rem;
    font-weight: 700;
    color: #2d3748;
    line-height: 1.2;
    margin: 0;
}

.blog-post h1.post-title {
    font-size: 2.5rem;
    margin-bottom: 10px;
}

.article-nav {
    margin-bottom: 30px;
}

.back-link {
    color: #3b82f6;
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.back-link:hover {
    color: #2563eb;
    gap: 12px;
}

.blog-article {
    max-width: 800px;
    margin: 0 auto;
}

.post-content {
    color: #4a5568;
    line-height: 1.8;
    font-size: 1.125rem;
}

.post-content p {
    margin-bottom: 20px;
}

.post-content h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2d3748;
    margin: 30px 0 20px;
    line-height: 1.3;
}

.post-content ul {
    margin: 20px 0;
    padding-left: 30px;
}

.post-content li {
    margin-bottom: 12px;
    color: #4a5568;
}

.post-content ol {
    margin: 20px 0;
    padding-left: 30px;
}

.post-content ol li {
    margin-bottom: 12px;
    color: #4a5568;
}

.post-footer {
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid #e2e8f0;
}

.post-author {
    color: #718096;
    font-size: 14px;
    font-weight: 500;
}

/* Coming Soon */
.coming-soon {
    background: white;
    border-radius: 16px;
    padding: 60px 40px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    color: #718096;
}

.coming-soon i {
    font-size: 48px;
    color: #3b82f6;
    margin-bottom: 20px;
    opacity: 0.5;
}

.coming-soon p {
    font-size: 1.25rem;
    font-weight: 600;
    color: #4a5568;
    margin-bottom: 10px;
}

.coming-soon-subtitle {
    font-size: 1rem;
    font-weight: 400;
    color: #718096;
    margin: 0;
}

/* Responsive Design */
@media (max-width: 768px) {
    .blog-hero h1 {
        font-size: 2.5rem;
    }
    
    .blog-hero p {
        font-size: 1.125rem;
    }
    
    .blog-post,
    .blog-post-preview {
        padding: 30px 20px;
    }
    
    .post-title {
        font-size: 1.75rem;
    }
    
    .blog-post h1.post-title {
        font-size: 2rem;
    }
    
    .post-content {
        font-size: 1rem;
    }
    
    .blog-post-preview .post-footer {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }
}

@media (max-width: 480px) {
    .blog-hero {
        padding: 100px 0 60px;
    }
    
    .blog-hero h1 {
        font-size: 2rem;
    }
    
    .blog-post {
        padding: 24px 16px;
    }
    
    .post-title {
        font-size: 1.5rem;
    }
}
