/* Blog Show Wrapper */
.blog-show-wrapper {
    padding-bottom: 80px;
    background: #fffaf7;
    min-height: 100vh;
}

/* Featured Image Card */
.blog-image-card {
    margin: 30px 0;
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0,0,0,0.08);
    padding: 0;
    text-align: center;
    height: 500px;
}

.blog-featured-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Back Button */
.blog-back-section {
    padding: 20px 0;
}

.blog-back-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #8c6b5e;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    padding: 8px 16px;
    border-radius: 8px;
}

.blog-back-btn:hover {
    background: #f8f9fa;
    color: #7a5b50;
    transform: translateX(-4px);
}

/* Main Content */
.blog-show-content {
    max-width: 800px;
    margin: 0 auto;
    background: #fff;
    border-radius: 16px;
    padding: 60px 50px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

/* Header Section */
.blog-show-header {
    margin-bottom: 40px;
    padding-bottom: 30px;
    border-bottom: 2px solid #f0f0f0;
}

.blog-show-category {
    margin-bottom: 20px;
}

.category-badge {
    display: inline-block;
    padding: 8px 20px;
    background: linear-gradient(135deg, #8c6b5e 0%, #7a5b50 100%);
    color: #fff;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.blog-show-title {
    font-size: 42px;
    line-height: 1.3;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 24px;
    font-family: 'Jost', sans-serif;
}

.blog-show-meta {
    display: flex;
    align-items: center;
    gap: 24px;
    margin-bottom: 24px;
    flex-wrap: wrap;
}

.meta-item {
    display: flex;
    align-items: center;
    gap: 12px;
}

.author-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, #8c6b5e 0%, #7a5b50 100%);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 18px;
    flex-shrink: 0;
}

.meta-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.meta-label {
    font-size: 11px;
    color: #999;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.meta-value {
    font-size: 15px;
    color: #333;
    font-weight: 500;
}

.meta-divider {
    width: 1px;
    height: 30px;
    background: #e0e0e0;
}

.meta-item i {
    font-size: 20px;
    color: #8c6b5e;
}

.blog-show-excerpt {
    font-size: 20px;
    color: #666;
    font-style: italic;
    line-height: 1.7;
    padding: 20px;
    background: #f8f9fa;
    border-left: 4px solid #8c6b5e;
    border-radius: 8px;
    margin-top: 24px;
}

/* Content Body */
.blog-show-body {
    margin-bottom: 40px;
}

.blog-content-text {
    font-size: 18px;
    line-height: 1.9;
    color: #444;
    font-family: 'Jost', sans-serif;
}

.blog-content-text p {
    margin-bottom: 20px;
}

/* Footer Section */
.blog-show-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 30px;
    border-top: 2px solid #f0f0f0;
    flex-wrap: wrap;
    gap: 20px;
}

.blog-tags {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.tag-item {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 14px;
    background: #f0f0f0;
    border-radius: 20px;
    font-size: 13px;
    color: #666;
}

.tag-item i {
    color: #8c6b5e;
}

.blog-share {
    display: flex;
    align-items: center;
    gap: 12px;
}

.share-label {
    font-size: 14px;
    color: #666;
    font-weight: 500;
}

.share-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #f0f0f0;
    color: #666;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 18px;
}

.share-btn:hover {
    background: #8c6b5e;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(140, 107, 94, 0.3);
}

/* Responsive */
@media (max-width: 768px) {
    .blog-show-hero {
        height: 300px;
    }
    
    .blog-show-content {
        padding: 40px 24px;
        border-radius: 0;
    }
    
    .blog-show-title {
        font-size: 28px;
    }
    
    .blog-show-meta {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
    }
    
    .meta-divider {
        display: none;
    }
    
    .blog-show-excerpt {
        font-size: 16px;
    }
    
    .blog-content-text {
        font-size: 16px;
    }
    
    .blog-show-footer {
        flex-direction: column;
        align-items: flex-start;
    }
}