/* Blog Post Styles */
.blog-post {
    max-width: 900px;
    margin: 0 auto;
    padding: 2rem 5%;
}

/* Header Styles */
.post-header {
    text-align: center;
    margin-bottom: 2rem;
}

.post-header h1 {
    font-size: 2.5rem;
    color: #2c3e50;
    margin-bottom: 1rem;
}

.post-meta {
    color: #666;
    font-size: 0.9rem;
}

.post-meta span {
    margin: 0 0.5rem;
}

/* Featured Image */
.post-image {
    width: 100%;
    max-height: 400px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 2rem;
}

/* Content Styles */
.post-content {
    line-height: 1.8;
}

.post-content h2 {
    color: #2c3e50;
    font-size: 1.8rem;
    margin: 2.5rem 0 1.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid #f0f2f5;
}

.post-content h3 {
    color: #34495e;
    font-size: 1.4rem;
    margin: 2rem 0 1rem;
}

.post-content p {
    color: #444;
    margin-bottom: 1.5rem;
}

.post-content ul {
    margin: 1.5rem 0;
    padding-left: 2rem;
}

.post-content li {
    color: #444;
    margin-bottom: 0.5rem;
}

/* CTA Box Styles */
.cta-box {
    background-color: #f8f9fa;
    border-radius: 10px;
    padding: 2rem;
    margin: 3rem 0;
    text-align: center;
}

.cta-box h3 {
    color: #2c3e50;
    margin-bottom: 1rem;
}

.cta-box p {
    margin-bottom: 1.5rem;
}

.cta-box .cta-button {
    display: inline-block;
    padding: 1rem 2rem;
    background-color: #3498db;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.cta-box .cta-button:hover {
    background-color: #2980b9;
}

/* Related Posts Styles */
.related-posts {
    margin-top: 4rem;
    padding-top: 3rem;
    border-top: 2px solid #f0f2f5;
}

.related-posts h2 {
    text-align: center;
    color: #2c3e50;
    margin-bottom: 2rem;
}

.related-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.related-card {
    background: white;
    padding: 1.5rem;
    border-radius: 10px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    text-decoration: none;
    transition: transform 0.3s ease;
}

.related-card:hover {
    transform: translateY(-5px);
}

.related-card h3 {
    color: #2c3e50;
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.read-more {
    color: #3498db;
    font-weight: bold;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .post-header h1 {
        font-size: 2rem;
    }

    .post-content h2 {
        font-size: 1.6rem;
    }

    .post-content h3 {
        font-size: 1.3rem;
    }

    .post-image {
        max-height: 300px;
    }

    .cta-box {
        padding: 1.5rem;
    }

    .related-grid {
        grid-template-columns: 1fr;
    }
}

/* Print Styles */
@media print {
    .navbar,
    .footer,
    .cta-box,
    .related-posts {
        display: none;
    }

    .blog-post {
        max-width: 100%;
        padding: 0;
    }

    .post-content {
        font-size: 12pt;
    }

    .post-image {
        max-height: 300px;
    }
} 