/* Blog Post Specific Styles */
/* This file contains styles specific to individual blog post pages */

/* Article Layout */
article {
    padding: 60px 0;
}

.article-header {
    text-align: center;
    margin-bottom: 3rem;
}

.article-category {
    color: #ff6b35;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1rem;
}

.article-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.2;
    color: #333;
}

.article-meta {
    color: #666;
    font-size: 1rem;
    margin-bottom: 2rem;
}

.article-summary {
    font-size: 1.1rem;
    color: #555;
    border-radius: 0 8px 8px 0;
}

.article-content {
    font-size: 1.1rem;
    line-height: 1.8;
}

.article-content h2 {
    font-size: 1.8rem;
    margin: 2.5rem 0 1rem 0;
    color: #333;
    border-bottom: 2px solid #ff6b35;
    padding-bottom: 0.5rem;
}

.article-content h3 {
    font-size: 1.4rem;
    margin: 2rem 0 1rem 0;
    color: #444;
}

.article-content h4 {
    font-size: 1.2rem;
    margin: 1.5rem 0 0.5rem 0;
    color: #555;
}

.article-content p {
    margin-bottom: 1.5rem;
}

.article-content ul, .article-content ol {
    margin: 1.5rem 0 1.5rem 2rem;
}

.article-content li {
    margin-bottom: 0.5rem;
}

.article-content blockquote {
    background: #f8f9fa;
    border-left: 4px solid #ff6b35;
    padding: 1.5rem;
    margin: 2rem 0;
    font-style: italic;
    color: #555;
    border-radius: 0 8px 8px 0;
}

.article-content strong {
    color: #ff6b35;
    font-weight: 600;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, #ff6b35, #f7931e);
    color: white;
    padding: 3rem 2rem;
    border-radius: 15px;
    text-align: center;
    margin: 3rem 0;
}

.cta-section h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.cta-section p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-btn {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    padding: 0.75rem 1.5rem;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
    backdrop-filter: blur(10px);
}

.cta-btn:hover {
    background: rgba(255, 255, 255, 0.3);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-2px);
}

.cta-btn.primary {
    background: white;
    color: #ff6b35;
}

.cta-btn.primary:hover {
    background: #f8f9fa;
    transform: translateY(-2px);
}

/* Related Articles */
.related-articles {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 15px;
    margin-top: 3rem;
}

.related-articles h3 {
    color: #333;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.related-articles ul {
    list-style: none;
    margin: 0;
}

.related-articles li {
    margin-bottom: 0.5rem;
}

.related-articles a {
    color: #ff6b35;
    text-decoration: none;
    font-weight: 500;
}

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

/* Container Override for Blog Posts */
.container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navigation Back Link */
.nav-back {
    color: #666;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-back:hover {
    color: #ff6b35;
}

/* Responsive Design for Blog Posts */
@media (max-width: 768px) {
    .article-title {
        font-size: 2rem;
    }
    
    .article-content {
        font-size: 1rem;
    }
    
    .article-content h2 {
        font-size: 1.5rem;
    }
    
    .cta-section {
        padding: 2rem 1.5rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-btn {
        width: 200px;
    }
}