/* Blog Post Styles */

.blog-post {
    background: #fff;
    min-height: 100vh;
}

.post-header {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 120px 20px 60px;
    text-align: center;
}

.breadcrumb {
    font-size: 14px;
    margin-bottom: 20px;
    opacity: 0.9;
}

.breadcrumb a {
    color: white;
    text-decoration: none;
}

.breadcrumb a:hover {
    text-decoration: underline;
}

.post-header h1 {
    font-size: 42px;
    line-height: 1.3;
    margin: 20px 0;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.post-meta {
    display: flex;
    gap: 30px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 30px;
    font-size: 16px;
}

.post-content {
    max-width: 1200px;
    margin: -40px auto 0;
    padding: 0 20px 80px;
}

.featured-image {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0,0,0,0.1);
    margin-bottom: 60px;
}

.featured-image img {
    width: 100%;
    height: auto;
    display: block;
}

.content-wrapper {
    display: grid;
    grid-template-columns: 250px 1fr;
    gap: 60px;
    align-items: start;
}

.table-of-contents {
    position: sticky;
    top: 100px;
    background: #f8f9fa;
    padding: 30px;
    border-radius: 12px;
    border-left: 4px solid #667eea;
}

.table-of-contents h3 {
    margin-top: 0;
    font-size: 18px;
    color: #333;
}

.table-of-contents ul {
    list-style: none;
    padding: 0;
    margin: 20px 0 0 0;
}

.table-of-contents li {
    margin-bottom: 12px;
}

.table-of-contents a {
    color: #555;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s;
}

.table-of-contents a:hover {
    color: #667eea;
}

.content-wrapper > div:last-child {
    min-width: 0;
}

.content-wrapper h2 {
    font-size: 32px;
    color: #222;
    margin: 60px 0 24px;
    padding-bottom: 12px;
    border-bottom: 2px solid #eee;
}

.content-wrapper h3 {
    font-size: 24px;
    color: #333;
    margin: 40px 0 16px;
}

.content-wrapper p {
    font-size: 18px;
    line-height: 1.8;
    color: #444;
    margin-bottom: 20px;
}

.content-wrapper ul, .content-wrapper ol {
    font-size: 18px;
    line-height: 1.8;
    color: #444;
    margin: 20px 0;
    padding-left: 30px;
}

.content-wrapper li {
    margin-bottom: 12px;
}

.highlight-box {
    background: #fff3cd;
    border-left: 4px solid #ffc107;
    padding: 20px 24px;
    margin: 30px 0;
    border-radius: 8px;
}

.example-box {
    background: #d1ecf1;
    border-left: 4px solid #17a2b8;
    padding: 20px 24px;
    margin: 30px 0;
    border-radius: 8px;
}

.case-study {
    background: #f8f9fa;
    padding: 30px;
    margin: 30px 0;
    border-radius: 12px;
    border: 2px solid #e9ecef;
}

.case-study h3 {
    color: #667eea;
    margin-top: 0;
}

.pricing-info {
    background: #e7f3ff;
    padding: 20px;
    border-radius: 8px;
    margin: 20px 0;
    border-left: 4px solid #007bff;
}

.cta-box {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 40px;
    border-radius: 12px;
    text-align: center;
    margin: 40px 0;
}

.cta-box h3 {
    color: white;
    margin-top: 0;
}

.cta-button {
    display: inline-block;
    background: white;
    color: #667eea;
    padding: 15px 40px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    margin: 10px;
    transition: transform 0.3s;
}

.cta-button:hover {
    transform: translateY(-2px);
}

.cta-button.whatsapp {
    background: #25D366;
    color: white;
}

.final-cta {
    background: #f8f9fa;
    padding: 40px;
    border-radius: 12px;
    margin: 40px 0;
    border: 2px solid #667eea;
}

.final-cta h3 {
    color: #667eea;
    margin-top: 0;
}

.related-posts {
    background: #f8f9fa;
    padding: 40px;
    border-radius: 12px;
    margin: 60px 0 40px;
}

.related-posts ul {
    list-style: none;
    padding: 0;
}

.related-posts li {
    margin-bottom: 16px;
}

.related-posts a {
    color: #667eea;
    text-decoration: none;
    font-size: 18px;
    font-weight: 500;
}

.related-posts a:hover {
    text-decoration: underline;
}

.author-bio {
    background: #fff;
    padding: 30px;
    border-radius: 12px;
    border: 2px solid #e9ecef;
    margin: 40px 0;
}

.author-bio h3 {
    margin-top: 0;
    color: #333;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .post-header h1 {
        font-size: 28px;
    }
    
    .content-wrapper {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .table-of-contents {
        position: static;
    }
    
    .content-wrapper h2 {
        font-size: 24px;
    }
    
    .content-wrapper h3 {
        font-size: 20px;
    }
    
    .content-wrapper p,
    .content-wrapper ul,
    .content-wrapper ol {
        font-size: 16px;
    }
}
