/* Blog Styles */
.blog-container {
    max-width: 1200px;
    margin: 0 auto;
    min-height: 100vh;
    background: white;
}

.blog-header {
    background: linear-gradient(135deg, #ff6b6b, #feca57);
    color: white;
    padding: 0 0 60px 0;
}

.blog-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 40px;
}

.logo {
    font-size: 24px;
    font-weight: 700;
    text-decoration: none;
    color: white;
}

.nav-links {
    display: flex;
    gap: 30px;
}

.nav-link {
    color: rgba(255,255,255,0.9);
    text-decoration: none;
    font-weight: 500;
    padding: 8px 16px;
    border-radius: 20px;
    transition: all 0.2s ease;
}

.nav-link:hover,
.nav-link.active {
    background: rgba(255,255,255,0.2);
    color: white;
}

.blog-hero {
    text-align: center;
    padding: 40px 40px 0 40px;
}

.blog-hero h1 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 16px;
}

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

.blog-main {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
    padding: 60px 40px;
}

.blog-posts {
    display: grid;
    gap: 40px;
}

.blog-post {
    background: #f8f9fa;
    border-radius: 16px;
    padding: 32px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.blog-post:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 24px rgba(0,0,0,0.1);
}

.post-meta {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 16px;
    font-size: 14px;
    color: #666;
}

.post-category {
    background: #667eea;
    color: white;
    padding: 4px 12px;
    border-radius: 12px;
    font-weight: 500;
}

.post-title {
    font-size: 28px;
    font-weight: 700;
    color: #333;
    margin-bottom: 16px;
    line-height: 1.3;
}

.post-excerpt {
    font-size: 16px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
}

.read-more {
    color: #667eea;
    font-weight: 600;
    text-decoration: none;
    font-size: 14px;
}

.read-more:hover {
    text-decoration: underline;
}

.blog-sidebar {
    display: grid;
    gap: 32px;
    align-content: start;
}

.sidebar-section {
    background: #f8f9fa;
    padding: 24px;
    border-radius: 12px;
}

.sidebar-section h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 16px;
    color: #333;
}

.category-list {
    list-style: none;
    padding: 0;
}

.category-list li {
    margin-bottom: 8px;
}

.category-list a {
    color: #666;
    text-decoration: none;
    padding: 8px 0;
    display: block;
    transition: color 0.2s ease;
}

.category-list a:hover,
.category-list a.active {
    color: #667eea;
    font-weight: 500;
}

.cta-button {
    display: inline-block;
    background: #667eea;
    color: white;
    padding: 12px 24px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    margin-top: 12px;
    transition: all 0.2s ease;
}

.cta-button:hover {
    background: #5a6fd8;
    transform: translateY(-2px);
}

.blog-footer {
    background: #f8f9fa;
    text-align: center;
    padding: 32px 40px;
    color: #666;
    border-top: 1px solid #e9ecef;
}

/* Responsive */
@media (max-width: 768px) {
    .blog-nav {
        padding: 20px;
        flex-direction: column;
        gap: 16px;
    }
    
    .blog-hero {
        padding: 20px 20px 0 20px;
    }
    
    .blog-hero h1 {
        font-size: 32px;
    }
    
    .blog-hero p {
        font-size: 16px;
    }
    
    .blog-main {
        grid-template-columns: 1fr;
        gap: 40px;
        padding: 40px 20px;
    }
    
    .blog-post {
        padding: 24px;
    }
    
    .post-title {
        font-size: 24px;
    }
}