/* Blog Detail Page SEO Styles */


/* Blog Detail Header */
.blog-detail-header {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 3rem 2rem;
    border-radius: 0.5rem;
    margin-bottom: 3rem;
    border: 1px solid #dee2e6;
    text-align: center;
}

.blog-header .main-title {
    color: #2c3e50;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.blog-meta {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.blog-meta span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #6c757d;
    font-size: 1rem;
}

.blog-meta i {
    color: #007bff;
    font-size: 1.1rem;
}

/* Blog Content */
.blog-content {
    background: #fff;
    border: 1px solid #dee2e6;
    border-radius: 0.5rem;
    padding: 2rem;
    margin-bottom: 2rem;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.blog-featured-image {
    text-align: center;
}

.blog-featured-image img {
    max-width: 100%;
    height: auto;
    border-radius: 0.5rem;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.blog-text {
    font-size: 1.4rem;
    line-height: 1.8;
    color: #333;
    margin-top: 2rem;
}

.blog-text h2 {
    color: #2c3e50;
    font-size: 1.8rem;
    font-weight: 600;
    margin: 2rem 0 1rem 0;
    border-bottom: 2px solid #007bff;
    padding-bottom: 0.5rem;
}

.blog-text h3 {
    color: #34495e;
    font-size: 1.4rem;
    font-weight: 600;
    margin: 1.5rem 0 1rem 0;
}

.blog-text p {
    margin-bottom: 1rem;
}

.blog-text ul, .blog-text ol {
    margin-bottom: 1.5rem;
    padding-left: 2rem;
}

.blog-text li {
    margin-bottom: 0.5rem;
}

.blog-text strong {
    color: #2c3e50;
    font-weight: 600;
}

/* Blog Navigation */
.blog-navigation {
    text-align: center;
    margin: 2rem 0;
}

.blog-navigation .btn {
    padding: 0.875rem 2.25rem;
    font-size: 1.2rem;
    border-radius: 0.375rem;
    font-weight: 600;
}

/* SEO Content Section */
.seo-content {
    background: #fff;
    border: 1px solid #dee2e6;
    border-radius: 0.5rem;
    padding: 2rem;
    margin-top: 3rem;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.seo-content h2 {
    color: #2c3e50;
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 1rem;
    border-bottom: 2px solid #007bff;
    padding-bottom: 0.5rem;
}

.seo-content h3 {
    color: #34495e;
    font-size: 1.4rem;
    font-weight: 600;
    margin: 1.5rem 0 1rem 0;
}

.seo-content p {
    color: #495057;
    line-height: 1.7;
    margin-bottom: 1rem;
    font-size: 1rem;
}

.seo-content ul {
    margin-bottom: 1.5rem;
    padding-left: 1.5rem;
}

.seo-content li {
    color: #495057;
    line-height: 1.6;
    margin-bottom: 0.5rem;
}

.seo-content strong {
    color: #2c3e50;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, #007bff 0%, #0056b3 100%);
    color: white;
    padding: 2rem;
    border-radius: 0.5rem;
    margin-top: 2rem;
}

.cta-section h4 {
    color: white;
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.cta-section p {
    color: rgba(255,255,255,0.9);
    margin-bottom: 1.5rem;
}

.cta-section .btn {
    font-size: 1.1rem;
    padding: 0.75rem 2rem;
    font-weight: 600;
    margin: 0 0.5rem;
}

.cta-section .btn-primary {
    background: #28a745;
    border-color: #28a745;
    color: white;
}

.cta-section .btn-primary:hover {
    background: #218838;
    border-color: #1e7e34;
    color: white;
}

.cta-section .btn-outline-primary {
    background: transparent;
    border-color: white;
    color: white;
}

.cta-section .btn-outline-primary:hover {
    background: white;
    color: #007bff;
}

/* Responsive Design */
@media (max-width: 768px) {
    .blog-header .main-title {
        font-size: 2rem;
    }
    
    .blog-detail-header {
        padding: 2rem 1rem;
    }
    
    .blog-content {
        padding: 1.5rem;
    }
    
    .seo-content {
        padding: 1.5rem;
    }
    
    .blog-meta {
        flex-direction: column;
        gap: 1rem;
    }
    
    .cta-section .btn {
        display: block;
        margin: 0.5rem auto;
        max-width: 200px;
    }
}

@media (max-width: 576px) {
    .blog-header .main-title {
        font-size: 1.75rem;
    }
    
    .blog-detail-header {
        padding: 1.5rem 1rem;
    }
    
    .blog-content {
        padding: 1rem;
    }
    
    .seo-content {
        padding: 1rem;
    }
    
    .blog-text {
        font-size: 1rem;
    }
}
