.blog-post-detail {
    background-color: #f8f9fa;
}

.blog-post {
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    padding: 2rem;
}

.blog-post-title {
    color: #2c3e50;
    font-weight: 700;
    font-size: 2.5rem;
    line-height: 1.2;
}

.blog-post-meta {
    font-size: 0.9rem;
}

.blog-post-image {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 8px;
}

.blog-post-summary {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #495057;
}

.blog-post-content {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #2c3e50;
}

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

.blog-post-content h2,
.blog-post-content h3,
.blog-post-content h4 {
    margin-top: 2rem;
    margin-bottom: 1rem;
    color: #2c3e50;
    font-weight: 600;
}

.blog-post-content img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin: 1.5rem 0;
}

.blog-post-content pre {
    background-color: #f8f9fa;
    padding: 1rem;
    border-radius: 4px;
    overflow-x: auto;
}

.blog-post-content code {
    background-color: #f8f9fa;
    padding: 0.2rem 0.4rem;
    border-radius: 4px;
    color: #e83e8c;
}

.blog-post-footer {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid #dee2e6;
}

.social-share .btn {
    padding: 0.5rem 1rem;
}

@media (max-width: 768px) {
    .blog-post {
        padding: 1rem;
    }

    .blog-post-title {
        font-size: 2rem;
    }

    .blog-post-content {
        font-size: 1rem;
    }
} 