
    .post-hero {
        background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), url('{% if post.featured_image %}{{ post.featured_image.url }}{% else %}{% static "images/blog-default.jpg" %}{% endif %}');
        background-size: cover;
        background-position: center;
        padding: 80px 0;
        text-align: center;
        color: white;
    }
    
    .post-hero h1 {
        font-size: 42px;
        font-weight: 800;
        margin-bottom: 15px;
    }
    
    .post-meta {
        font-size: 14px;
        opacity: 0.9;
    }
    
    .post-content {
        font-size: 18px;
        line-height: 1.8;
        color: #444;
    }
    
    .post-content img {
        max-width: 100%;
        border-radius: 10px;
        margin: 20px 0;
    }
    
    .author-box {
        background: #f8f9fa;
        border-radius: 15px;
        padding: 25px;
        margin: 30px 0;
        display: flex;
        align-items: center;
        gap: 20px;
    }
    
    .author-image {
        width: 80px;
        height: 80px;
        border-radius: 50%;
        object-fit: cover;
    }
    
    .comment-section {
        background: white;
        border-radius: 15px;
        padding: 25px;
        box-shadow: 0 2px 10px rgba(0,0,0,0.05);
        margin-top: 30px;
    }
    
    .comment {
        border-bottom: 1px solid #eee;
        padding: 15px 0;
    }
    
    .btn-submit {
        background: #667eea;
        color: white;
        padding: 10px 30px;
        border: none;
        border-radius: 30px;
        font-weight: 600;
    }
    
    @media (max-width: 768px) {
        .post-hero h1 {
            font-size: 28px;
        }
        .author-box {
            flex-direction: column;
            text-align: center;
        }
        .post-content {
            font-size: 16px;
        }
    }
