/* Blog Styles */
.blog-header {
    background: linear-gradient(135deg, #007bff, #0056b3);
}

.blog-post {
    background: white;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.blog-post-title {
    color: #2c3e50;
    margin-bottom: 20px;
}

.blog-post-meta {
    color: #6c757d;
    margin-bottom: 20px;
}

.blog-post-meta span {
    margin-right: 20px;
}

.blog-post-meta i {
    margin-right: 5px;
}

.blog-post-content {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #2c3e50;
}

.blog-post-content h3 {
    color: #007bff;
    margin-top: 30px;
    margin-bottom: 15px;
}

.conclusion {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 10px;
    margin: 30px 0;
}

.conclusion p {
    margin-bottom: 0;
    font-size: 1.1rem;
    color: #2c3e50;
}

/* Share Buttons */
.share-buttons {
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid #dee2e6;
}

.btn-linkedin {
    background-color: #0077b5;
    color: white;
    margin-right: 10px;
}

.btn-twitter {
    background-color: #1da1f2;
    color: white;
}

.btn-linkedin:hover,
.btn-twitter:hover {
    opacity: 0.9;
    color: white;
}

/* Sidebar Styles */
.sidebar {
    position: sticky;
    top: 100px;
}

.sidebar-section {
    background: white;
    border-radius: 15px;
    padding: 25px;
    margin-bottom: 30px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.author-bio {
    text-align: center;
}

.author-bio img {
    width: 120px;
    height: 120px;
    margin-bottom: 15px;
    object-fit: cover;
}

.sidebar-section ul li {
    margin-bottom: 10px;
}

.sidebar-section ul li a {
    color: #2c3e50;
    text-decoration: none;
    transition: color 0.3s;
}

.sidebar-section ul li a:hover {
    color: #007bff;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .blog-post {
        padding: 20px;
    }
    
    .sidebar {
        margin-top: 30px;
        position: static;
    }
    
    .blog-post-meta span {
        display: block;
        margin-bottom: 5px;
    }
}

/* Add these styles to your existing blog.css */

.feature-list {
    padding-left: 20px;
    margin: 15px 0;
}

.feature-list li {
    margin-bottom: 10px;
    position: relative;
    padding-left: 25px;
}

.feature-list li:before {
    content: '→';
    position: absolute;
    left: 0;
    color: #007bff;
}

.image-caption {
    font-size: 0.9rem;
    color: #666;
    text-align: center;
    margin-top: 5px;
    font-style: italic;
} 