.blog-detail-hero {
    padding: 35px 60px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.blog-detail-hero-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.blog-detail-category {
    display: inline-block;
    background: rgba(255, 255, 255, 0.2);
    color: #fff;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 20px;
}

.blog-detail-title {
    font-size: 48px;
    font-weight: 700;
    color: #fff;
    line-height: 1.3;
    margin-bottom: 30px;
}

.blog-detail-meta {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    flex-wrap: wrap;
    color: rgba(255, 255, 255, 0.9);
    font-size: 14px;
}

.blog-detail-author {
    display: flex;
    align-items: center;
    gap: 10px;
}

.blog-detail-author img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 2px solid #fff;
}

.blog-detail-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.blog-detail-content {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.blog-detail-featured-image {
    width: 100%;
    height: 500px;
    overflow: hidden;
}

.blog-detail-featured-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.blog-detail-body {
    padding: 60px;
}

.blog-detail-intro {
    font-size: 18px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 30px;
    font-weight: 400;
}

.blog-detail-body h2 {
    font-size: 32px;
    font-weight: 600;
    color: #1a1a1a;
    margin: 40px 0 20px;
}

.blog-detail-body h3 {
    font-size: 24px;
    font-weight: 600;
    color: #333;
    margin: 30px 0 16px;
}

.blog-detail-body p {
    font-size: 16px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 20px;
}

.blog-detail-quote {
    background: #f8f9fa;
    border-left: 4px solid #667eea;
    padding: 30px 40px;
    margin: 40px 0;
    font-size: 18px;
    font-style: italic;
    color: #333;
    border-radius: 0 8px 8px 0;
}

.blog-detail-list {
    padding-left: 24px;
    margin: 20px 0;
}

.blog-detail-list li {
    font-size: 16px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 12px;
}

.blog-detail-image-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin: 40px 0;
}

.blog-detail-image-grid img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 8px;
}

.blog-detail-info-box {
    background: #fff3cd;
    border: 2px solid #ffc107;
    border-radius: 8px;
    padding: 24px;
    margin: 40px 0;
}

.blog-detail-info-box h4 {
    font-size: 18px;
    font-weight: 600;
    color: #856404;
    margin-bottom: 12px;
}

.blog-detail-info-box h4 i {
    margin-right: 8px;
}

.blog-detail-info-box p {
    margin: 0;
    color: #856404;
}

.blog-detail-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 30px 60px;
    border-top: 1px solid #e0e0e0;
    flex-wrap: wrap;
    gap: 20px;
}

.blog-detail-tags {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

.blog-detail-tags-label {
    font-weight: 600;
    color: #333;
}

.blog-detail-share {
    display: flex;
    align-items: center;
    gap: 12px;
}

.blog-detail-share-label {
    font-weight: 600;
    color: #333;
}

.blog-share-btn {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f0f0f0;
    border-radius: 50%;
    color: #333;
    text-decoration: none;
    transition: all 0.3s ease;
}

.blog-share-btn:hover {
    background: #667eea;
    color: #fff;
    transform: translateY(-3px);
}

.blog-author-box {
    display: flex;
    gap: 24px;
    padding: 40px 60px;
    border-top: 1px solid #e0e0e0;
    background: #f8f9fa;
}

.blog-author-avatar {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    flex-shrink: 0;
}

.blog-author-name {
    font-size: 20px;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 10px;
}

.blog-author-bio {
    font-size: 14px;
    line-height: 1.7;
    color: #666;
    margin: 0;
}

.blog-related-posts {
    padding: 60px;
    border-top: 1px solid #e0e0e0;
}

.blog-related-title {
    font-size: 28px;
    font-weight: 600;
    margin-bottom: 30px;
}

.blog-related-card {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.blog-related-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.12);
}

.blog-related-card a {
    text-decoration: none;
}

.blog-related-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.blog-related-content {
    padding: 20px;
}

.blog-related-content h5 {
    font-size: 16px;
    font-weight: 600;
    color: #333;
    margin-bottom: 8px;
}

.blog-related-date {
    font-size: 13px;
    color: #999;
}

/* Responsive Styles */
@media (max-width: 1200px) {
    .blog-detail-body {
        padding: 40px;
    }
    
    .blog-detail-footer,
    .blog-author-box,
    .blog-related-posts {
        padding: 30px 40px;
    }
}

@media (max-width: 992px) {
    .blog-hero-title {
        font-size: 36px;
    }
    
    .blog-detail-title {
        font-size: 36px;
    }
    
    .blog-sidebar {
        margin-top: 60px;
        position: static;
    }
}

@media (max-width: 768px) {
    .blog-hero-section {
        padding: 80px 0 40px;
    }
    
    .blog-hero-title {
        font-size: 32px;
    }
    
    .blog-listing-section {
        padding: 60px 0;
    }
    
    .blog-post-title {
        font-size: 20px;
    }
    
    .blog-detail-hero {
        padding: 120px 0 40px;
    }
    
    .blog-detail-title {
        font-size: 28px;
    }
    
    .blog-detail-featured-image {
        height: 300px;
    }
    
    .blog-detail-body {
        padding: 30px 20px;
    }
    
    .blog-detail-body h2 {
        font-size: 24px;
    }
    
    .blog-detail-body h3 {
        font-size: 20px;
    }
    
    .blog-detail-image-grid {
        grid-template-columns: 1fr;
    }
    
    .blog-detail-footer {
        padding: 20px;
        flex-direction: column;
        align-items: flex-start;
    }
    
    .blog-author-box {
        flex-direction: column;
        text-align: center;
        padding: 30px 20px;
    }
    
    .blog-author-avatar {
        margin: 0 auto;
    }
    
    .blog-related-posts {
        padding: 30px 20px;
    }
}